:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --sage: #84cc16;
  --sage-light: #a3e635;
  --teal: #06b6d4;
  --teal-dark: #0891b2;
  --purple: #8b5cf6;
  --rose: #f43f5e;
  --text: #334155;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --bg: #fefefe;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --shadow: rgba(15, 23, 42, 0.08);
  --spatial-glass: rgba(255, 255, 255, 0.7);
  --spatial-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  --hub-bg: rgba(15, 23, 42, 0.85);
  --hub-border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-display {
  font-family: "Playfair Display", serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-container {
  position: fixed;
  top: 0;
  left: 50%;
  width: 90%;
  max-width: 1100px;
  transform: translateX(-50%);
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding-top: 32px;
}
.nav-container.scrolled {
  top: 16px;
  padding-top: 0;
}
.nav-container.scrolled .nav-logo-img {
  height: 40px;
}
.nav-container.scrolled nav {
  padding: 12px 32px;
  box-shadow: 0 20px 40px var(--shadow);
  border-color: rgba(255, 255, 255, 0.3);
}

nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 60px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
nav::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent, rgba(255, 255, 255, 0.2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  pointer-events: none;
}

.nav-logo-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  margin-left: 5px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.nav-logo:hover {
  transform: translateY(-1px);
}

.nav-logo-text {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--primary);
}

.nav-logo-subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-logo-img {
  height: 48px;
  border-radius: 10px;
  margin-inline-end: 8px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a:not(.nav-logo) {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 4px;
  transition: all 0.3s ease;
}
nav a:not(.nav-logo)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
nav a:not(.nav-logo):hover {
  color: var(--primary);
}
nav a:not(.nav-logo):hover::after {
  width: 100%;
}
nav a:not(.nav-logo)[href="#contact"] {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
  margin-left: 20px;
}
nav a:not(.nav-logo)[href="#contact"]::after {
  display: none;
}
nav a:not(.nav-logo)[href="#contact"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
  background: linear-gradient(135deg, var(--sage) 0%, var(--teal) 100%);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: conic-gradient(from 45deg, var(--sage), var(--teal), var(--purple), var(--accent), var(--sage));
  opacity: 0.05;
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 140px;
  }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--sage), var(--teal));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(132, 204, 22, 0.3);
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-image-container {
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero-image-container {
    max-width: 500px;
    margin: 0 auto;
  }
}

.hero-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.2);
  aspect-ratio: 4/5;
  background: var(--bg-alt);
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--sage), var(--teal));
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
  animation: float-slow 8s infinite ease-in-out;
}

@keyframes float-slow {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-primary {
  background: linear-gradient(135deg, var(--sage) 0%, var(--teal) 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(132, 204, 22, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(132, 204, 22, 0.4);
}
.cta-primary:hover::before {
  left: 100%;
}

.cta-secondary {
  color: var(--text);
  padding: 16px 32px;
  border: 2px solid var(--border);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-card);
}
.cta-secondary:hover {
  border-color: var(--sage);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}

main {
  position: relative;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  color: var(--sage);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.welcome-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), var(--teal), var(--purple), transparent);
}

.welcome-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}
.welcome-content p {
  margin-bottom: 32px;
}
.welcome-content em {
  color: var(--sage);
  font-style: italic;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.therapist-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 16px 64px var(--shadow);
  border: 1px solid var(--border);
}
.therapist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 2px;
  background: linear-gradient(135deg, var(--sage), var(--teal), var(--purple));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  opacity: 0.1;
}

.therapist-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--sage), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.therapist-avatar img {
  width: 100%;
}
.therapist-avatar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: spin 4s linear infinite;
}

.therapist-name {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.therapist-title {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 24px;
}

.therapist-stats {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--sage);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 600;
}
.about-content p {
  margin-bottom: 24px;
  line-height: 1.7;
  color: var(--text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px var(--shadow);
  border-color: rgba(132, 204, 22, 0.2);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--sage), var(--teal));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card h4 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card p:last-child {
  margin-bottom: 0;
}

.fees-section {
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}
.fees-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 45deg, rgba(132, 204, 22, 0.1), rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1), rgba(245, 158, 11, 0.1));
  animation: rotate 120s linear infinite;
}
.fees-section .section-title {
  color: white;
}
.fees-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.fees-content {
  position: relative;
  z-index: 2;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.fee-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.fee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  opacity: 0;
  transition: opacity 0.4s;
}
.fee-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}
.fee-card:hover::before {
  opacity: 1;
}

.fee-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--sage-light);
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.fee-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  font-weight: 500;
}

.fee-details {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  margin-top: 80px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.info-card h3 {
  color: var(--sage-light);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
.info-card p,
.info-card ul {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}
.info-card ul {
  padding-left: 20px;
}
.info-card a {
  color: var(--sage-light);
}

.contact-section {
  background: var(--bg-alt);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.contact-form {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 16px 64px var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--sage), var(--teal), var(--purple));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  opacity: 0.1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sage), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-details p {
  color: var(--text-light);
  line-height: 1.6;
}

.mobile-nav-hub {
  display: none;
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: 90%;
  max-width: 400px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.mobile-nav-hub * {
  pointer-events: auto;
}
.mobile-nav-hub.minimized {
  bottom: 24px;
  width: 64px;
}
.mobile-nav-hub.minimized .mobile-nav-pill {
  padding: 4px;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: 64px;
}
.mobile-nav-hub.minimized .mobile-nav-item:not(.mobile-hub-trigger) {
  display: none;
}
.mobile-nav-hub.minimized .mobile-hub-trigger .mobile-menu-toggle {
  margin: 0;
  width: 56px;
  height: 56px;
}
@media (max-width: 768px) {
  .mobile-nav-hub {
    display: flex;
  }
}

.mobile-nav-pill {
  background: var(--hub-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--hub-border);
  border-radius: 40px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: visible;
}
.mobile-nav-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.1));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  pointer-events: none;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  gap: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
  flex: 1;
  min-width: 0;
}
.mobile-nav-item i {
  font-size: 18px;
  color: var(--sage-light);
}
.mobile-nav-item span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 360px) {
  .mobile-nav-item {
    gap: 2px;
  }
  .mobile-nav-item span {
    font-size: 9px;
    letter-spacing: 0;
  }
  .mobile-nav-item i {
    font-size: 16px;
  }
}
.mobile-nav-item:hover, .mobile-nav-item.home-active {
  opacity: 1;
  transform: translateY(-2px);
}

.mobile-hub-trigger .mobile-menu-toggle {
  display: flex;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sage), var(--teal));
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(132, 204, 22, 0.4);
  margin: -24px 8px 0;
  border: 4px solid var(--primary);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mobile-hub-trigger .mobile-menu-toggle:active {
  transform: scale(0.9);
}
.mobile-hub-trigger .mobile-menu-toggle.active {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, var(--purple), var(--rose));
}

.morphic-icon {
  width: 20px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.morphic-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu-toggle.active .morphic-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active .morphic-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.mobile-menu-toggle.active .morphic-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-overlay.active .mobile-menu-sheet {
  transform: translateY(0);
}

.mobile-menu-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 40px 40px 0 0;
  padding: 24px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
  -webkit-overflow-scrolling: touch;
}

.sheet-handle {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.mobile-menu-logo .mobile-logo-img {
  height: 40px;
  width: auto;
}
.mobile-menu-logo .mobile-logo-text {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary);
}
.mobile-menu-logo .mobile-logo-subtitle {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  margin-bottom: 4px;
}
.mobile-menu-link .link-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 16px;
  transition: all 0.3s ease;
}
.mobile-menu-link .link-text {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  flex: 1;
}
.mobile-menu-link .link-arrow {
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.mobile-menu-link:hover, .mobile-menu-link:active {
  background: var(--bg-alt);
}
.mobile-menu-link:hover .link-icon, .mobile-menu-link:active .link-icon {
  background: var(--sage);
  color: white;
}
.mobile-menu-link:hover .link-arrow, .mobile-menu-link:active .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-footer {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 110px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.mobile-menu-footer p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
}

.mobile-footer-cta {
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

@keyframes pulse-soft {
  0% {
    box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(132, 204, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(132, 204, 22, 0);
  }
}
.mobile-hub-trigger .mobile-menu-toggle:not(.active) {
  animation: pulse-soft 2s infinite;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 80px 0;
  }
  nav {
    padding: 12px 16px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    border-radius: 30px;
  }
  .hero {
    min-height: 90vh;
    padding: 120px 0 60px;
  }
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .fees-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .therapist-card {
    padding: 32px;
  }
  .contact-form {
    padding: 32px;
  }
  .nav-links {
    display: none;
  }
  .nav-logo-img {
    height: 44px;
  }
  .nav-logo-text {
    font-size: 18px;
  }
  .nav-logo {
    gap: 8px;
  }
  .nav-logo-subtitle {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .nav-logo-img {
    height: 40px;
    margin-inline-end: 0;
  }
  .nav-logo-text {
    font-size: 16px;
  }
  .nav-logo-subtitle {
    font-size: 10px;
  }
  .nav-logo {
    gap: 6px;
  }
}

/*# sourceMappingURL=styles.css.map */
