:root{
  --navy:#1b2a4e;
  --navy-2:#22345f;
  --green:#2e5a46;
  --green-2:#347056;
  --gold:#c9a227;
  --ink:#1d2433;
  --muted:#5a6373;
  --line:#e6e9ef;
  --white:#ffffff;
  --soft:#f6f8fb;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',system-ui,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.wrap{max-width:1180px;margin:0 auto;padding:0 24px}
.nowrap{white-space:nowrap}

h1,h2,h3{font-family:'Playfair Display',Georgia,serif;color:var(--navy);line-height:1.12}
.section-title{text-align:center;font-size:40px;font-weight:800;margin-bottom:40px}

/* BUTTONS */
.btn-primary{
  display:inline-block;background:var(--navy);color:#fff;
  font-weight:600;letter-spacing:.06em;font-size:15px;
  padding:16px 34px;border-radius:8px;margin-top:8px;
  transition:.2s;box-shadow:0 8px 22px rgba(27,42,78,.18);
}
.btn-primary:hover{background:var(--navy-2);transform:translateY(-2px)}
.call-note{margin-top:14px;color:var(--green);font-weight:600;font-size:15px}
.call-note a{color:var(--green)}

/* TOPBAR */
.topbar{border-bottom:1px solid var(--line);background:#fff;position:sticky;top:0;z-index:50}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:12px 24px}
.serving{max-width:230px;font-size:15px;font-weight:500;color:var(--ink)}
.logo img{height:78px;width:auto}
.call-btn{
  background:var(--navy);color:#fff;font-weight:600;font-size:15px;
  padding:14px 24px;border-radius:8px;letter-spacing:.03em;transition:.2s;
}
.call-btn:hover{background:var(--navy-2)}
.ph{margin-right:6px}

/* HERO */
.hero{padding:56px 0 64px;background:var(--white)}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:52px;align-items:start}
.hero-left h1{font-size:46px;font-weight:800;letter-spacing:.5px}
.hero-sub{color:var(--green);font-weight:600;font-size:20px;margin-top:14px}
.reviews-badge{
  display:inline-flex;align-items:center;gap:16px;margin-top:22px;
  border:1px solid var(--line);border-radius:10px;padding:10px 18px;box-shadow:0 4px 14px rgba(0,0,0,.04);
}
.rb-left{display:flex;flex-direction:column;line-height:1.1}
.rb-excellent{font-weight:700;font-size:13px;letter-spacing:.08em;color:var(--muted)}
.rb-stars{color:#fbbc05;font-size:18px;letter-spacing:2px}
.rb-right{display:flex;align-items:center;gap:8px}
.rb-count{font-size:14px;color:var(--muted)}
.rb-google{height:20px;width:auto}
.hero-h2{font-size:24px;font-weight:700;margin-top:28px}
.hero-lead{margin-top:8px;color:var(--muted);font-size:17px}
.hero-bullets{list-style:none;margin:20px 0 6px}
.hero-bullets li{position:relative;padding-left:30px;margin:11px 0;font-weight:500}
.hero-bullets li::before{
  content:"\2713";position:absolute;left:0;top:0;
  color:#fff;background:var(--green);width:20px;height:20px;border-radius:50%;
  font-size:12px;display:flex;align-items:center;justify-content:center;font-weight:700;
}

/* FORM */
.form-shell{
  background:var(--navy);border-radius:16px;padding:30px 26px;
  box-shadow:0 24px 60px rgba(27,42,78,.25);scroll-margin-top:100px;
  position:sticky;top:110px;
}
.form-head{text-align:center;margin-bottom:14px}
.form-head h3{color:#fff;font-size:26px;font-weight:800}
.form-head p{color:#c8d2e6;margin-top:6px;font-size:15px}
.ghl-form{width:100%;min-height:560px;border:0;border-radius:10px;background:#fff}

/* INTRO */
.intro{padding:64px 0;background:var(--soft)}
.intro-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:48px;align-items:center}
.intro-copy h2{font-size:34px;font-weight:800;margin-bottom:16px}
.intro-copy p{color:var(--muted);margin-bottom:14px;font-size:16px}
.behaviors{background:#fff;border:1px solid var(--line);border-radius:14px;padding:28px 30px;box-shadow:0 10px 30px rgba(0,0,0,.05)}
.behaviors h3{font-size:22px;font-weight:800;margin-bottom:16px}
.behavior-list{list-style:none;columns:1}
.behavior-list li{position:relative;padding:9px 0 9px 28px;border-bottom:1px solid var(--line);font-weight:500}
.behavior-list li:last-child{border-bottom:0}
.behavior-list li::before{content:"\2192";position:absolute;left:0;color:var(--gold);font-weight:700}

/* PROGRAMS */
.programs{padding:70px 0}
.program-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.program-card{
  background:var(--green);border-radius:16px;overflow:hidden;
  box-shadow:0 14px 36px rgba(46,90,70,.22);transition:.25s;
}
.program-card:hover{transform:translateY(-6px)}
.program-card img{height:230px;width:100%;object-fit:cover}
.pc-body{padding:24px 24px 30px;text-align:center}
.pc-body h3{color:#fff;font-size:26px;font-weight:800;margin-bottom:12px}
.pc-body p{color:#e4eee8;font-size:15px}
.center-cta{text-align:center;margin-top:44px}

/* DREAM */
.dream{padding:70px 0;background:var(--soft)}
.dream-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
.dream-img img{border-radius:16px;height:420px;width:100%;object-fit:cover;box-shadow:0 16px 40px rgba(0,0,0,.12)}
.dream-copy h2{font-size:36px;font-weight:800;margin-bottom:16px}
.dream-copy p{color:var(--muted);margin-bottom:14px;font-size:16px}

/* LEARN */
.learn{padding:70px 0}
.learn-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
.learn-copy h2{font-size:36px;font-weight:800;margin-bottom:22px}
.check-list{list-style:none;margin-bottom:22px}
.check-list li{position:relative;padding:12px 0 12px 36px;font-weight:500;border-bottom:1px solid var(--line)}
.check-list li::before{
  content:"\2713";position:absolute;left:0;top:12px;color:#fff;background:var(--green);
  width:22px;height:22px;border-radius:50%;font-size:13px;display:flex;align-items:center;justify-content:center;font-weight:700;
}
.learn-img img{border-radius:16px;height:440px;width:100%;object-fit:cover;box-shadow:0 16px 40px rgba(0,0,0,.12)}

/* FOCUS */
.focus{padding:70px 0;background:var(--navy)}
.focus-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
.focus-copy h2{font-size:38px;font-weight:800;color:#fff}
.focus-copy .accent{color:var(--gold);text-decoration:underline;text-underline-offset:6px}
.focus-copy p{color:#c8d2e6;margin:18px 0;font-size:16px}
.focus-copy .btn-primary{background:var(--gold);color:var(--navy)}
.focus-copy .btn-primary:hover{background:#dcb436}
.focus-copy .call-note,.focus-copy .call-note a{color:#fff}
.focus-img img{border-radius:16px;height:400px;width:100%;object-fit:cover;box-shadow:0 16px 40px rgba(0,0,0,.3)}

/* FINAL CTA */
.final-cta{padding:80px 0;background:var(--green);text-align:center}
.final-cta h2{color:#fff;font-size:38px;font-weight:800;max-width:820px;margin:0 auto 16px}
.final-cta p{color:#e4eee8;max-width:660px;margin:0 auto 30px;font-size:17px}
.final-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.btn-light{background:#fff;color:var(--navy);font-weight:700;letter-spacing:.05em;padding:16px 34px;border-radius:8px;transition:.2s}
.btn-light:hover{transform:translateY(-2px)}
.btn-outline{border:2px solid #fff;color:#fff;font-weight:700;letter-spacing:.05em;padding:14px 32px;border-radius:8px;transition:.2s}
.btn-outline:hover{background:#fff;color:var(--green)}

/* FOOTER */
.footer{background:var(--navy);padding:40px 0}
.footer-inner{display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center}
.footer-logo{height:72px;background:#fff;border-radius:10px;padding:8px}
.footer-copy{color:#aeb9d1;font-size:14px}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-grid,.intro-grid,.dream-grid,.learn-grid,.focus-grid{grid-template-columns:1fr;gap:36px}
  .program-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}
  .form-shell{position:static}
  .hero-left h1{font-size:36px}
  .section-title{font-size:32px}
  .dream-grid .dream-img{order:-1}
  .topbar-inner{flex-wrap:wrap;justify-content:center;text-align:center}
  .serving{max-width:none;order:3;flex-basis:100%}
}
@media(max-width:520px){
  .hero-left h1{font-size:30px}
  .final-cta h2,.focus-copy h2,.dream-copy h2,.learn-copy h2{font-size:28px}
  .call-btn{font-size:13px;padding:12px 16px}
}
