/* ── CSS Custom Properties ── */
:root {
  --forest: #1C3A2B;
  --forest-mid: #2D5C42;
  --sage: #4A7A5C;
  --sage-light: #7DAF8E;
  --sage-pale: #C8DDD1;
  --gold: #C9933E;
  --gold-light: #E8B86D;
  --gold-hover: #B8832E;
  --cream: #F6F2EB;
  --cream-warm: #EDE8DF;
  --ink: #2C2C2C;
  --ink-mid: #4A4A4A;
  --ink-soft: #6B6B6B;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --nav-height: 68px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.navbar.scrolled {
  background: rgba(28,58,43,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links {
  display: flex;
  gap: 32px;
}
.navbar-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--sage-pale);
  transition: color 0.2s ease;
}
.navbar-links a:hover { color: var(--cream); }
.navbar-cta {
  background: var(--gold);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.navbar-cta:hover { background: var(--gold-hover); }

/* Hamburger */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--forest);
  background-image: radial-gradient(ellipse at 70% 30%, var(--forest-mid) 0%, var(--forest) 60%);
  padding: 40px;
}
.hero-content {
  max-width: 680px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 10px;
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--sage-pale);
  margin-bottom: 20px;
}
.hero-body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(198,218,210,0.85);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-input {
  height: 48px;
  min-width: 260px;
  padding: 0 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}
.hero-input:focus { border-color: var(--gold); }
.hero-input::placeholder { color: rgba(198,218,210,0.5); }
.hero-btn {
  height: 48px;
  padding: 0 28px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.hero-btn:hover { background: var(--gold-hover); }
.hero-micro {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--sage-light);
}
.hero-micro-link {
  color: var(--sage-light);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.hero-micro-link:hover { color: var(--cream); }

/* ── Trust Bar ── */
.trust-bar {
  background: #1F4030;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trust-bar-item {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #E2EBE5;
}

/* ── Section Base ── */
.section { padding: 80px 0; }
.section-dark { background: var(--forest); color: var(--cream); }
.section-light { background: var(--cream); color: var(--ink); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.section-label-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.section-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 40px;
}

/* ── Split Grid (Problem → Solution) ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pain-list li {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 24px;
  position: relative;
}
.pain-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.seasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.season-card {
  background: var(--white);
  border: 1px solid var(--cream-warm);
  border-radius: 10px;
  padding: 18px 16px;
}
.season-icon { font-size: 22px; display: block; margin-bottom: 6px; }
.season-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 4px;
}
.season-card p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ── Testimonial ── */
.testimonial {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-video { margin-bottom: 28px; }
.video-embed {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.video-wrapper {
  position: relative;
}
.video-wrapper video,
.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}
.video-youtube-link {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s ease;
  z-index: 10;
}
.video-youtube-link:hover {
  background: rgba(0,0,0,0.9);
}
.video-youtube-icon {
  width: 18px;
  height: 18px;
  color: #FF0000;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 16px;
  border: none;
}
.testimonial-author { margin-bottom: 20px; }
.testimonial-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.testimonial-author span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
}
.testimonial-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s ease;
}
.testimonial-link:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

/* ── Offer Groups ── */
.offer-group { margin-bottom: 48px; }
.offer-group:last-child { margin-bottom: 0; }
.offer-group-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 4px;
}
.offer-group-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--cream-warm);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.2s ease;
}
.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,58,43,0.08);
}
.offer-icon {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
.offer-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.offer-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.25;
}
.offer-body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.offer-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: all 0.2s ease;
}
.offer-cta:hover { text-decoration: underline; }

/* ── CTA Banner ── */
.cta-banner { text-align: center; padding: 80px 40px; }
.cta-banner .section-body {
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta-banner-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}
.cta-banner-btn:hover { background: var(--gold-hover); }
.cta-banner-micro {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--sage-light);
  margin-top: 16px;
}
.cta-banner-link {
  color: var(--sage-light);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.cta-banner-link:hover { color: var(--cream); }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--cream-warm);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,58,43,0.08);
}
.blog-img-src {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.blog-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--sage-pale), var(--sage-light));
}
.blog-body { padding: 20px 24px 24px; }
.blog-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.25;
}
.blog-excerpt {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s ease;
}
.blog-link:hover { text-decoration: underline; }

/* ── Coaching CTA ── */
#scaling .section-title { font-size: 38px; line-height: 1.15; }

/* ── Footer ── */
.footer {
  background: #162E22;
  color: var(--sage-pale);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--sage-pale);
  max-width: 280px;
}
.footer-heading {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--sage-pale);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding: 20px 40px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(198,218,210,0.5);
}

/* ── Scroll offset for fixed nav ── */
#about, #stories, #resources, #scaling {
  scroll-margin-top: 80px;
}

/* ── Responsive ── */

/* Tablet (≤ 768px) */
@media (max-width: 768px) {
  .navbar-toggle { display: flex; }
  .navbar-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(28,58,43,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
  }
  .navbar-menu.open { opacity: 1; visibility: visible; }
  .navbar-links { flex-direction: column; align-items: center; gap: 28px; }
  .navbar-links a { font-size: 20px; }
  .navbar-cta { font-size: 16px; padding: 14px 32px; }

  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 18px; }
  .hero-body { font-size: 15px; }
  .hero-form { flex-direction: column; }
  .hero-input { min-width: 0; width: 100%; max-width: 400px; }
  .hero-btn { width: 100%; max-width: 400px; }
  .hero { min-height: 500px; padding: 40px 24px; }

  .trust-bar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 24px;
  }
  .trust-bar-item { font-size: 12px; }

  .section { padding: 64px 0; }
  .container { padding: 0 24px; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-title { font-size: 28px; }

  .offer-grid { gap: 16px; }
  .offer-card { padding: 24px; }
  .offer-title { font-size: 18px; }
  .offer-group { margin-bottom: 40px; }

  .cta-banner { padding: 56px 24px; }
  .cta-banner .section-title { font-size: 30px; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .blog-body { padding: 16px 20px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-tagline { max-width: none; }
  .footer-links { align-items: center; }
  .footer { padding: 48px 0 0; }
  .footer-bottom { padding: 16px 24px; }
}

/* Small tablet (≤ 480px) */
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  .hero-body { font-size: 14px; }
  .hero { min-height: 440px; padding: 32px 20px; }
  .hero-input { height: 44px; }
  .hero-btn { height: 44px; }

  .section { padding: 48px 0; }
  .container { padding: 0 20px; }
  .section-title { font-size: 24px; }
  .section-body { font-size: 15px; }
  .seasons-grid { gap: 10px; }
  .season-card { padding: 14px; }

  .offer-grid { grid-template-columns: 1fr; gap: 16px; }
  .offer-card { padding: 20px; }
  .offer-title { font-size: 17px; }
  .offer-body { font-size: 13px; }
  .offer-cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: var(--gold);
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
  }
  .offer-cta:hover { text-decoration: none; background: var(--gold-hover); }

  .cta-banner { padding: 48px 20px; }
  .cta-banner .section-title { font-size: 26px; }
  .cta-banner-btn { width: 100%; padding: 14px 24px; font-size: 15px; }

  .blog-grid { grid-template-columns: 1fr; gap: 16px; }

  #scaling .section-title { font-size: 26px; }
  #scaling .cta-banner-btn { width: 100%; }

  .testimonial-quote { font-size: 18px; }
}

/* Medium screens (≤ 1024px) — 2-col offers */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
