/* ---------- Base ---------- */
:root {
  --green: #1f5d3b;
  --green-dark: #174a2e;
  --yellow: #f5b800;
  --yellow-hover: #e0a800;
  --cream: #fdf6e8;
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #555;
  --border: #e5e5e5;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--muted); }

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

/* ---------- Header / Nav ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.nav-links { display: flex; gap: 32px; font-size: 0.92rem; }
.nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a.active { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.35s ease, color 0.35s ease;
}
.btn:hover { background: var(--yellow-hover); }
.btn-block { width: 100%; }
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: #348a5b; }

/* ---------- Section ---------- */
section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 48px; }

/* ---------- Hero (Home) ---------- */
.hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("sabine%20routine%20website%20screenshots/home%20page%20background%20image%20sabine.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  line-height: 1.15;
}
.hero-card {
  background: linear-gradient(135deg, rgba(31, 93, 59, 0.55) 0%, rgba(46, 122, 79, 0.45) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.hero-card p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
  font-size: 0.98rem;
  line-height: 1.6;
}
.hero-card p:last-child { margin-bottom: 0; }
.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.hero-card-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  line-height: 1.7;
}
.hero-card-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--yellow);
  font-weight: 700;
}

/* ---------- Meet Sabine ---------- */
.meet-heading {
  text-align: center;
  margin-bottom: 40px;
}
.meet {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 140px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.meet-photo {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
}
.meet p {
  font-size: 0.85rem;
  line-height: 1.65;
}
.meet-photo img { width: 100%; height: 100%; object-fit: cover; }
.meet h2 { margin-bottom: 16px; }
.meet h2 .accent { color: var(--green); }

/* ---------- Offerings (3 yellow cards) ---------- */
.offerings { background: var(--cream); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.offer-card {
  background: #f6c84a;
  border-radius: 50% 50% 16px 16px / 30% 30% 16px 16px;
  padding: 0 28px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  max-width: 340px;
  margin: 0 auto;
  width: 100%;
}
.offer-card h3 {
  margin-bottom: 28px;
  font-size: 1.7rem;
  font-weight: 700;
}
.offer-icon {
  width: 108px;
  height: 108px;
  object-fit: contain;
  background: transparent;
  margin: 0 auto;
  display: block;
}
.offer-icon[src*="lemon"] {
  width: 100px;
  height: 100px;
}
.spin {
  animation: spin 2.5s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.offer-card p {
  color: #2a2a2a;
  flex-grow: 1;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
}
.offer-card .btn { align-self: center; }

/* ---------- Sample practices (frosted cards over photo bg) ---------- */
.practices {
  background-image: url("sample-practices-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.practices-title {
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}
.practices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.practice-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 18px 18px 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.practice-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 6px;
}
.practice-icon { font-size: 1.1rem; }
.practice-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #2a2a2a;
  margin: 0;
}

/* ---------- Upcoming workshops (3-column) ---------- */
.upcoming { background: #fff; }
.upcoming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.upcoming-left h2 { margin-bottom: 20px; }
.upcoming-left p {
  margin-bottom: 28px;
  color: var(--muted);
}
.upcoming-left-img {
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
  display: block;
}
.upcoming-card {
  background: var(--green);
  color: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.upcoming-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.upcoming-card p,
.upcoming-card ul,
.upcoming-card li { color: #fff; }
.upcoming-date {
  font-size: 1rem;
  margin-bottom: 22px;
}
.upcoming-theme {
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.5;
}
.upcoming-theme strong { letter-spacing: 0.5px; }
.upcoming-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.upcoming-bullets li {
  padding: 0;
}
.upcoming-tagline {
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.upcoming-meta {
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.upcoming-cta {
  align-self: center;
}
.upcoming-right {
  border-radius: 14px;
  overflow: hidden;
  display: flex;
}
.upcoming-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

/* ---------- Two-up (workshops + signup) ---------- */
.two-up {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.workshops-card,
.signup-card {
  border-radius: 16px;
  padding: 36px;
}
.workshops-card {
  background: #fff;
  border: 1px solid var(--border);
}
.workshops-card h2,
.workshops-card p,
.workshops-card-img {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.workshops-card h2 { margin-bottom: 24px; }
.workshops-card p { margin-bottom: 32px; }
.workshops-card-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.signup-card {
  background: var(--green);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signup-card h3, .signup-card h2 { color: #fff; }
.signup-card p { color: rgba(255,255,255,0.85); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.test-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 28px;
  align-items: stretch;
}
.test-card > div:first-child {
  display: flex;
  flex-direction: column;
}
.test-card .stars { color: var(--yellow); margin-bottom: 12px; letter-spacing: 2px; }
.test-card .quote { font-size: 0.95rem; color: var(--text); margin: 0 0 16px; flex-grow: 1; }
.test-card .name { font-weight: 600; font-size: 0.9rem; color: var(--muted); margin-top: auto; }
.test-card .name .title { font-weight: 400; color: var(--muted); font-style: italic; }
.test-card .avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  align-self: center;
}
.test-card .avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Individual support split ---------- */
.support-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.support-split h2 { color: var(--green); }
.support-split ul { padding-left: 1.2rem; color: var(--muted); }
.support-split ul li { margin-bottom: 10px; }
.support-cta {
  background: #f7d56b;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.support-cta h3 { margin-bottom: 12px; }
.support-cta ul { text-align: left; padding-left: 1.2rem; margin-bottom: 20px; }

/* ---------- Workshops hero (full-bleed image bg) ---------- */
.workshops-hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("sabine%20routine%20website%20screenshots/workshops%20page%20sabine%20large%20img%20kitchen.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 540px;
  padding: 0;
  display: flex;
  align-items: center;
}
.workshops-hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
}
.workshops-hero-text {
  max-width: 620px;
  color: #fff;
}
.workshops-hero-text h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  margin-bottom: 20px;
  line-height: 1.15;
}
.workshops-hero-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* ---------- Workshops hero row (bigger image) ---------- */
.workshops-hero-row {
  grid-template-columns: 1fr 1.6fr;
}
.workshops-hero-img {
  aspect-ratio: 4/3;
  max-height: 560px;
}
.workshops-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Workshops page ---------- */
.banner-image {
  position: relative;
  height: 560px;
  overflow: hidden;
  --brush-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 600' preserveAspectRatio='none'><path fill='white' d='M0,28 C40,8 80,42 130,18 C175,2 220,38 270,15 C320,45 365,5 415,22 C465,48 510,8 560,28 C615,50 660,4 710,20 C760,42 805,10 855,30 C905,2 950,38 1000,16 L1000,580 C950,598 905,562 855,584 C805,558 760,594 710,576 C660,556 615,594 560,572 C510,594 465,554 415,580 C365,594 320,558 270,584 C220,558 175,596 130,580 C80,560 40,594 0,572 Z'/></svg>");
  -webkit-mask-image: var(--brush-mask);
  mask-image: var(--brush-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}
.banner-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.banner-image .banner-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  text-align: center;
  padding: 24px;
  background: rgba(0,0,0,0.25);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.feature-row.reverse { grid-template-columns: 1fr 1fr; }
.feature-row.reverse .feature-img { order: 2; }
.feature-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-text h2 { color: var(--green); margin-bottom: 16px; }

/* ---------- Off-site events split hero ---------- */
.offsite-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  min-height: 560px;
}
.offsite-title {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 8px 32px;
  border-radius: 999px;
}
.offsite-side {
  padding: 110px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offsite-side h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 24px;
}
.offsite-side p { margin-bottom: 18px; line-height: 1.65; }
.offsite-side p.lead { font-weight: 600; }
.offsite-cta { align-self: center; margin-top: 28px; }
.offsite-educators {
  background: var(--green);
  color: #fff;
  padding-right: 240px;
}
.offsite-educators h2 { color: #fff; }
.offsite-educators p { color: rgba(255, 255, 255, 0.95); }
.offsite-corporate {
  background: #ecf3ee;
  padding-left: 240px;
}
.offsite-corporate h2 { color: var(--text); }
.offsite-corporate p { color: var(--text); }
.offsite-center-img {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 270px;
  height: 410px;
  border-radius: 135px 135px 24px 24px;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}
.offsite-center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Off-site events ---------- */
.page-title {
  text-align: center;
  padding: 64px 24px 24px;
}
.page-title h1 { font-weight: 600; }

.duo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.duo-card {
  background: var(--green);
  color: #fff;
  border-radius: 16px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 20px;
  align-items: center;
}
.duo-card h3, .duo-card h2 { color: #fff; }
.duo-card p { color: rgba(255,255,255,0.9); }
.duo-card .duo-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
}
.duo-card .duo-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact page ---------- */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 200px);
}
.contact-photo {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 48px 32px;
}
.contact-photo img {
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50% 50% 16px 16px / 28% 28% 16px 16px;
}
.contact-form-wrap {
  background: var(--cream);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  max-width: 480px;
  margin: 24px 0 0;
}
.contact-form h3 { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 500;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
}
.form-field textarea { min-height: 100px; resize: vertical; }
.required { color: #d33; }

/* ---------- Pain points / checklist (One-to-One page) ---------- */
.pain-section { background: var(--cream); }
.pain-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: center;
}
.pain-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 720px;
}
.pain-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pain-text-col h2 {
  margin-bottom: 16px;
}
.pain-text-col > p { margin-bottom: 16px; }
.pain-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 16px 0 24px;
}
.pain-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}
.pain-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}
.pain-note-inline {
  font-style: italic;
  color: var(--text);
  margin-top: 16px;
}

/* ---------- Approach bullets ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 980px;
  margin: 32px auto 0;
}
.approach-grid h3 { color: var(--green); margin-bottom: 12px; }
.approach-grid ul { padding-left: 1.2rem; color: var(--muted); }
.approach-grid ul li { margin-bottom: 8px; }

/* ---------- Approach section with image (One-to-One page) ---------- */
.approach-section-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.approach-text-col h2 { margin-bottom: 16px; }
.approach-text-col > p { margin-bottom: 24px; }
.approach-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin: 8px 0 16px;
}
.approach-lists h3 {
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.approach-lists ul { padding-left: 1.2rem; color: var(--muted); }
.approach-lists ul li { margin-bottom: 6px; font-size: 0.92rem; }
.approach-note-inline {
  font-style: italic;
  color: var(--text);
  margin-top: 16px;
}
.approach-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 720px;
}
.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------- Program summary (One-to-One page) ---------- */
.program-summary-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.program-summary-text h2 { margin-bottom: 16px; color: var(--green); }
.program-summary-text p { margin-bottom: 12px; }
.program-months,
.program-included {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.program-months li,
.program-included li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}
.program-months li::before,
.program-included li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--green);
  font-weight: 700;
}
.program-summary-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 720px;
}
.program-summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Resource cards (calendar + intake forms) ---------- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.resource-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
.resource-card h3 { margin-bottom: 8px; color: var(--green); }
.resource-card p { font-size: 0.9rem; flex-grow: 1; }

/* ---------- Big consultation CTA strip ---------- */
.cta-strip {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 64px 24px;
}
.cta-strip h2,
.cta-strip h3 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 24px; }
.cta-strip ul {
  list-style: none;
  display: inline-block;
  text-align: left;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.9);
}
.cta-strip ul li { padding: 4px 0; }
.cta-strip ul li::before { content: "• "; color: var(--yellow); margin-right: 6px; }

/* ---------- Program page (6-month) ---------- */
.program-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.month-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 6px solid var(--green);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}
.month-card .month-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.month-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.month-card .lead { color: var(--text); margin-bottom: 16px; }
.month-card .sub-label {
  font-weight: 600;
  color: var(--text);
  margin: 14px 0 6px;
  font-size: 0.95rem;
}
.month-card ul { padding-left: 1.2rem; color: var(--muted); }
.month-card ul li { margin-bottom: 4px; }

.included-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 40px;
  max-width: 820px;
  margin: 32px auto 0;
}
.included-card h2 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--green);
}
.included-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.included-card ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}
.included-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---------- Intake page (gender toggle + form embed) ---------- */
.prefill-wrap {
  max-width: 540px;
  margin: 0 auto 28px;
  text-align: center;
}
.prefill-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.prefill-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.prefill-fields input {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .prefill-fields { grid-template-columns: 1fr; }
}
.gender-toggle {
  display: flex;
  gap: 4px;
  background: var(--cream);
  padding: 6px;
  border-radius: 999px;
  max-width: 460px;
  margin: 0 auto 36px;
}
.toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  transition: background-color 0.25s ease, color 0.25s ease;
  font-family: inherit;
}
.toggle-btn:hover { color: var(--text); }
.toggle-btn.active {
  background: var(--green);
  color: #fff;
}
.form-embed {
  max-width: 760px;
  margin: 0 auto;
}
.form-embed iframe {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  display: block;
}

/* ---------- Modal (Calendly popup) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 1000px;
  width: 100%;
  height: 95vh;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.modal-content h2 { font-size: 1.5rem; }
.modal-content > p { font-size: 1.15rem; margin-bottom: 12px !important; }
.modal-content .calendly-inline-widget {
  flex: 1;
  min-height: 0;
  height: auto !important;
  width: 100% !important;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
  padding: 4px 8px;
}
.modal-close:hover { color: var(--text); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 0.85rem;
  background: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner,
  .meet,
  .offerings-grid,
  .two-up,
  .test-grid,
  .support-split,
  .feature-row,
  .feature-row.reverse,
  .duo-cards,
  .contact-page {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-img { order: 0; }
  .practices-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 16px; font-size: 0.85rem; }
  .duo-card { grid-template-columns: 1fr; text-align: center; }
  .duo-card .duo-photo { margin: 0 auto; }
  .upcoming-grid { grid-template-columns: 1fr; }
  .upcoming-right img { min-height: 320px; }
  .offsite-split { grid-template-columns: 1fr; min-height: auto; }
  .offsite-educators, .offsite-corporate { padding: 60px 32px; }
  .offsite-center-img {
    position: relative;
    left: auto; top: auto; transform: none;
    width: 280px;
    height: 380px;
    margin: -60px auto -60px;
  }
  .pain-list,
  .approach-grid,
  .resource-grid,
  .included-card ul {
    grid-template-columns: 1fr;
  }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-image { max-height: 480px; aspect-ratio: 4/3; }
  .approach-section-grid { grid-template-columns: 1fr; }
  .approach-image { max-height: 480px; aspect-ratio: 4/3; order: -1; }
  .approach-lists { grid-template-columns: 1fr; }
  .program-summary-grid { grid-template-columns: 1fr; }
  .program-summary-image { max-height: 480px; aspect-ratio: 4/3; }
}
