/* ============================================
   DESIGN TOKENS — matched to the live site
   ============================================ */
:root {
  --ink: #2B2B2B;         /* main heading/body text — near-black charcoal */
  --text: #3A3A3A;
  --text-soft: #555555;
  --paper: #FFFFFF;        /* white throughout, per the real site */
  --paper-alt: #FFFFFF;
  --pink: #D6336C;         /* nav link color */
  --green: #2E9B3D;        /* primary CTA green */
  --green-deep: #237A30;
  --line: rgba(0,0,0,0.08);

  /* Confirmed from the live site's rendered fonts panel: Segoe UI (body) / Segoe UI Semibold (headings). */
  --font-display: 'Segoe UI Semibold', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

/* Type scale confirmed from the live site's rendered-fonts panel:
   H1/hero = 42/42, H2 = 32/32, H3 = 28/28, body = 16/24 — all Segoe UI, weight 500 for headings. */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.4em;
  color: var(--ink);
  text-align: center;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.625rem); }              /* ~30–42px */
h2 { font-size: clamp(1.65rem, 3vw, 2rem); }                   /* ~26–32px */
h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); font-weight: 500; } /* ~22–28px */

p { font-size: 1rem; line-height: 1.5; color: var(--text-soft); margin: 0 0 1em; }

.h2-sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);   /* 28px — one step down from the 32px line above it */
  line-height: 1.1;
  margin-top: 0.3em;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.375rem);  /* ~18–22px, matches the hero kicker */
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-soft);
  margin: 0 0 0.6em;
}
.lede { font-size: 1.05rem; line-height: 1.5; max-width: 46ch; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.6em 1.35em;
  border-radius: 4px;
  text-decoration: underline;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }

/* ============================================
   HEADER + HAMBURGER NAV
   ============================================ */
.site-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: var(--green);
  font-family: var(--font-display);
}
.logo-text { font-size: 1.15rem; font-weight: 700; line-height: 1.1; }

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle-bar {
  width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: fixed; inset: 0;
  background: #fff;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 5rem 1.5rem 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  z-index: 40;
  overflow-y: auto;
}
.site-nav.is-open { transform: translateY(0); }
.site-nav-links {
  list-style: none; margin: 0 auto; padding: 0;
  max-width: var(--container); width: 100%;
}
.site-nav-links li { border-bottom: 1px solid var(--line); }
.site-nav-links a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 3.6vw, 1.6rem);
  color: var(--pink);
  text-decoration: none; padding: 0.5em 0;
}
.site-nav-links a.site-nav-cta { color: var(--green); }

/* Desktop nav shown inline on wide screens, matching the live site */
@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    transform: none;
    background: transparent;
    flex-direction: row;
    padding: 0;
    overflow: visible;
  }
  .site-nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin: 0;
  }
  .site-nav-links li { border-bottom: none; }
  .site-nav-links a {
    font-size: 0.98rem;
    padding: 0;
    white-space: nowrap;
  }
  .site-nav-links a.site-nav-cta {
    background: var(--green);
    color: #fff;
    padding: 0.7em 1.3em;
    border-radius: 4px;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero { padding: 3.5rem 1.5rem; }
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-kicker {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.375rem); /* 22px at desktop */
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.5em;
  text-align: center;
}
.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 2.625rem); /* 42px at desktop */
  line-height: 1.1;
  color: var(--ink);
  text-align: center;
}
.hero-avatars { display: flex; justify-content: center; margin: 1.5rem 0 0.75rem; }
.hero-avatars img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
  margin-left: -14px;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-caption { color: var(--text-soft); font-size: 1rem; line-height: 1.5; margin-bottom: 1.5rem; text-align: center; }
.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}
.hero-media iframe { width: 100%; height: 100%; border: 0; }
.hero-media wistia-player { width: 100%; height: 100%; display: block; }
.hero-video-note { text-align: center; color: var(--text-soft); font-size: 0.95rem; margin-top: 0.75rem; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

/* ============================================
   SECTIONS — consistently text-left / image-right
   ============================================ */
.section { padding: 4.5rem 1.5rem; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-inner.narrow { max-width: 720px; }
.section-inner.center { text-align: center; }
.section-inner.center .lede { margin-left: auto; margin-right: auto; }

.page-intro { padding-bottom: 2rem; }
.page-intro + section { padding-top: 2rem; }

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: end; /* bottoms of text block and image finish at the same line */
}
/* The live site keeps its text column to a tight reading measure (~420-490px)
   and lets imagery carry equal or greater visual weight — narrower text, not a wider one. */
.media-split > div:first-child { max-width: 32rem; }
.media-split-media img { border-radius: 8px; width: 100%; height: auto; }
@media (max-width: 860px) {
  .media-split { grid-template-columns: 1fr; gap: 1.75rem; }
  .media-split-media { order: -1; }
}

.stat-line { font-size: 1.05rem; color: var(--text); }
.stat-line strong { color: var(--ink); }

.check-list { list-style: none; margin: 1.25rem 0; padding: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.4rem 0; font-size: 1rem; color: var(--text);
}
.check-emoji { flex-shrink: 0; }

/* Signature: Desire / Trust / Fear scale */
.scale-diagram { display: flex; margin: 2rem 0; }
.scale-diagram svg { width: 100%; max-width: 360px; height: auto; }
.scale-caption {
  display: flex; justify-content: space-between; max-width: 360px;
  margin: 0.5rem 0 0; font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
}
.scale-caption span:nth-child(1) { color: var(--green-deep); }
.scale-caption span:nth-child(2) { color: var(--pink); }

/* Testimonials — plain row, no cards, matching the live site */
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.testimonial-item { display: flex; flex-direction: column; align-items: flex-start; }
.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.9rem;
}
.testimonial-item p { font-size: 0.98rem; color: var(--text); }
.testimonial-name { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin: 0.3em 0 0; }
@media (max-width: 860px) {
  .testimonial-row { grid-template-columns: 1fr; gap: 2rem; }
}

/* Full-bleed video-background teaser (Why Shouldn't You Work With Us) */
.video-teaser {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.video-teaser-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.video-teaser-media iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;   /* 16:9, scaled to always cover */
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.video-teaser-scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.video-teaser-content {
  position: relative; z-index: 2;
  max-width: 720px; padding: 2rem 1.5rem; text-align: center;
}
.video-teaser-content h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.video-teaser-content p { color: rgba(255,255,255,0.9); }

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}
.site-footer a { color: var(--text-soft); text-decoration: underline; }

/* Accordion (FAQ) */
.accordion { margin-top: 1rem; }
.accordion-item { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.accordion-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--green); flex-shrink: 0;
  transition: transform 0.2s ease;
}
.accordion-item[open] summary::after { transform: rotate(45deg); }
.accordion-item p { margin-top: 0.8em; }
.accordion-item blockquote {
  border-left: 3px solid var(--pink);
  margin: 0.8em 0; padding-left: 1rem;
  font-style: italic; color: var(--text);
}

.teaser-box { text-align: center; }
.teaser-box h2 { margin-bottom: 0.4em; }

.paypal-block { margin: 1.5rem auto 0; max-width: 420px; }
.paypal-block + .paypal-block { margin-top: 1.5rem; }

