:root {
  --bg: #f2f2ef;
  --surface: #ffffff;
  --border: #dcdcd8;
  --text: #141414;
  --text-muted: #6b6b67;
  --teal: #5fa0aa;
  --teal-dark: #04222a;
  --teal-tint: #e8f2f3;
  --radius: 10px;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

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

/* HEADER */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 242, 239, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 58px;
  width: auto;
}

.footer-logo-img {
  height: 60px;
  filter: brightness(0) invert(1);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--text);
  border-bottom-color: var(--teal);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 760px) {
  nav.main-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s, transform 0.15s;
  }
  nav.main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  nav.main-nav a {
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-teal { background: var(--teal); color: var(--teal-dark); }
.btn-teal:hover { opacity: 0.88; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--text); }
.btn-outline:hover { background: var(--text); color: #fff; }

/* HERO */
.hero {
  padding: 64px 0 48px;
}
.hero h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 640px;
}
.hero p.lead {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 520px;
}
.hero .note {
  font-size: 13px;
  color: var(--teal-dark);
  background: var(--teal-tint);
  border: 1px solid var(--teal);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 16px;
  max-width: 480px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* PATH CARDS (home) */
.path-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.path-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.path-card:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.path-card .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--teal);
  text-transform: uppercase;
}
.path-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-top: 3px;
}
.path-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.path-card .cta {
  background: var(--teal);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 7px;
  white-space: nowrap;
}

/* SECTIONS */
section { padding: 56px 0; }
section.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
h2 { font-size: 24px; font-weight: 700; }
h2.center { text-align: center; }
.section-intro { color: var(--text-muted); max-width: 620px; margin-top: 10px; }
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ABOUT WITH PHOTO */
.about-grid-sm {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
@media (max-width: 760px) {
  .about-grid-sm { grid-template-columns: 1fr; gap: 20px; }
  .about-photo { max-width: 260px; margin: 0 auto; }
}

/* SIDE PHOTO (floats beside a block of text, for short prose blocks) */
.side-photo {
  width: 220px;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.side-photo.left { float: left; margin: 4px 24px 12px 0; }
.side-photo.right { float: right; margin: 4px 0 12px 24px; }
@media (max-width: 560px) {
  .side-photo { width: 150px; }
}

/* HERO GRID (text + photo sit directly beside each other, no gap) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
}
.hero-grid .hero-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-grid .hero-photo { max-width: 240px; margin: 0 auto; order: -1; }
}

/* TESTIMONIAL CAROUSEL */
.testimonial-carousel {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.carousel-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-track { position: relative; min-height: 160px; flex: 1; }
.carousel-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover { border-color: var(--teal); color: var(--teal-dark); }
@media (max-width: 560px) {
  .carousel-arrow { width: 30px; height: 30px; font-size: 16px; }
}
.carousel-slide {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.carousel-slide.active { display: block; }
.carousel-slide .stars { color: #f5b400; font-size: 15px; margin-bottom: 10px; }
.carousel-slide p { font-size: 15px; color: var(--text); line-height: 1.7; }
.carousel-slide .who { font-size: 12px; color: var(--text-muted); margin-top: 14px; font-weight: 600; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  cursor: pointer;
}
.carousel-dots button.active { background: var(--teal); }

/* FEATURE LIST */
.feature-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.feature-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 7px;
  flex-shrink: 0;
}
.feature-list strong { display: block; font-size: 14px; margin-bottom: 2px; }
.feature-list span.desc { font-size: 13px; color: var(--text-muted); }

/* PROSE */
.prose p { margin-bottom: 16px; max-width: 680px; color: var(--text); }
.prose p.muted { color: var(--text-muted); font-style: italic; }

/* PRICING CALLOUT */
.price-callout {
  background: var(--teal-tint);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.price-callout .amount { font-size: 28px; font-weight: 700; color: var(--teal-dark); }
.price-callout .note { font-size: 13px; color: var(--teal-dark); margin-top: 2px; }

/* STEPS */
.steps {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.step {
  display: flex;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.step .num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step strong { display: block; font-size: 14px; margin-bottom: 2px; }
.step span { font-size: 13px; color: var(--text-muted); }

/* PLACEHOLDER BLOCKS (photos / video / testimonials to be added later) */
.placeholder-block {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 32px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
.placeholder-block strong { display: block; color: var(--text); font-size: 14px; margin-bottom: 4px; }

.testimonial-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* CTA BAND */
.cta-band {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  margin-top: 20px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c9c9c4; margin-top: 8px; }
.cta-band .btn { margin-top: 20px; }

/* LEAD MAGNET */
.lead-magnet {
  background: var(--teal-tint);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}
.lead-magnet h2 { color: var(--teal-dark); }
.lead-magnet p { color: var(--teal-dark); margin-top: 8px; }
.lead-magnet-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.lead-magnet-form input[type="email"] {
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid var(--teal);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  width: 260px;
  outline: none;
}
@media (max-width: 480px) {
  .lead-magnet-form input[type="email"] { width: 100%; }
}

/* FOOTER */
footer {
  background: var(--text);
  color: #cfcfca;
  padding: 48px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 13px; color: #9c9c96; margin-top: 8px; max-width: 260px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9c9c96;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #cfcfca;
  text-decoration: none;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--teal); }

.subscribe-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  max-width: 300px;
}
.subscribe-form input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border-radius: 7px;
  border: 1px solid #3a3a38;
  background: #1f1f1e;
  color: #fff;
  font-size: 13px;
  outline: none;
}
.subscribe-form input[type="email"]::placeholder { color: #8a8a85; }
.subscribe-form button {
  background: var(--teal);
  color: var(--teal-dark);
  border: none;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #2c2c2a;
  margin-top: 36px;
  padding-top: 20px;
  font-size: 12px;
  color: #7c7c77;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 27px; }
  .price-callout { flex-direction: column; align-items: flex-start; }
}
