/* ===== Variables ===== */
:root {
  --black: #0D0D0D;
  --orange: #C2410C;
  --orange-dark: #a5370a;
  --cream: #F5F0EB;
  --white: #FFFFFF;
  --text-muted: rgba(13, 13, 13, 0.65);
  --text-muted-inverse: rgba(245, 240, 235, 0.72);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1140px;
  --radius: 6px;
}

* { box-sizing: border-box; }


body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

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

.container-narrow { max-width: 760px; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75em;
}

.section-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85em 1.8em;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background-color 0.15s ease, opacity 0.15s ease;
  border: 2px solid transparent;
}

.btn-accent {
  background: var(--orange);
  color: var(--white);
}

.btn-accent:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-ghost {
  border-color: currentColor;
  color: inherit;
}

.btn-ghost:hover { opacity: 0.7; }

.btn-large { font-size: 1.05rem; padding: 1em 2.4em; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.brand-name span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover { color: var(--orange); }

.header-cta { flex-shrink: 0; }
.header-cta:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-copy { max-width: 640px; }

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.hero h1 { color: var(--white); }

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted-inverse);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2em;
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--cream);
  padding: 48px 24px 32px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat { display: flex; flex-direction: column; gap: 6px; }

.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--orange);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stats-note {
  margin: 24px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== Sections ===== */
.section {
  padding: 96px 0;
}

.section-cream { background: var(--cream); }

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark .eyebrow { color: var(--orange); }
.section-dark .section-lede { color: var(--text-muted-inverse); }

/* ===== About ===== */
.about-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flow-root;
}

.about-inline-photo {
  float: right;
  width: 300px;
  margin: 8px 0 24px 32px;
}

.about-inline-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.credentials {
  margin-top: 1.5em;
  display: grid;
  gap: 10px;
}

.credentials li {
  position: relative;
  padding-left: 22px;
  font-weight: 500;
  font-size: 0.95rem;
}

.credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ===== Family Strip ===== */
.family-strip {
  margin-top: 72px;
}

.family-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.family-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.family-caption {
  margin: 20px 0 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid rgba(13, 13, 13, 0.08);
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
  margin-bottom: 20px;
}

.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-grid-single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}

.price-card h3 { color: var(--white); }

.strategy-card .btn { margin-top: 0.5em; width: 100%; text-align: center; }

.cadence-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 1.5em;
}

.cadence-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted-inverse);
  background: none;
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  cursor: pointer;
}

.cadence-btn.active {
  background: var(--orange);
  color: var(--white);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0.4em 0 1.4em;
}

.price-amount {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--orange);
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted-inverse);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin-bottom: 2em;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--text-muted-inverse);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.addons { margin-top: 64px; }

.pricing-cta {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(13, 13, 13, 0.1);
  text-align: center;
}

.pricing-cta .section-lede {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.addon-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.addon-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5em;
}

.addon-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.addon-card p + p {
  margin-top: 10px;
}

.addon-card .addon-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 0.4em;
}

.addon-price span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Who This Is For ===== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.fit-card {
  border-radius: var(--radius);
  padding: 36px;
}

.fit-yes { background: var(--black); color: var(--white); }
.fit-no { background: var(--cream); }

.fit-card h3 { margin-bottom: 1em; }

.fit-card ul { display: grid; gap: 14px; }

.fit-card li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
}

.fit-yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.fit-no li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-weight: 700;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  counter-reset: step;
}

.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.75em;
}

.steps h3 { color: var(--white); }
.steps p { color: var(--text-muted-inverse); font-size: 0.95rem; }

/* ===== Testimonial Carousel ===== */
.carousel { margin-top: 40px; }

.carousel-track {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin: 0;
  border: 1px solid rgba(13, 13, 13, 0.08);
}

.testimonial-slide.active { display: block; }

.testimonial-slide p {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 1em;
}

.testimonial-slide cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-role {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.carousel-arrow:hover { background: var(--black); color: var(--white); }

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 13, 13, 0.2);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.active { background: var(--orange); }

/* ===== FAQ / Accordion ===== */
.accordion { margin-top: 40px; display: grid; gap: 12px; }

.accordion-item {
  border: 1px solid rgba(13, 13, 13, 0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.accordion-item summary {
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item summary::-webkit-details-marker { display: none; }

.accordion-item summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.accordion-item[open] summary::after { transform: rotate(45deg); }

.accordion-item p {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--text-muted);
}

.accordion-item p a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== Final CTA ===== */
.cta-final { text-align: center; }

.cta-final .section-lede { margin-left: auto; margin-right: auto; }

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: var(--text-muted-inverse);
  padding: 32px 0;
  border-top: 1px solid rgba(245, 240, 235, 0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inner p { margin: 0; font-size: 0.85rem; }
.site-footer .brand-name span { color: var(--orange); }

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--text-muted-inverse);
  display: flex;
  align-items: center;
}

.footer-links a:hover { color: var(--orange); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 360px; margin: 0 auto; }
  .about-inline-photo { float: none; width: 100%; max-width: 360px; margin: 24px auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid rgba(13, 13, 13, 0.08);
  }

  .hero { padding: 80px 0 64px; }
  .section { padding: 64px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .testimonial-slide { padding: 28px 24px; }
  .price-card { padding: 32px 24px; }
}
