:root {
  --bg: #eef2f6;
  --navy: #0d3b66;
  --navy-2: #0a2d4f;
  --olive: #88a846;
  --olive-2: #6f8c32;
  --gold: #88a846;
  --gold-2: #6f8c32;
  --card: #fff;
  --line: #d4deea;
  --text: #1c2430;
  --muted: #5c6b7a;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 10px 28px rgba(13, 59, 102, 0.12);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
}
.topbar-inner, .hero-actions, .split, .nav {
  display: flex;
  gap: 16px;
}
.topbar-inner {
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--olive);
  font-size: 14px;
}
.nav { align-items: center; flex-wrap: wrap; }
.nav a { color: #d7e6f5; font-size: 14px; font-weight: 600; text-decoration: none; }
.nav a:hover { color: var(--white); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  min-height: 44px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 13px;
}
.btn-gold {
  background: linear-gradient(180deg, var(--olive), var(--olive-2));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(136, 168, 70, 0.35);
}
.btn-gold:hover { filter: brightness(1.06); text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: var(--olive); text-decoration: none; }
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 14px;
  min-height: 44px;
}

.hero-band {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 8px 0 36px;
}
.hero { padding: 28px 0 8px; content-visibility: visible; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.kicker {
  color: var(--olive);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}
h1, h2, h3 { font-family: inherit; line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(28px, 4.4vw, 46px); margin: 0 0 16px; color: inherit; }
h2 { font-size: clamp(24px, 3.2vw, 34px); margin: 0 0 14px; }
h3 { font-size: 18px; margin: 0 0 8px; }
.lead { font-size: 17px; color: #c9d8e8; max-width: 62ch; }
.hero-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: 360px; object-fit: cover; }
.badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(13, 59, 102, 0.88);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 22px 0 0;
}
.stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 14px;
}
.stat b { display: block; font-size: 20px; color: var(--olive); }
.stat span { color: #c9d8e8; font-size: 13px; }

.facts {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}
.facts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.facts li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid #eef2f6;
  color: var(--text);
}
.facts li:last-child { border-bottom: 0; }
.facts li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 800;
}
.aliases {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

section,
[id] { scroll-margin-top: 80px; }
section { padding: 52px 0; content-visibility: auto; contain-intrinsic-size: 1px 700px; }
.hero { content-visibility: visible; }
.section-head { max-width: 720px; margin-bottom: 24px; }
.muted { color: var(--muted); }

.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.shots img, .shot-wide img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.shots img { height: 220px; }
.shot-wide { margin-bottom: 22px; }
.shot-wide img { height: 280px; }
.cap { font-size: 13px; color: var(--muted); margin: 6px 0 0; }

.hero-card .badge {
  max-width: calc(100% - 24px);
  line-height: 1.35;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cards-two {
  grid-template-columns: 1fr 1fr;
}
.cards-two .card img { height: 240px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { width: 100%; height: 170px; object-fit: cover; }
.card-body { padding: 16px; }

.split { align-items: center; gap: 28px; }
.split > * { flex: 1; }
.split img, .media img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.media img { height: 340px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}
.num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--olive);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 10px;
}

.pay-list { display: grid; gap: 10px; margin: 0 0 24px; }
.pay-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}
.pay-row h3 { margin: 0 0 10px; font-size: 17px; color: var(--navy); }
.pay-meta { display: grid; gap: 6px; }
.pay-meta p { margin: 0; font-size: 14px; color: var(--muted); }
.pay-meta b { color: var(--olive-2); font-weight: 700; display: inline-block; min-width: 88px; }

.pay-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pay-notes ul { padding-left: 18px; }

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px 16px;
  margin-bottom: 8px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  min-height: 44px;
}
.faq p { color: var(--muted); margin-top: 0; }

.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.cta-band .muted { color: #c9d8e8; }

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 14px;
}

footer {
  background: var(--navy-2);
  color: #b8c9da;
  padding: 32px 0 48px;
  font-size: 14px;
}
footer a { color: #d7e6f5; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}
.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--olive);
  border-radius: 50%;
  color: var(--olive);
  font-weight: 800;
}

.reviews { display: grid; gap: 10px; }
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
}
.review-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 8px;
}
.review-top strong { color: var(--navy); }
.stars { color: var(--olive); letter-spacing: 2px; font-size: 14px; }
.review p { margin: 0; color: var(--muted); }
.review .who { margin-top: 10px; font-size: 13px; }

.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  color: inherit;
  text-decoration: none;
  min-height: 88px;
}
.contact:hover { border-color: var(--olive); text-decoration: none; }
.contact b { display: block; color: var(--navy); margin-bottom: 6px; }
.contact span { color: var(--muted); font-size: 14px; }

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  line-height: 1.25;
  padding: 12px 16px;
  white-space: normal;
  text-align: center;
}

@media (max-width: 900px) {
  .menu-btn { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-2);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav.open { display: flex; }
  .nav a { min-height: 44px; display: inline-flex; align-items: center; }
  .hero-grid, .cards, .cards-two, .steps, .footer-grid, .cta-band, .split, .pay-notes, .contacts {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .hero-card img, .media img, .shots img, .shot-wide img, .cards-two .card img { height: 200px; }
  .sticky-cta { display: block; left: 16px; right: 16px; text-align: center; }
  section { padding: 36px 0; }
  h1 { font-size: 26px; }
  .lead { font-size: 15px; }
  .facts { margin-top: 16px; }
}
