/* ============================================
   Stretch Lounge — South Surrey, BC
   Primary: White | Secondary: Light Green
   Refactored for visual impact, readability,
   and conversion flow.
   ============================================ */

@font-face {
  font-family: 'Playlist Script';
  src: url('fonts/playlist-script.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --off-white: #f8faf6;
  --cream: #f2f5ef;
  --light-green: #b8d4a8;
  --light-green-soft: #d4e8c9;
  --green: #7cb068;
  --green-dark: #5a8f4a;
  --text: #1e2a1a;
  --text-muted: #4a5445;
  --border: #dde3d8;
  --shadow: rgba(30, 42, 26, 0.06);
  --shadow-md: rgba(30, 42, 26, 0.10);
  --shadow-lg: rgba(30, 42, 26, 0.14);
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Outfit', Georgia, serif;
  --font-script: 'Playlist Script', cursive;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --section-pad: clamp(4.5rem, 8vw, 6.5rem);
}

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

html {
  scroll-behavior: smooth;
}

/* ---- Typography & Readability ---- */
body {
  font-family: var(--font-sans);
  font-size: 1rem;    /* 16px minimum */
  line-height: 1.7;
  color: var(--text);  /* dark charcoal, not gray */
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--green);
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  height: 96px;
}

.logo {
  display: inline-block;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo picture {
  display: block;
}
.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}
.logo:hover img {
  opacity: 0.85;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav a:hover {
  color: var(--text);
}

/* ---- Buttons (with hover lift) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px var(--shadow);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-md);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px var(--shadow);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

.btn-nav {
  background: var(--light-green);
  color: var(--text);
}
.btn-nav:hover {
  background: var(--green);
  color: var(--white);
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1.1rem;
}

.btn-stacked {
  flex-direction: column;
  text-align: center;
  padding: 1.1rem 2.75rem;
  line-height: 1.15;
  gap: 0.15rem;
}
.btn-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}
.btn-price {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0.2rem 0 0.3rem;
}
.btn-sub {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}

@media (max-width: 600px) {
  .btn-price {
    font-size: 2.2rem;
  }
  .btn-stacked {
    padding: 1rem 2rem;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  padding: 0.6rem 0;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .logo img {
    height: 56px;
  }
  .header-inner {
    height: 72px;
  }
  .header.is-open .nav-mobile {
    display: flex;
  }
  .header.is-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .header.is-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ============================================
   HERO — increased visual weight
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('hero-bg-stretch.webp') center center / cover no-repeat;
  z-index: -2;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.68);
  z-index: -1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, var(--light-green-soft) 100%);
  opacity: 0.6;
}

/* Hero logo image */
.hero-logo-wrap {
  margin-top: -1.5rem;
  margin-bottom: -2.5rem;
}
.hero-logo-wrap picture {
  display: block;
}
.hero-logo {
  display: block;
  margin: 0 auto;
  height: clamp(13rem, 36vw, 23rem);
  width: auto;
  max-width: min(800px, 90vw);
  object-fit: contain;
}

.hero-marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.hero-marquee-track {
  display: flex;
  gap: 0.75em;
  white-space: nowrap;
  animation: marquee-scroll 4s linear infinite;
}

.hero-marquee-track span {
  font-family: var(--font-sans);
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  padding-right: 0.75em;
}

.hero-marquee-track span::after {
  content: '·';
  padding-left: 0.75em;
  color: var(--green);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-content {
  max-width: 780px;
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-dark);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
}

.hero-subline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-subline {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 90%;
  }
}

.hero .btn-primary {
  margin-bottom: 3rem;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green);
  filter: drop-shadow(0 0 1px currentColor);
  animation: scroll-arrow-pulse 2s ease-in-out infinite;
}
@media (min-width: 768px) {
  .scroll-arrow {
    width: 1.75rem;
    height: 1.75rem;
  }
}
@keyframes scroll-arrow-pulse {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

/* ============================================
   BENEFITS STRIP — 2x2 on mobile
   ============================================ */
.benefits-strip {
  background: var(--light-green-soft);
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.benefit-pill {
  padding: 1.25rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.02em;
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-pill:hover {
  box-shadow: 0 6px 20px var(--shadow-md);
  transform: translateY(-2px);
}

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

/* ============================================
   SECTIONS — consistent generous spacing
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ============================================
   BENEFITS CARDS — with shadow + border pop
   ============================================ */
.section-pillars {
  background: var(--white);
}

.pillars-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.pillars-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
}

.pillars-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.pillars-intro-text .section-subtitle {
  margin-left: 0;
  max-width: 560px;
}

.pillars-intro-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pillars-intro-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .pillars-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.section-pillars .card {
  display: flex;
  flex-direction: column;
}

.section-pillars .card h3 {
  color: var(--green-dark);
}

.section-pillars .card p {
  line-height: 1.6;
}

.section-pillars .card .link-arrow {
  margin-top: auto;
  padding-top: 1rem;
}

.card-audience {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--green);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 12px 40px var(--shadow-lg);
  border-color: var(--light-green);
  transform: translateY(-3px);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.25rem;
  color: var(--green-dark);
  background: var(--light-green-soft);
  border: 2px solid var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .benefits-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICES
   ============================================ */
.section-services {
  background: var(--cream);
}

.menu-title {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.menu-category-duration {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.menu-grid-single {
  grid-template-columns: 1fr;
  max-width: 600px;
}

.menu-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.menu-item:hover {
  box-shadow: 0 12px 40px var(--shadow-lg);
  transform: translateY(-3px);
}

.menu-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.menu-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-session-options {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
}

.menu-cta {
  margin-top: 1.5rem;
}

.menu-session-options h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-options-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.menu-option {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-options-row {
    flex-direction: column;
    gap: 1rem;
  }
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.services-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 14px 45px var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-green-soft) 100%);
  z-index: 0;
}
.service-card-bg-2 {
  background: linear-gradient(135deg, var(--green) 0%, var(--light-green) 100%);
}

.service-card-content {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
  color: var(--text);
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.service-card-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  line-height: 1.6;
}
.service-card-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--green-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  align-self: flex-start;
  opacity: 1 !important;
}

.service-duration {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  opacity: 1 !important;
}

.link-arrow {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--transition), gap var(--transition);
}
.link-arrow:hover {
  color: var(--green-dark);
  gap: 0.5rem;
}

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

/* ============================================
   FIRST SESSION — side-by-side + step icons
   ============================================ */
.section-first {
  background: var(--white);
}

.first-session-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.first-session-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.first-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.first-session-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.first-session-steps {
  margin-bottom: 2rem;
}

.first-session-steps dt {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

.first-session-steps dd {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-left: 0;
  margin-bottom: 1.25rem;
}

.first-session-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.price-original {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
}

.first-session-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.first-session-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

.steps {
  list-style: none;
  margin-bottom: 2.25rem;
}
.steps li {
  margin-bottom: 1.75rem;
  padding-left: 3.5rem;
  position: relative;
}

/* Step icons */
.steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--light-green-soft);
  border: 2px solid var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Scan/monitor icon for AI Digital Blueprint */
.steps li:nth-child(1)::before {
  background: var(--light-green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235a8f4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12h2l3-7 4 14 3-7h2'/%3E%3Crect x='1' y='3' width='22' height='18' rx='2'/%3E%3C/svg%3E") center / 18px no-repeat;
}
/* Hands icon for Manual Body Restoration */
.steps li:nth-child(2)::before {
  background: var(--light-green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235a8f4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v0'/%3E%3Cpath d='M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v6'/%3E%3Cpath d='M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8'/%3E%3Cpath d='M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15'/%3E%3C/svg%3E") center / 18px no-repeat;
}
/* Compass/roadmap icon for Longevity Plan */
.steps li:nth-child(3)::before {
  background: var(--light-green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235a8f4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76'/%3E%3C/svg%3E") center / 18px no-repeat;
}

.step-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.steps h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.steps p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.first-session-visual {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.visual-block,
.first-session-img {
  width: 100%;
  max-width: 480px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px var(--shadow-lg);
}
.first-session-visual picture {
  display: block;
  max-width: 480px;
}
.first-session-img {
  display: block;
}

@media (max-width: 768px) {
  .first-session-content {
    grid-template-columns: 1fr;
  }
  .first-session-visual {
    min-height: 260px;
  }
  .visual-block,
  .first-session-img {
    max-width: 100%;
    height: 280px;
  }
}

/* ============================================
   TESTIMONIALS — cards that pop
   ============================================ */
.section-testimonials {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  font-style: normal;
  box-shadow: 0 4px 20px var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial:hover {
  box-shadow: 0 12px 40px var(--shadow-lg);
  transform: translateY(-3px);
}
.testimonial p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.testimonial footer {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

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

/* ---- Location ---- */
.section-location {
  background: var(--white);
}

.location-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.location-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
}

.location-map iframe {
  display: block;
}

@media (max-width: 768px) {
  .location-card-grid {
    grid-template-columns: 1fr;
  }
}
.location-info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.location-info p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.location-note {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--text-muted);
}

.location-address {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 500;
  line-height: 1.6;
  transition: color var(--transition);
}
.location-address:hover {
  color: var(--green);
}

.location-hours {
  margin-top: 1rem;
  line-height: 1.8;
}

/* ---- CTA ---- */
.section-cta {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-green-soft) 100%);
  padding: var(--section-pad) 0;
}

.cta-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-logo-wrap {
  margin-bottom: 1.25rem;
}
.cta-logo-wrap picture {
  display: block;
}
.cta-logo {
  display: block;
  margin: 0 auto;
  height: clamp(4rem, 10vw, 7rem);
  width: auto;
  max-width: min(480px, 80vw);
  object-fit: contain;
}
.cta-box h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.cta-box p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.cta-box .btn {
  margin-bottom: 1rem;
}
.cta-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- Contact ---- */
.section-contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 800px;
  margin-top: 1rem;
}

.contact-logo {
  height: 96px;
  width: auto;
  margin-bottom: 0.75rem;
  mix-blend-mode: multiply;
}
.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 1rem;
}
.contact-info a {
  color: var(--green-dark);
}
.contact-hours {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(124, 176, 104, 0.15);
}

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

/* ---- Footer ---- */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 3.5rem 0;
}

.footer a {
  color: var(--light-green-soft);
}
.footer a:hover {
  color: var(--white);
}

.footer-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.footer .logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer .logo:hover {
  color: var(--light-green-soft);
}
.footer .logo img {
  height: 48px;
}
.footer .logo:hover img {
  opacity: 0.85;
}
.footer-location {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-size: 0.95rem;
}
.footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.hero-pricing {
  min-height: 50vh;
}

.section-pricing {
  background: var(--off-white);
}

.pricing-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pricing-intro-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--green-dark);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.pricing-intro .section-title {
  margin-bottom: 1rem;
}

.pricing-intro .section-subtitle {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-section {
  margin-bottom: 4rem;
}

.pricing-section-title {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.75rem;
}

.pricing-section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-grid-four {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
}

.pricing-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
  border: 2px solid var(--green-dark);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 12px;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.pricing-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.pricing-card-features li {
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.pricing-notes {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green-dark);
}

.pricing-notes h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.pricing-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-notes li {
  padding: 0.75rem 0;
  color: var(--text);
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.pricing-notes li:last-child {
  border-bottom: none;
}

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

@media (max-width: 768px) {
  .pricing-grid,
  .pricing-grid-four {
    grid-template-columns: 1fr;
  }
  
  .pricing-intro {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   PRICING — STACKED OPTIONS (Choose your path)
   ============================================ */
.pricing-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-dark);
  background: var(--light-green-soft);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.section-options {
  background: var(--off-white);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.options-container {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.option-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--shadow);
  color: var(--text);
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
  overflow: hidden;
}

.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.option-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px var(--shadow-md);
  border-color: var(--green);
  color: var(--text);
}

.option-card:hover::before {
  transform: scaleY(1);
}

.option-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.option-card-body {
  flex: 1;
  min-width: 0;
}

.option-card-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.option-card-title {
  font-size: clamp(1.4rem, 2.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.option-card-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.option-card-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-dark);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.option-card-arrow svg {
  width: 22px;
  height: 22px;
  display: block;
}

.option-card:hover .option-card-arrow {
  background: var(--green);
  color: var(--white);
  transform: translateX(4px);
}

.option-card-featured {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  border: 2px solid var(--green-dark);
  box-shadow: 0 6px 24px rgba(90, 143, 74, 0.12);
  padding-top: 2.75rem;
}

.option-card-featured::before {
  background: var(--green-dark);
  transform: scaleY(1);
}

.option-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--green-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px var(--shadow);
}

.options-footnote {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.options-footnote a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .option-card {
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }
  .option-card-arrow {
    width: 40px;
    height: 40px;
  }
  .option-card-arrow svg {
    width: 18px;
    height: 18px;
  }
  .option-card-badge {
    left: 1.25rem;
    top: 0.75rem;
  }
  .option-card-featured {
    padding-top: 2.5rem;
  }
}

/* ---- Tap to Call ---- */
.tap-to-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  padding: 0.6rem 1.25rem;
  background: var(--light-green-soft);
  border-radius: var(--radius);
  border: 2px solid var(--light-green);
  transition: background var(--transition), color var(--transition);
}
.tap-to-call:hover {
  background: var(--green);
  color: var(--white);
}

/* ---- WhatsApp FAB ---- */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 150;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 5.5rem;
  }
}

/* ---- Sticky Mobile Bar ---- */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px var(--shadow-md);
    padding: 0.6rem 1rem;
    gap: 0.6rem;
  }

  .mobile-sticky-btn {
    flex: 1;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background var(--transition);
  }

  .mobile-sticky-call {
    background: var(--light-green-soft);
    color: var(--green-dark);
    border: 2px solid var(--light-green);
  }

  .mobile-sticky-book {
    background: var(--green);
    color: var(--white);
  }

  body {
    padding-bottom: 4.5rem;
  }

  .footer {
    padding-bottom: 5rem;
  }
}
