/*
Theme Name: ProduccionWeb Demo Básico - Terapeutas
Theme URI: https://produccionweb.com/demos/basico-terapeutas
Description: Demo Plan Básico para terapeuta — Diseño Organic-Zen con blobs animados y esferas 3D CSS.
Author: ProduccionWeb
Author URI: https://produccionweb.com
Version: 2.0.0
Text Domain: produccionweb-demo-basico-terapeutas
License: Proprietary
*/

/* ── Import Fonts ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ────────────────────────────── */
:root {
  --demo-primary: #E8DDD3;
  --demo-lavender: #9B8EC4;
  --demo-sage: #7BA68C;
  --demo-dark: #2D2A26;
  --demo-accent: #D4A373;
  --demo-white: #FFFFFF;
  --demo-cream: #FAF8F5;
  --demo-muted: #8B857E;
  --demo-font-heading: 'DM Serif Display', Georgia, serif;
  --demo-font-body: 'Nunito', 'Segoe UI', sans-serif;
  --demo-radius: 24px;
  --demo-radius-sm: 16px;
  --demo-radius-full: 9999px;
  --demo-transition: 0.8s ease-out;
  --demo-transition-fast: 0.4s ease-out;
  --demo-shadow: 0 12px 40px rgba(45,42,38,0.08);
  --demo-shadow-lg: 0 24px 80px rgba(45,42,38,0.12);
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--demo-font-body);
  color: var(--demo-dark);
  background: var(--demo-cream);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color var(--demo-transition-fast); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--demo-font-heading);
  font-weight: 400;
  line-height: 1.2;
}

/* ── Container ────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 880px; }

/* ── Section ──────────────────────────────────────── */
.section { padding: 6rem 0; position: relative; }
.section--tinted { background: var(--demo-primary); }
.section--dark { background: var(--demo-dark); color: var(--demo-cream); }
.section--lavender { background: rgba(155,142,196,0.08); }

.section__label {
  font-family: var(--demo-font-body);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--demo-lavender);
  margin-bottom: 0.75rem;
}
.section__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.section__subtitle {
  font-size: 1.05rem; font-weight: 300;
  max-width: 580px; line-height: 1.9;
  color: var(--demo-muted);
}

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--demo-transition-fast);
}
.site-header.scrolled {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(45,42,38,0.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo {
  font-family: var(--demo-font-heading);
  font-size: 1.5rem; color: var(--demo-dark);
  font-style: italic;
}
.header__logo span { color: var(--demo-lavender); }
.site-header:not(.scrolled) .header__logo { color: var(--demo-cream); }
.header__nav { display: flex; gap: 2.5rem; }
.header__nav a {
  font-size: 0.82rem; font-weight: 600;
  color: rgba(45,42,38,0.5);
  letter-spacing: 0.06em;
  position: relative;
  transition: color var(--demo-transition-fast);
}
.site-header:not(.scrolled) .header__nav a { color: rgba(250,248,245,0.6); }
.header__nav a:hover { color: var(--demo-lavender); }
.site-header:not(.scrolled) .header__nav a:hover { color: var(--demo-cream); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--demo-dark);
  transition: var(--demo-transition-fast);
  border-radius: 2px;
}
.site-header:not(.scrolled) .hamburger span { background: var(--demo-cream); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--demo-cream);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--demo-font-heading);
  font-size: 2rem; font-style: italic;
  color: var(--demo-dark); padding: 0.6rem 0;
}
.mobile-nav a:hover { color: var(--demo-lavender); }
.mobile-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.3); z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity var(--demo-transition-fast);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, #3D3830 0%, var(--demo-dark) 30%, #3A2F4A 60%, #2D3D35 100%);
  overflow: hidden;
}

/* Animated Fluid Blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.hero__blob--1 {
  width: 500px; height: 500px;
  background: var(--demo-lavender);
  top: -10%; right: -5%;
  animation: blobMove1 12s infinite;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: var(--demo-sage);
  bottom: -15%; left: 10%;
  animation: blobMove2 15s infinite;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: var(--demo-accent);
  top: 30%; left: 40%;
  animation: blobMove3 18s infinite;
}

@keyframes blobMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 30px) scale(1.1); }
  66%      { transform: translate(20px, -20px) scale(0.9); }
}
@keyframes blobMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(50px, -30px) scale(1.15); }
  66%      { transform: translate(-30px, 20px) scale(0.95); }
}
@keyframes blobMove3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-60px, 40px) scale(1.2); }
}

.hero__content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; width: 100%;
}
.hero__text { color: var(--demo-cream); }
.hero__tag {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--demo-accent); margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--demo-cream);
  margin-bottom: 1.5rem; line-height: 1.15;
  font-style: italic;
}
.hero__subtitle {
  font-size: 1.1rem; font-weight: 300;
  color: rgba(250,248,245,0.55);
  max-width: 460px; line-height: 1.9;
  margin-bottom: 2.5rem;
}
.hero__cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── 3D Floating Spheres ──────────────────────────── */
.spheres-wrapper {
  position: relative;
  width: 100%; height: 400px;
  perspective: 600px;
}
.sphere {
  position: absolute;
  border-radius: 50%;
  transform-style: preserve-3d;
}
.sphere--1 {
  width: 180px; height: 180px;
  background: radial-gradient(circle at 35% 35%, rgba(155,142,196,0.6), rgba(155,142,196,0.15));
  top: 10%; left: 15%;
  animation: sphereFloat1 8s ease-in-out infinite;
  box-shadow: inset -20px -20px 40px rgba(0,0,0,0.1), 0 20px 60px rgba(155,142,196,0.2);
}
.sphere--2 {
  width: 120px; height: 120px;
  background: radial-gradient(circle at 35% 35%, rgba(123,166,140,0.6), rgba(123,166,140,0.15));
  top: 45%; right: 10%;
  animation: sphereFloat2 10s ease-in-out infinite;
  box-shadow: inset -15px -15px 30px rgba(0,0,0,0.1), 0 15px 40px rgba(123,166,140,0.2);
}
.sphere--3 {
  width: 80px; height: 80px;
  background: radial-gradient(circle at 35% 35%, rgba(212,163,115,0.7), rgba(212,163,115,0.2));
  bottom: 15%; left: 35%;
  animation: sphereFloat3 7s ease-in-out infinite;
  box-shadow: inset -10px -10px 20px rgba(0,0,0,0.1), 0 10px 30px rgba(212,163,115,0.2);
}
.sphere--4 {
  width: 50px; height: 50px;
  background: radial-gradient(circle at 35% 35%, rgba(232,221,211,0.8), rgba(232,221,211,0.3));
  top: 5%; right: 30%;
  animation: sphereFloat1 6s ease-in-out infinite reverse;
  box-shadow: inset -8px -8px 16px rgba(0,0,0,0.05);
}

@keyframes sphereFloat1 {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  50%      { transform: translateY(-25px) rotateX(15deg) rotateY(10deg); }
}
@keyframes sphereFloat2 {
  0%, 100% { transform: translateY(0) rotateX(0) rotateZ(0); }
  50%      { transform: translateY(-20px) rotateX(-10deg) rotateZ(5deg); }
}
@keyframes sphereFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(15px, -18px); }
}

/* ── Therapy Cards ────────────────────────────────── */
.therapy-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.therapy-card {
  padding: 2.5rem 2rem;
  background: var(--demo-white);
  border-radius: var(--demo-radius);
  border: 1px solid rgba(155,142,196,0.12);
  transition: all var(--demo-transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.therapy-card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--demo-lavender), var(--demo-sage));
  opacity: 0;
  transition: opacity var(--demo-transition);
}
.therapy-card:hover::before { opacity: 1; }
.therapy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--demo-shadow-lg);
}
.therapy-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(155,142,196,0.15), rgba(123,166,140,0.15));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--demo-lavender);
}
.therapy-card__title {
  font-size: 1.15rem; margin-bottom: 0.75rem;
  font-style: italic;
}
.therapy-card__text {
  font-size: 0.9rem; font-weight: 300;
  color: var(--demo-muted); line-height: 1.7;
}

/* ── About / Bio ──────────────────────────────────── */
.about-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-block__image {
  border-radius: var(--demo-radius);
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--demo-lavender), var(--demo-sage));
  min-height: 450px;
}
.about-block__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(155,142,196,0.3), rgba(123,166,140,0.3));
}
.about-details {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.about-detail {
  padding: 1.25rem;
  background: rgba(155,142,196,0.06);
  border-radius: var(--demo-radius-sm);
}
.about-detail__number {
  font-family: var(--demo-font-heading);
  font-size: 1.8rem; color: var(--demo-lavender);
  font-style: italic;
}
.about-detail__label {
  font-size: 0.8rem; font-weight: 300;
  color: var(--demo-muted); margin-top: 0.25rem;
}

/* ── Approach / Enfoque ───────────────────────────── */
.approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.approach-item {
  text-align: center; padding: 2.5rem 2rem;
  border-radius: var(--demo-radius);
  background: var(--demo-white);
  transition: all var(--demo-transition);
}
.approach-item:hover {
  box-shadow: var(--demo-shadow);
  transform: translateY(-4px);
}
.approach-item__number {
  font-family: var(--demo-font-heading);
  font-size: 2.5rem; color: var(--demo-sage);
  font-style: italic; opacity: 0.4;
  margin-bottom: 1rem;
}
.approach-item__title {
  font-size: 1.1rem; margin-bottom: 0.75rem;
  font-style: italic;
}
.approach-item__text {
  font-size: 0.9rem; font-weight: 300;
  color: var(--demo-muted); line-height: 1.7;
}

/* ── Testimonials (Zen) ───────────────────────────── */
.zen-testimonials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3rem;
}
.zen-testimonial {
  padding: 2.5rem;
  background: var(--demo-white);
  border-radius: var(--demo-radius);
  border: 1px solid rgba(155,142,196,0.1);
  position: relative;
}
.zen-testimonial::before {
  content: '"';
  font-family: var(--demo-font-heading);
  font-size: 5rem; color: var(--demo-lavender);
  opacity: 0.12;
  position: absolute; top: 1rem; right: 1.5rem;
  line-height: 1;
}
.zen-testimonial__quote {
  font-size: 1rem; font-style: italic; font-weight: 300;
  line-height: 1.8; margin-bottom: 1.5rem;
}
.zen-testimonial__author {
  font-weight: 700; font-size: 0.9rem;
}
.zen-testimonial__note {
  font-size: 0.8rem; color: var(--demo-muted);
}

/* ── CTA Section ──────────────────────────────────── */
.cta-zen {
  padding: 5rem 0;
  background: linear-gradient(160deg, var(--demo-dark), #3A2F4A, #2D3D35);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-zen__blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.2;
}
.cta-zen__blob--1 {
  width: 300px; height: 300px; background: var(--demo-lavender);
  top: -20%; left: 10%;
}
.cta-zen__blob--2 {
  width: 250px; height: 250px; background: var(--demo-sage);
  bottom: -20%; right: 10%;
}
.cta-zen__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--demo-cream); font-style: italic;
  margin-bottom: 1rem; position: relative; z-index: 2;
}
.cta-zen__text {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(250,248,245,0.5);
  max-width: 500px; margin: 0 auto 2rem;
  position: relative; z-index: 2;
}

/* ── Buttons ──────────────────────────────────────── */
.btn-zen {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--demo-lavender); color: var(--demo-white);
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.06em;
  border: none; cursor: pointer;
  border-radius: var(--demo-radius-full);
  transition: all var(--demo-transition);
  position: relative; z-index: 2;
}
.btn-zen:hover {
  background: #8A7BB5; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155,142,196,0.3);
}
.btn-sage {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--demo-sage); color: var(--demo-white);
  font-weight: 600; font-size: 0.85rem;
  border: none; cursor: pointer;
  border-radius: var(--demo-radius-full);
  transition: all var(--demo-transition);
}
.btn-sage:hover {
  background: #6A9579; transform: translateY(-2px);
}
.btn-outline-zen {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--demo-lavender); color: var(--demo-lavender);
  font-weight: 600; font-size: 0.85rem;
  border-radius: var(--demo-radius-full);
  cursor: pointer; transition: all var(--demo-transition);
  position: relative; z-index: 2;
}
.btn-outline-zen:hover {
  background: var(--demo-lavender); color: var(--demo-white);
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem;
  background: #25D366; color: #fff;
  font-weight: 600; font-size: 0.85rem;
  border: none; cursor: pointer;
  border-radius: var(--demo-radius-full);
  transition: all var(--demo-transition);
  position: relative; z-index: 2;
}
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); }

/* ── WhatsApp Float ───────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; z-index: 900;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--demo-transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── Contact ──────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 3rem;
}
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label {
  display: block; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 0.9rem 1.2rem;
  border: 1px solid rgba(155,142,196,0.2);
  background: var(--demo-white);
  border-radius: var(--demo-radius-sm);
  font-family: var(--demo-font-body);
  font-size: 0.95rem;
  transition: border-color var(--demo-transition-fast);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--demo-lavender);
  box-shadow: 0 0 0 3px rgba(155,142,196,0.1);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-info-zen__item {
  display: flex; gap: 1.25rem; margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-info-zen__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--demo-lavender), var(--demo-sage));
  color: var(--demo-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 50%;
}
.contact-info-zen__label {
  font-size: 0.8rem; font-weight: 600; margin-bottom: 0.25rem;
}
.contact-info-zen__text { font-weight: 300; }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--demo-dark); color: rgba(250,248,245,0.5);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer__brand {
  font-family: var(--demo-font-heading);
  font-size: 1.4rem; color: var(--demo-cream);
  font-style: italic; margin-bottom: 1rem;
}
.footer__brand span { color: var(--demo-lavender); }
.footer__desc { font-size: 0.9rem; font-weight: 300; line-height: 1.7; max-width: 300px; }
.footer__heading {
  font-family: var(--demo-font-body);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--demo-cream); margin-bottom: 1.25rem;
}
.footer__links a {
  display: block; font-size: 0.9rem; font-weight: 300;
  padding: 0.3rem 0; color: rgba(250,248,245,0.4);
}
.footer__links a:hover { color: var(--demo-lavender); }
.footer__bottom {
  border-top: 1px solid rgba(250,248,245,0.08);
  padding-top: 2rem;
  display: flex; justify-content: space-between;
  font-size: 0.8rem;
}
.footer__bottom a { color: var(--demo-lavender); }

/* ── Internal Pages ───────────────────────────────── */
.page-header {
  padding: 10rem 0 4rem;
  background: linear-gradient(160deg, var(--demo-dark), #3A2F4A);
  color: var(--demo-cream);
}
.page-header__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-style: italic;
}
.page-content { padding: 4rem 0; }
.page-content p { margin-bottom: 1.5rem; max-width: 720px; }

/* ── 404 ──────────────────────────────────────────── */
.error-404 {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  background: linear-gradient(160deg, var(--demo-dark), #3A2F4A);
  color: var(--demo-cream);
}
.error-404__code {
  font-family: var(--demo-font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--demo-lavender); opacity: 0.2;
  line-height: 1; font-style: italic;
}
.error-404__text {
  font-size: 1.1rem; font-weight: 300; margin: 1rem 0 2rem;
}

/* ── Scroll Animations ────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity var(--demo-transition), transform var(--demo-transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity var(--demo-transition), transform var(--demo-transition);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity var(--demo-transition), transform var(--demo-transition);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .therapy-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .about-block { grid-template-columns: 1fr; }
  .about-block__image { min-height: 300px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .hero__content { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__cta-group { justify-content: center; }
  .spheres-wrapper { height: 280px; margin-top: 2rem; }
  .sphere--1 { width: 120px; height: 120px; }
  .sphere--2 { width: 80px; height: 80px; }
  .sphere--3 { width: 50px; height: 50px; }
  .therapy-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .zen-testimonials { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__title { font-size: 2.2rem; }
}
