/* ==================== SHARED STYLES — HOLISTIC UNITY ==================== */

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --berry: #7B2252;
  --berry-dark: #5C1A3E;
  --berry-light: #9A3A65;
  --gold: #C9A96E;
  --gold-light: #D4BC8E;
  --cream: #FDF6F0;
  --soft-pink: #F0DFE5;
  --charcoal: #2D2D2D;
  --charcoal-light: #4A4A4A;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }

/* ==================== SKIP LINK ==================== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--berry); color: var(--white); padding: 12px 24px;
  border-radius: 0 0 8px 8px; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; z-index: 10000; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ==================== UTILITY ==================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; overflow-x: clip; }

/* ==================== SCROLL ANIMATIONS ==================== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ==================== NAVIGATION ==================== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 16px 0; transition: all 0.4s ease;
  /* Always semi-opaque so the logo/links never overlap content beneath
     while scrolling — when the user is at the top the photo gradient still
     reads through the blur, but text stays legible. */
  background: rgba(253,246,240,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
nav.scrolled {
  background: rgba(253,246,240,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(139,34,82,0.08); padding: 10px 0;
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 42px; height: 42px; border-radius: 10px; }
.nav-logo span {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--berry); letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--charcoal); font-size: 0.9rem;
  font-weight: 500; position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--berry); }
.nav-links a:hover::after { width: 100%; }
/* ==================== NAV DROPDOWN ==================== */
.nav-dropdown { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; opacity: 0.6; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  background: var(--white); border-radius: 14px; padding: 12px 0; min-width: 220px;
  box-shadow: 0 12px 40px rgba(139,34,82,0.12); border: 1px solid rgba(139,34,82,0.06);
  z-index: 1001; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(6px);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 9px 24px; font-size: 0.88rem; color: var(--charcoal);
  text-decoration: none; font-weight: 500; transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { background: rgba(139,34,82,0.04); color: var(--berry); }

.lang-toggle { display: flex; background: var(--soft-pink); border-radius: 20px; padding: 3px; cursor: pointer; }
.lang-toggle button {
  background: none; border: none; padding: 6px 14px; font-size: 0.8rem; font-weight: 600;
  font-family: var(--font-body); color: var(--charcoal-light); border-radius: 17px; cursor: pointer; transition: all 0.3s;
}
.lang-toggle button.active { background: var(--white); color: var(--berry); box-shadow: 0 2px 8px rgba(139,34,82,0.12); }
.nav-cta {
  background: var(--berry); color: var(--white) !important; padding: 10px 24px !important;
  border-radius: 50px; font-weight: 600 !important; font-size: 0.85rem !important;
  transition: all 0.3s !important; box-shadow: 0 4px 15px rgba(139,34,82,0.25);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--berry-dark) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,34,82,0.35) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--berry); color: var(--white); padding: 16px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 8px 30px rgba(139,34,82,0.3); border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary:hover { background: var(--berry-dark); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(139,34,82,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--berry); padding: 16px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none;
  border: 2px solid var(--berry); transition: all 0.4s ease; cursor: pointer; font-family: var(--font-body);
}
.btn-secondary:hover { background: var(--berry); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(139,34,82,0.25); }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white);
  padding: 16px 36px; border-radius: 50px; font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: all 0.4s ease; box-shadow: 0 8px 25px rgba(201,169,110,0.4);
  border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(201,169,110,0.5); }

/* ==================== SECTION HEADER ==================== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block; background: linear-gradient(135deg,var(--gold),var(--gold-light));
  background-clip: text; -webkit-background-clip: text; color: transparent;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px;
}
.section-title { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--berry); line-height: 1.2; margin-bottom: 20px; }
.section-subtitle { font-size: 1.1rem; color: var(--charcoal-light); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ==================== PAGE HERO (therapy pages) ==================== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--soft-pink) 50%, #E8D0D9 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.page-hero-content h1 {
  font-family: var(--font-display); font-size: 3.8rem; font-weight: 600;
  color: var(--berry); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px;
}
.page-hero-content h1 em { font-style: italic; color: var(--gold); }
.page-hero-content p { font-size: 1.15rem; line-height: 1.7; color: var(--charcoal-light); margin-bottom: 36px; max-width: 500px; }
.page-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.button-group { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero-image { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 80px rgba(139,34,82,0.2); }
.page-hero-image img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.breadcrumb { margin-bottom: 20px; }
.breadcrumb a { color: var(--berry); text-decoration: none; font-size: 0.85rem; font-weight: 500; opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { font-size: 0.85rem; color: var(--charcoal-light); margin: 0 8px; }

/* ==================== BACKGROUND-IMAGE HERO (astrology, human-design, numerology) ==================== */
.page-hero[style*="background-image"] {
  background-size: cover; background-position: center top; position: relative;
  min-height: 520px; display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(253,246,240,0.92) 0%, rgba(240,223,229,0.85) 50%, rgba(253,246,240,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 680px;
  padding: 0 24px; margin: 0 auto 0 clamp(24px, 5vw, 80px);
}
.hero-content h1 {
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 600;
  color: var(--berry); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-size: 1.15rem; line-height: 1.7; color: var(--charcoal-light);
  margin-bottom: 36px; max-width: 560px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
/* .btn base class (used by background-image hero pages) */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer; font-family: var(--font-body); transition: all 0.4s ease; }
.btn.btn-primary {
  background: var(--berry); color: var(--white); padding: 16px 36px; border: none;
  box-shadow: 0 8px 30px rgba(139,34,82,0.3);
}
.btn.btn-primary:hover { background: var(--berry-dark); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(139,34,82,0.4); }
.btn.btn-secondary {
  background: transparent; color: var(--berry); padding: 16px 36px;
  border: 2px solid var(--berry);
}
.btn.btn-secondary:hover { background: var(--berry); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(139,34,82,0.25); }

/* Direct h2/h3/p inside content-section (pages without .content-text wrapper) */
.content-section > .container > h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600;
  color: var(--berry); line-height: 1.2; margin-bottom: 20px;
}
.content-section > .container > h2 em { font-style: italic; color: var(--gold); }
.content-section > .container > p {
  color: var(--charcoal-light); line-height: 1.8; margin-bottom: 16px; font-size: 1rem;
}

/* Step items (alternative to .session-step) */
.step {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); padding: 24px; border-radius: 16px;
  border: 1px solid rgba(139,34,82,0.08); margin-bottom: 16px;
}
.content-section.alt .step { background: var(--cream); border-color: rgba(139,34,82,0.06); }
.step-number {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,var(--berry),var(--berry-light));
  color: var(--white); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1rem; color: var(--berry); margin-bottom: 6px; font-weight: 600; }
.step p { color: var(--charcoal-light); line-height: 1.6; font-size: 0.9rem; margin: 0; }

/* Benefit cards (alternative to .benefit-item) */
.benefit-card {
  background: var(--white); padding: 36px 28px; border-radius: 16px;
  border-top: 4px solid var(--gold); transition: all 0.3s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(139,34,82,0.1); }
.benefit-card h3 { font-size: 1.1rem; color: var(--berry); margin-bottom: 10px; font-weight: 600; }
.benefit-card p { color: var(--charcoal-light); line-height: 1.6; font-size: 0.9rem; margin: 0; }

/* Therapist content wrapper */
.therapist-content { text-align: center; }

/* ==================== CONTENT SECTIONS ==================== */
.content-section { background: var(--white); padding: 80px 0; }
.content-section.alt { background: var(--cream); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--berry); line-height: 1.2; margin-bottom: 20px; }
.content-text h2 em { font-style: italic; color: var(--gold); }
.content-text p { color: var(--charcoal-light); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.content-text p:last-child { margin-bottom: 0; }
.content-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

/* ==================== BENEFITS CARDS ==================== */
.benefits-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.benefit-item {
  background: var(--white); padding: 36px 28px; border-radius: 16px;
  border-top: 4px solid var(--gold); transition: all 0.3s ease;
}
.benefit-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(139,34,82,0.1); }
.benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.benefit-item h3 { font-size: 1.1rem; color: var(--berry); margin-bottom: 10px; font-weight: 600; }
.benefit-item p { color: var(--charcoal-light); line-height: 1.6; font-size: 0.9rem; }

/* ==================== SESSION STEPS ==================== */
.session-steps { counter-reset: step-counter; display: flex; flex-direction: column; gap: 24px; }
.session-step {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--white); padding: 28px; border-radius: 16px; border: 1px solid rgba(139,34,82,0.08);
}
.step-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,var(--berry),var(--berry-light));
  color: var(--white); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.session-step h4 { font-size: 1rem; color: var(--berry); margin-bottom: 6px; font-weight: 600; }
.session-step p { color: var(--charcoal-light); line-height: 1.6; font-size: 0.9rem; }

/* ==================== THERAPIST CTA STRIP ==================== */
.therapist-strip {
  background: linear-gradient(135deg,var(--berry),var(--berry-dark));
  padding: 80px 0; text-align: center; color: var(--white);
}
.therapist-strip h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; margin-bottom: 16px; }
.therapist-strip p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--berry); padding: 16px 40px;
  border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.3); }

/* ==================== FAQ ==================== */
.faq-section { background: var(--cream); }
.faq-list { max-width: 800px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--soft-pink); }
.faq-question {
  width: 100%; background: none; border: none; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; font-family: var(--font-body);
  font-size: 1rem; font-weight: 500; color: var(--charcoal); gap: 16px;
}
.faq-question:hover { color: var(--berry); }
.faq-icon { font-size: 1.5rem; color: var(--berry); line-height: 1; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 20px; color: var(--charcoal-light); line-height: 1.7; font-size: 0.95rem; }

/* ==================== OTHER THERAPIES ==================== */
.other-therapies-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.other-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  text-decoration: none; border: 1px solid rgba(139,34,82,0.08); transition: all 0.3s ease;
}
.other-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(139,34,82,0.12); }
.other-card img { width: 100%; height: 130px; object-fit: cover; }
.other-card span { display: block; padding: 14px 16px; font-size: 0.9rem; font-weight: 600; color: var(--berry); }

/* ==================== FOOTER ==================== */
footer { background: var(--charcoal); color: var(--white); padding: 80px 0 40px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.footer-logo img { width: 44px; height: 44px; border-radius: 10px; }
.footer-logo span { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.55); line-height: 1.7; font-size: 0.88rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  text-decoration: none; transition: all 0.3s; font-size: 1.1rem;
}
.footer-social a:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-column h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 20px; }
.footer-column a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; transition: color 0.3s; }
.footer-column a:hover { color: var(--white); }
.footer-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.08); margin: 0 0 24px; }
.footer-disclaimer { font-size: 0.72rem; line-height: 1.55; color: rgba(255,255,255,0.4); max-width: 920px; margin: 0 0 24px; font-style: italic; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .page-hero .container { gap: 40px; }
  .content-grid { gap: 48px; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
  .other-therapies-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0; background: var(--cream);
    padding: 16px 24px 24px; gap: 0; z-index: 999;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open > li > a { display: block; padding: 14px 16px; font-size: 1.05rem; font-weight: 500; border-radius: 10px; }
  .nav-links.open > li > a:hover { background: rgba(139,34,82,0.05); }
  .nav-links.open .lang-toggle { margin-top: 12px; justify-content: center; }
  .nav-links.open .nav-cta { text-align: center; padding: 14px 24px !important; margin-top: 8px; }
  .nav-dropdown { padding-bottom: 0; margin-bottom: 0; }
  .dropdown-menu {
    display: none; position: static; transform: none; opacity: 1; pointer-events: auto;
    box-shadow: none; border: none; border-radius: 0; padding: 0 0 4px 20px;
    min-width: auto; background: transparent; left: auto; width: 100%;
  }
  .nav-dropdown.open .dropdown-menu { display: block; transform: none !important; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open:hover .dropdown-menu { display: block; transform: none !important; }
  .dropdown-menu a { display: block; padding: 10px 16px; font-size: 0.92rem; border-radius: 8px; color: var(--charcoal-light); white-space: normal; }
  .dropdown-menu a:hover { background: rgba(139,34,82,0.05); }
  .dropdown-menu a::after { display: none !important; }
  .nav-dropdown > a::after { content: ' ▾'; font-size: 0.75em; }

  .section-pad { padding: 60px 0; }
  .content-section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero-content h1 { font-size: 2.4rem; }
  .hero-content { max-width: 100%; margin: 0 auto; padding: 0 24px; }
  .hero-content h1 { font-size: 2.4rem; }
  .page-hero[style*="background-image"] { min-height: auto; padding: 120px 0 60px; }
  .step { flex-direction: column; gap: 12px; }
  .btn.btn-primary, .btn.btn-secondary { width: 100%; justify-content: center; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse { direction: ltr; }
  .benefits-row { grid-template-columns: 1fr; }
  .other-therapies-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .therapist-strip { padding: 60px 24px; }
  .therapist-strip h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .page-hero-content h1 { font-size: 2rem; }
  .page-hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .container { padding: 0 16px; }
  .section-title { font-size: 1.7rem; }
  .other-therapies-grid { grid-template-columns: 1fr; }
}
