:root {
  --blue: #335280;
  --blue-dark: #12283b;
  --blue-deep: #0d2232;
  --green: #a0c9bb;
  --green-dark: #78b4a2;
  --accent: #f3b15d;
  --cream: #f7f5ef;
  --paper: #ffffff;
  --ink: #132438;
  --muted: #5d6c78;
  --line: rgba(18, 40, 59, .14);
  --shadow: 0 22px 70px rgba(13, 34, 50, .14);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header,
.ppc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-shell,
.ppc-header-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--blue-dark);
  min-width: 0;
}
.brand img {
  width: 72px;
  height: auto;
  object-fit: contain;
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand strong {
  color: var(--blue-dark);
  font-size: 15px;
  letter-spacing: .08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--blue-dark);
}
.desktop-nav a,
.mobile-panel a,
.site-footer a,
.ppc-footer a {
  text-decoration: none;
}
.desktop-nav a:hover,
.mobile-panel a:hover,
.site-footer a:hover,
.ppc-footer a:hover { text-decoration: underline; }

.header-actions,
.hero-actions,
.action-row,
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.btn,
.btn-primary,
.btn-outline,
.btn-accent,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover,
.btn-primary:hover,
.btn-outline:hover,
.btn-accent:hover,
.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(13, 34, 50, .15);
}
.btn-primary,
.btn { background: var(--blue); color: #fff; }
.btn-outline { background: #fff; color: var(--blue); border-color: var(--line); }
.btn-accent { background: var(--accent); color: var(--blue-dark); }
.btn-light { background: #fff; color: var(--blue-dark); }
.phone-link { white-space: nowrap; }

.nav-toggle,
.mobile-close {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(13, 34, 50, .45);
  z-index: 120;
}
.mobile-panel {
  margin-left: auto;
  width: min(360px, 88vw);
  height: 100%;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}
.mobile-close { display: inline-flex; align-self: flex-end; }

.hero,
.sub-hero,
.ppc-hero {
  position: relative;
  min-height: 580px;
  background-image: linear-gradient(90deg, rgba(13, 34, 50, .88), rgba(13, 34, 50, .62), rgba(13, 34, 50, .26)), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero::after,
.sub-hero::after,
.ppc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(160, 201, 187, .18), transparent 36%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 22px 120px;
}
.hero h1,
.sub-hero h1,
.ppc-hero h1,
.thank-you-card h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .96;
  letter-spacing: -.055em;
}
.hero p,
.sub-hero p,
.ppc-hero p {
  max-width: 680px;
  font-size: 18px;
  color: rgba(255, 255, 255, .86);
}
.hero p span { display: inline-block; margin-right: 14px; }
.eyebrow,
.kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 900;
  color: var(--green);
}
.hero-proof,
.ppc-trust {
  max-width: var(--max);
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.hero-proof article,
.ppc-trust article {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.hero-proof strong,
.ppc-trust strong { display: block; color: var(--blue-dark); font-size: 18px; }
.hero-proof span { color: var(--muted); font-size: 14px; }

.section { padding: 86px 22px; }
.section.alt { background: #fff; }
.section.deep { background: var(--blue-dark); color: #fff; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2,
.split-copy h2,
.cta-band h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--blue-dark);
}
.section.deep .section-heading h2,
.section.deep .cta-band h2,
.section.deep .section-heading p,
.section.deep .cta-band p { color: #fff; }
.section-heading p,
.split-copy p,
.feature-card p,
.step-card p,
.faq-item p,
.contact-card p,
.pricing-card p { color: var(--muted); }
.section.deep .feature-card p,
.section.deep .step-card p { color: rgba(255,255,255,.75); }

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card,
.step-card,
.faq-item,
.team-card,
.contact-card,
.pricing-card,
.contact-panel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(13, 34, 50, .06);
}
.section.deep .feature-card,
.section.deep .step-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.feature-card h3,
.step-card h3,
.faq-item h3,
.team-card h3,
.contact-card h3,
.pricing-card h3,
.contact-panel-card h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 22px;
  letter-spacing: -.02em;
}
.section.deep .feature-card h3,
.section.deep .step-card h3 { color: #fff; }

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 42px;
}
.split-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.check-list,
.ppc-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
}
.check-list li,
.ppc-bullets li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before,
.ppc-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(160, 201, 187, .22);
}

.cta-band {
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(160, 201, 187, .28), rgba(255,255,255,.95));
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.section.deep .cta-band {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.route-links { display: flex; flex-wrap: wrap; gap: 12px; }
.route-links a {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  border: 1px solid var(--line);
}

.site-footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 54px 22px 26px;
}
.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 28px;
}
.footer-shell img { width: 100px; background: #fff; border-radius: 12px; padding: 8px; }
.footer-shell a { display: block; margin: 8px 0; color: rgba(255,255,255,.82); }
.footer-shell p,
.footer-bottom { color: rgba(255,255,255,.72); }
.footer-bottom { max-width: var(--max); margin: 34px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); }

.ppc-header { position: relative; }
.ppc-alert {
  background: var(--green);
  color: var(--blue-dark);
  font-weight: 900;
  text-align: center;
  font-size: 13px;
  letter-spacing: .02em;
}
.ppc-alert-inner { max-width: var(--max); margin: 0 auto; padding: 10px 22px; }
.ppc-hero { min-height: 740px; }
.ppc-hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 22px 86px;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 460px);
  gap: 42px;
  align-items: center;
}
.ppc-hero-copy h1 { max-width: 680px; }
.ppc-hero-copy p { max-width: 620px; }
.ppc-bullets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 700px;
}
.ppc-bullets li {
  padding: 14px 16px 14px 42px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  font-weight: 800;
}
.ppc-bullets li::before { left: 18px; }
.ppc-panel {
  background: var(--blue-dark);
  border-radius: 24px;
  border-top: 6px solid var(--accent);
  padding: 24px;
  box-shadow: var(--shadow);
  color: #fff;
  max-height: 88vh;
  overflow: auto;
}
.ppc-panel h2 { margin: 0 0 10px; font-size: 28px; line-height: 1.05; }
.ppc-panel p { color: rgba(255,255,255,.78); font-size: 14px; }
.ppc-panel-note,
.small-note {
  margin-top: 12px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}
.mindbody-scheduler {
  margin-top: 16px;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 10px;
  overflow: hidden;
}
.scheduler-hint {
  color: var(--blue-dark) !important;
  margin: 4px 6px 10px;
  font-weight: 800;
}
.mindbody-widget { min-height: 780px; }
.mindbody-widget:empty {
  display: grid;
  place-items: center;
}
.mindbody-widget:empty::before {
  content: "Loading live schedule...";
  color: var(--muted);
  font-weight: 900;
}
.mindbody-widget-placeholder {
  min-height: 780px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  color: var(--ink);
}
.mindbody-widget-placeholder strong {
  font-size: 22px;
}
.mindbody-widget-placeholder span {
  max-width: 320px;
  color: var(--muted);
  line-height: 1.5;
}
.scheduler-below-panel .mindbody-scheduler { margin-top: 18px; }
.contact-panel-card { color: var(--ink); }
.contact-panel-card p { color: var(--muted); }
.ppc-trust { margin-top: -34px; }
.pricing-card { margin-bottom: 26px; }
.pricing-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.pricing-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pricing-category {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  min-width: 0;
}
.pricing-category-header {
  min-height: 56px;
  margin-bottom: 12px;
}
.pricing-category h4 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 20px;
}
.pricing-category-header p,
.pricing-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  background: var(--cream);
  border-radius: 14px;
  padding: 14px;
}
.pricing-row span,
.pricing-row strong { min-width: 0; }
.pricing-row strong {
  color: var(--blue);
  text-align: right;
  overflow-wrap: anywhere;
}
.pricing-action { margin-top: 14px; }
.sticky-mobile-cta { display: none; }
.ppc-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 26px 22px 94px;
  background: var(--blue-dark);
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

.thank-you-hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 70px 22px;
  background: linear-gradient(135deg, var(--blue-dark), #183d59);
}
.thank-you-card {
  max-width: 720px;
  background: #fff;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.thank-you-card h1 { color: var(--blue-dark); font-size: clamp(40px, 6vw, 70px); }
.thank-you-card p { color: var(--muted); }
.thank-you-card .small-note { color: var(--muted); }

@media (max-width: 980px) {
  .desktop-nav,
  .site-header .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid.four,
  .grid.three,
  .footer-shell,
  .hero-proof,
  .ppc-trust,
  .pricing-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split,
  .ppc-hero-grid { grid-template-columns: 1fr; }
  .ppc-panel { max-height: none; }
  .ppc-hero { min-height: 0; }
}

@media (max-width: 680px) {
  .ppc-header-shell .brand span { display: none; }
  .ppc-header-shell .header-actions .phone-link { display: none; }
  .hero,
  .sub-hero { min-height: 500px; }
  .hero-content { padding: 110px 18px 90px; }
  .ppc-hero-grid { padding: 48px 18px 70px; }
  .section { padding: 62px 18px; }
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-shell,
  .hero-proof,
  .ppc-trust,
  .pricing-category-grid,
  .ppc-bullets { grid-template-columns: 1fr; }
  .hero-proof,
  .ppc-trust { margin-top: -24px; }
  .brand img { width: 58px; }
  .brand strong { font-size: 13px; }
  .brand span { font-size: 10px; }
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-accent,
  .btn-light { width: 100%; }
  .ppc-header-shell .header-actions .btn,
  .ppc-header-shell .header-actions .btn-outline { width: auto; }
  .pricing-card-header { display: block; }
  .pricing-category { padding: 14px; }
  .pricing-row { display: block; }
  .pricing-row strong {
    display: block;
    margin-top: 4px;
    text-align: left;
  }
  .sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(18, 40, 59, .94);
    backdrop-filter: blur(10px);
  }
  .sticky-mobile-cta .btn-accent,
  .sticky-mobile-cta .btn-light { width: 100%; }
  body.mindbody-scheduler-visible .sticky-mobile-cta { display: none; }
  .mindbody-widget,
  .mindbody-widget-placeholder { min-height: 620px; }
}
