:root {
  --navy: #292e4a;
  --gold: #f59e00;
  --muted: #4a4f68;
  --muted-2: #6a6f88;
  --line: #eef0f4;
  --soft: #f7f7f9;
  --white: #fff;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: Jost, sans-serif;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 96px;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

.wrap { width: 100%; }
.container { max-width: var(--max); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand:hover { color: var(--navy); }
.brand img { height: 52px; width: 52px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: Poppins, sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .06em; }
.brand-sub { font-size: 12px; color: var(--gold); font-weight: 500; }
.nav { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: Poppins, sans-serif; font-weight: 600; border-radius: 999px;
  white-space: nowrap; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--navy); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--gold); color: var(--navy); }
.btn-lg { font-size: 16px; padding: 16px 28px; }
.btn-md { font-size: 15px; padding: 13px 24px; }

.menu-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 22px; height: 2px; background: var(--navy); position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.site-header.is-open .menu-toggle span { background: transparent; }
.site-header.is-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
.site-header.is-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

.hero {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px; align-items: center; padding-top: 64px; padding-bottom: 48px;
}
.hero-copy, .stack { display: flex; flex-direction: column; gap: 24px; }
.kicker { font-size: 14px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
h1, h2 { margin: 0; font-family: Poppins, sans-serif; font-weight: 700; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(44px, 6vw, 76px); line-height: 1.02; }
h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -.01em; }
.lead { margin: 0; font-size: 20px; line-height: 1.5; max-width: 460px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.link-underline { font-weight: 500; font-size: 16px; padding: 16px 8px; border-bottom: 2px solid var(--gold); }
.rating { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--muted); padding-top: 8px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }

.hero-media { position: relative; aspect-ratio: 4/5; min-height: 380px; }
.hero-photo { position: absolute; inset: 0; border-radius: 28px; overflow: hidden; }
.hero-photo img, .fill-img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute; left: -16px; bottom: 32px; background: var(--gold); color: var(--navy);
  padding: 18px 22px; border-radius: 16px; box-shadow: 0 12px 32px rgba(41,46,74,.15); pointer-events: none;
}
.badge strong { display: block; font-family: Poppins, sans-serif; font-weight: 700; font-size: 28px; line-height: 1; }
.badge span { display: block; font-size: 14px; margin-top: 4px; }

.trust { background: var(--gold); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; padding-top: 40px; padding-bottom: 40px; }
.trust-item { display: flex; flex-direction: column; gap: 8px; }
.trust-item h3 { margin: 0; font-family: Poppins, sans-serif; font-weight: 700; font-size: 22px; }
.trust-item p { margin: 0; font-size: 16px; line-height: 1.5; }

.about {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 56px; align-items: start; padding-top: 96px; padding-bottom: 96px;
}
.about-photos { display: flex; flex-direction: column; gap: 14px; min-width: 0; width: 100%; }
.photo-lg { position: relative; height: 300px; width: 100%; overflow: hidden; border-radius: 20px; }
.photo-row { display: flex; gap: 14px; width: 100%; }
.photo-sm { position: relative; height: 180px; flex: 1 1 0; min-width: 0; overflow: hidden; border-radius: 20px; }
.about-copy { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.body-text { margin: 0; font-size: 17px; line-height: 1.65; color: var(--muted); }
.help-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 24px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 16px;
}
.help-list strong { font-family: Poppins, sans-serif; font-weight: 600; grid-column: 1/-1; font-size: 15px; }
.help-cta {
  margin-top: 8px;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--navy);
}
.courses { font-size: 15px; color: var(--muted); }
.courses summary {
  cursor: pointer; font-weight: 500; color: var(--navy); font-family: Poppins, sans-serif;
  list-style: none; display: flex; align-items: center; gap: 8px;
}
.courses summary::-webkit-details-marker { display: none; }
.courses summary span { color: var(--gold); }
.courses ul { margin: 14px 0 0; padding-left: 18px; line-height: 1.7; }

.services { background: var(--navy); color: var(--white); }
.services-inner { display: flex; flex-direction: column; gap: 48px; padding-top: 96px; padding-bottom: 96px; }
.section-intro { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12);
}
.service-card { background: var(--navy); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.service-card h3, .cta-card h3 { margin: 0; font-family: Poppins, sans-serif; font-weight: 700; font-size: 20px; }
.service-card p { margin: 0; font-size: 15px; line-height: 1.55; color: #c9ccdb; }
.cta-card { background: var(--gold); color: var(--navy); padding: 28px; display: flex; flex-direction: column; gap: 10px; justify-content: space-between; }
.cta-card p { margin: 0; font-size: 15px; line-height: 1.55; }
.cta-card a { font-family: Poppins, sans-serif; font-weight: 700; font-size: 18px; color: var(--navy); }

.pricing {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 56px; align-items: center; padding-top: 96px; padding-bottom: 96px;
}
.price-list { display: flex; flex-direction: column; border-top: 2px solid var(--navy); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.price-row span:first-child { font-family: Poppins, sans-serif; font-weight: 600; font-size: 20px; }
.price-row strong { font-family: Poppins, sans-serif; font-weight: 700; font-size: 26px; color: var(--gold); }

.reviews { background: var(--soft); }
.reviews-inner { display: flex; flex-direction: column; gap: 48px; padding-top: 96px; padding-bottom: 96px; }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.pill {
  display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500;
  border: 1px solid #d9dbe5; border-radius: 999px; padding: 12px 20px; background: var(--white);
}
.pill:hover { border-color: var(--gold); color: var(--navy); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review { margin: 0; background: var(--white); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 18px; justify-content: space-between; }
.review blockquote { margin: 0; font-size: 17px; line-height: 1.6; }
.review figcaption { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--muted-2); }
.review figcaption strong { font-family: Poppins, sans-serif; font-weight: 600; color: var(--navy); }

.contact {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px; align-items: center; padding-top: 96px; padding-bottom: 96px;
}
.contact-copy { display: flex; flex-direction: column; gap: 28px; }
.contact h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; }
.contact-list { display: flex; flex-direction: column; gap: 18px; font-size: 18px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item span:last-child { overflow-wrap: anywhere; }
.icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-family: Poppins, sans-serif; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.phone { font-family: Poppins, sans-serif; font-weight: 700; font-size: 22px; }
.contact-photo { position: relative; aspect-ratio: 1/1; min-height: 340px; border-radius: 28px; overflow: hidden; }

.location { background: var(--soft); }
.location-inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px; align-items: center; padding-top: 96px; padding-bottom: 96px;
}
.location-copy { display: flex; flex-direction: column; gap: 20px; }
.location-facts { display: flex; flex-direction: column; gap: 18px; }
.location-fact { display: flex; align-items: flex-start; gap: 16px; font-size: 16px; line-height: 1.5; color: var(--muted); }
.location-fact strong {
  display: block; font-family: Poppins, sans-serif; font-weight: 600; font-size: 17px; color: var(--navy); margin-bottom: 2px;
}
.map-frame {
  position: relative; min-height: 380px; aspect-ratio: 1/1; border-radius: 28px; overflow: hidden;
  background: #d9dbe5;
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.site-footer { border-top: 2px solid var(--gold); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted-2); padding-top: 28px; padding-bottom: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 36px; width: 36px; object-fit: contain; }
.footer-brand strong { color: var(--navy); font-family: Poppins, sans-serif; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted-2); }

.float-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 30;
  font-size: 16px; padding: 16px 26px; box-shadow: 0 10px 28px rgba(41,46,74,.22);
}

@media (max-width: 860px) {
  .menu-toggle { display: grid; place-items: center; }
  .header-cta { display: none; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; background: var(--white);
    border-bottom: 1px solid var(--line); padding: 8px 24px 16px;
  }
  .site-header.is-open .nav { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .hero, .about, .pricing, .contact { padding-top: 48px; padding-bottom: 48px; }
  .services-inner, .reviews-inner, .location-inner { padding-top: 64px; padding-bottom: 64px; }
  .map-frame { min-height: 280px; }
  .hero-media { min-height: 280px; }
  .badge { left: 12px; bottom: 12px; }
  h1 { font-size: clamp(36px, 10vw, 52px); }
  .contact-photo { min-height: 260px; }
}