/* Lemonade-inspired frame — therapy content, calm sage accent */

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

:root {
  --pink: #ff0083;
  --pink-hover: #e60076;
  --sage: #3d6b5a;
  --sage-soft: #e8f5ef;
  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e8e8e8;
  --radius: 16px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container { width: min(var(--max), 92vw); margin-inline: auto; }
.center { text-align: center; }
.muted { color: var(--text-muted); }
.small { font-size: 0.875rem; }
.lead { font-size: 1.125rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Header — minimal like Lemonade */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  padding: 0.5rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  line-height: 1.2;
}

.brand-title {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.brand-sub {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.15rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav a:hover { opacity: 1; }

.btn {
  display: inline-block;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-1px);
}

.btn-header { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-hero { padding: 1rem 2rem; font-size: 1.05rem; margin-top: 0.5rem; }
.btn-large { padding: 1rem 2.25rem; font-size: 1.05rem; }

.menu-toggle {
  display: none;
  font: inherit;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.5rem 4vw 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a {
  padding: 0.75rem 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { display: flex; }

@media (max-width: 960px) {
  .nav a { font-size: 0.8rem; }
  .nav { gap: 0.85rem; }
  .brand-title { font-size: 0.85rem; }
  .brand-sub { font-size: 0.65rem; }
}

@media (max-width: 768px) {
  .nav, .btn-header { display: none; }
  .menu-toggle { display: block; }
}

/* Hero — Lemonade bold headline */
.hero {
  padding: 5rem 0 6rem;
  text-align: center;
  background: var(--bg);
}

.hero-inner { max-width: 820px; margin-inline: auto; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
  max-width: 52rem;
  margin-inline: auto;
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--text);
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.5;
}

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

.section-intro { margin-bottom: 2.5rem; }

.section-intro h2,
.split-copy h2,
.section-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-intro p { color: var(--text-muted); margin-top: 0.5rem; font-size: 1.05rem; }

/* Benefit cards — Lemonade product row */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.info-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.benefits-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.benefits-visual img { display: block; width: 100%; height: auto; }

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.split-copy p + p { margin-top: 1rem; }

.about-cst-q {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.about-cst-q + .lead { margin-top: 0.35rem; }

.about-visual {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual img {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 240px; margin-inline: auto; }
}

/* Book CTA band */
.section-cta {
  background: var(--sage-soft);
  text-align: center;
}

.book-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 1rem;
}

.book-contact a {
  color: var(--sage);
  font-weight: 600;
  text-decoration: none;
}

.book-contact a:hover { text-decoration: underline; }

.book-contact p + p { margin-top: 0.25rem; }

/* Who can benefit cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
}

.stat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-card h3:last-child { margin-bottom: 0; }

.stat-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 1100px) {
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .stat-grid { grid-template-columns: 1fr; }
}

/* Therapist */
.therapist-card { display: flex; justify-content: center; }

.photo-placeholder {
  width: min(240px, 70vw);
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--sage-soft), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--sage);
}

.split-copy .name {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.5rem 0 0.15rem;
}

.split-copy .role {
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.credentials {
  list-style: none;
  padding: 0;
}

.credentials li + li { margin-top: 0.35rem; }

.credentials li::before {
  content: "* ";
  font-weight: 600;
}

.usp { margin-top: 1rem; }

.usp-item + .usp-item { margin-top: 1rem; }

/* Testimonials carousel — Lemonade-style sliding stories */
.section-testimonials { background: var(--bg-alt); }

.section-testimonials .lead {
  max-width: 36rem;
  margin-inline: auto;
}

.testimonial-carousel {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  padding: 0 3rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.tweet-card,
.story-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  min-height: 100%;
}

.tweet-card p + p,
.story-card p + p { margin-top: 0.85rem; }

.tweet-card footer,
.story-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-style: normal;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: #111;
}

.video-embed iframe,
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed video {
  object-fit: cover;
  background: #111;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s, color 0.2s;
}

.carousel-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.is-active {
  background: var(--pink);
  transform: scale(1.15);
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .testimonial-carousel { padding: 0 2.25rem; }
  .tweet-card,
  .story-card { padding: 1.5rem; }
  .carousel-btn {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 1rem;
  }
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.logo-footer {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}

.name-footer {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.footer-inner p + p { margin-top: 0.35rem; }
