/* ========================================
   Still Willows - Mental Wellness Theme
   ======================================== */

/* CSS Custom Properties */
:root {
  --sage: #8B9A7D;
  --sage-dark: #6B7A5D;
  --sage-light: #A8B89C;
  --sage-pale: #E8EDE5;
  --cream: #FAF9F6;
  --cream-warm: #F5F2ED;
  --stone: #9C9688;
  --charcoal: #3D3D3D;
  --charcoal-soft: #5A5A5A;
  --terracotta: #C4A68A;
  --terracotta-muted: #D4C4B0;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Container */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ========================================
   Navigation
   ======================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: transparent;
  transition: all 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(250, 249, 246, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--sage);
}

.nav-links .btn {
  color: white;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: 0.3s ease;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: var(--sage);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: 100px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--charcoal);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--sage);
  color: var(--sage);
}

.btn-outline:hover {
  background: var(--sage);
  color: white;
}

.btn-light {
  background: white;
  color: var(--sage);
}

.btn-light:hover {
  background: var(--charcoal);
  color: white;
}

/* ========================================
   Main Content
   ======================================== */
.main-content {
  min-height: 100vh;
}

/* ========================================
   Section Styles
   ======================================== */
section {
  padding: 6rem 5%;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  margin-top: 0.75rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 130%;
  background: radial-gradient(ellipse at center, var(--sage-pale) 0%, transparent 65%);
  opacity: 0.7;
  z-index: 0;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  display: inline-flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero-tagline span {
  position: relative;
}

.hero-tagline span:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.7rem;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--terracotta-muted);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero h1 {
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.hero-cta-note {
  font-size: 0.85rem;
  color: var(--stone);
  font-style: italic;
}

/* Hero Animations */
.hero-content > * {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.hero-tagline { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-description { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
  background: var(--cream-warm);
}

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

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--sage-light);
  transform: translateY(-50%);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1;
  margin: 0 auto 1.25rem;
}

.step:nth-child(3) .step-number {
  padding-bottom: 4px;
}

.step h3 {
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.95rem;
}

/* ========================================
   About Preview Section
   ======================================== */
.about-preview {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.about-image-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--sage-pale) 0%, var(--cream-warm) 100%);
  border-radius: 180px 180px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(139, 154, 125, 0.3);
  border-radius: 170px 170px 12px 12px;
}

.image-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--sage);
  opacity: 0.25;
}

.about-content h2 {
  color: var(--charcoal);
}

.about-content p {
  margin-bottom: 1.25rem;
}

.about-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1.75rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--sage-light);
}

.about-highlight span {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage);
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 0.75rem;
  transition: gap 0.3s ease;
}

.link-arrow:hover {
  gap: 0.75rem;
}

/* ========================================
   Services Section
   ======================================== */
.services {
  background: var(--cream-warm);
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(139, 154, 125, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--sage);
}

.service-card h3 {
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.95rem;
}

.services-link {
  text-align: center;
  margin-top: 2.5rem;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  background: var(--sage);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
}

.testimonials .section-header h2 {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: white;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  color: white;
}

.testimonial-info {
  font-size: 0.85rem;
}

.testimonial-name {
  color: white;
  font-weight: 400;
}

.testimonial-role {
  color: rgba(255,255,255,0.7);
}

/* ========================================
   Packages Section
   ======================================== */
.packages {
  background: var(--charcoal);
  color: white;
}

.packages .section-header h2 {
  color: white;
}

.packages .section-header p {
  color: rgba(255,255,255,0.7);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.package-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.package-card.featured {
  background: rgba(139, 154, 125, 0.2);
  border-color: var(--sage-light);
}

.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: white;
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

.package-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.package-for {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
}

.package-price span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.package-features {
  list-style: none;
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.package-features li::before {
  content: '\2713';
  color: var(--sage-light);
  font-weight: 500;
  flex-shrink: 0;
}

.package-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ========================================
   Difference Section
   ======================================== */
.difference {
  background: var(--cream);
}

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

.diff-item {
  text-align: center;
  padding: 1rem;
}

.diff-icon {
  width: 50px;
  height: 50px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
}

.diff-item h3 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.diff-item p {
  font-size: 0.95rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin: 0 auto;
}

.cta h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  padding: 4rem 5% 2rem;
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo {
  color: white;
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: white;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  max-width: 1140px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-left: 1.5rem;
}

.footer-bottom a:hover {
  color: var(--sage-light);
}

/* ========================================
   Page Layout (for other pages)
   ======================================== */
.page,
.post {
  padding: 8rem 5% 4rem;
}

.page-header,
.post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title,
.post-title {
  margin-bottom: 0.5rem;
}

.page-content,
.post-content {
  max-width: 750px;
  margin: 0 auto;
}

.page-content p,
.post-content p {
  margin-bottom: 1.5rem;
}

.page-content img,
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
}

.page-content blockquote,
.post-content blockquote {
  border-left: 3px solid var(--sage);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--charcoal-soft);
}

.page-content ul,
.page-content ol,
.post-content ul,
.post-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.page-content li,
.post-content li {
  margin-bottom: 0.5rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem 5%;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  section {
    padding: 4rem 5%;
  }

  .hero {
    padding-top: 5rem;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero-tagline {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom a {
    margin: 0 0.75rem;
  }
}

/* ========================================
   Inner Page Header
   ======================================== */
.page-header {
  padding: 9rem 5% 4rem;
  background: var(--cream-warm);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
}

.page-header p {
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* ========================================
   About Page - Story Section
   ======================================== */
.story {
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.story-image {
  position: sticky;
  top: 6rem;
}

.story-image-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--sage-pale) 0%, var(--cream-warm) 100%);
  border-radius: 180px 180px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-frame::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(139, 154, 125, 0.3);
  border-radius: 170px 170px 12px 12px;
}

.story-content h2 {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.story-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.story-content .lead {
  font-size: 1.2rem;
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  margin-bottom: 2rem;
}

/* ========================================
   About Page - Credentials Section
   ======================================== */
.credentials {
  background: var(--sage-pale);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.credentials h2 {
  color: var(--charcoal);
}

.credentials-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.credential-list {
  list-style: none;
}

.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--charcoal);
}

.credential-list li::before {
  content: '\2713';
  color: var(--sage);
  font-weight: 500;
  flex-shrink: 0;
}

.credential-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  font-size: 0.95rem;
}

.credential-note strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* ========================================
   About Page - Philosophy Section
   ======================================== */
.philosophy {
  background: var(--charcoal);
  color: white;
}

.philosophy .section-header h2 {
  color: white;
}

.philosophy .section-header p {
  color: rgba(255,255,255,0.7);
}

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

.philosophy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.philosophy-icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 154, 125, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--sage-light);
}

.philosophy-card h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.philosophy-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

/* ========================================
   About Page - Who We Help Section
   ======================================== */
.who-we-help {
  background: var(--cream-warm);
}

.who-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.who-tag {
  padding: 0.65rem 1.25rem;
  background: white;
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.who-tag:hover {
  background: var(--sage);
  color: white;
}

.who-note {
  text-align: center;
  margin-top: 1.75rem;
  font-style: italic;
  color: var(--charcoal-soft);
}

/* ========================================
   About Page - Privacy Section
   ======================================== */
.privacy {
  background: var(--cream);
}

.privacy-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.privacy-icon {
  width: 60px;
  height: 60px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--sage);
}

.privacy h2 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.privacy p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ========================================
   About Page - Values Section
   ======================================== */
.values {
  background: var(--sage-pale);
}

.values-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.values h2 {
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.value-tag {
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--charcoal);
  border: 1px solid var(--sage-pale);
}

.values-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Services Page - Detail Section
   ======================================== */
.services-detail {
  background: var(--cream);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-detail-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--sage-pale);
}

.service-detail-card h3 {
  color: var(--charcoal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-detail-card h3 .icon {
  width: 36px;
  height: 36px;
  background: var(--sage-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.service-detail-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-topics {
  list-style: none;
}

.service-topics li {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--sage-pale);
}

.service-topics li:last-child {
  border-bottom: none;
}

/* ========================================
   Services Page - Outcomes Section
   ======================================== */
.outcomes {
  background: var(--sage-pale);
}

.outcomes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--charcoal);
}

.outcome-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}

.outcomes-note {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 154, 125, 0.3);
  font-style: italic;
  color: var(--charcoal-soft);
}

/* ========================================
   Services Page - Packages Note
   ======================================== */
.packages-note {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

/* ========================================
   Services Page - How Sessions Section
   ======================================== */
.how-sessions {
  background: var(--cream-warm);
}

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

.how-item h3 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.how-item p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* ========================================
   Services Page - Individuals Section
   ======================================== */
.individuals {
  background: var(--cream);
}

.individuals-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.individuals h2 {
  color: var(--charcoal);
}

.individuals p {
  margin-bottom: 1rem;
}

.individuals-topics {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.individuals-topics li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.individuals-topics li::before {
  content: '\2022';
  color: var(--sage);
}

.individuals-card {
  background: var(--sage-pale);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.individuals-card h3 {
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.individuals-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ========================================
   FAQ Page
   ======================================== */
.faq-section {
  padding: 4rem 5% 6rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-category-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sage-pale);
}

.faq-item {
  border-bottom: 1px solid var(--sage-pale);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--sage);
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--sage);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-content {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  list-style: none;
  margin: 1rem 0;
}

.faq-answer ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

.faq-answer ul li::before {
  content: '\2713';
  color: var(--sage);
  font-weight: 500;
  flex-shrink: 0;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
  padding: 4rem 5% 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-details {
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.contact-item-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.25rem;
}

.contact-item-content p {
  font-size: 1rem;
  color: var(--charcoal);
}

.contact-item-content a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-content a:hover {
  color: var(--sage);
}

.contact-expectations {
  background: var(--sage-pale);
  padding: 1.5rem;
  border-radius: 12px;
}

.contact-expectations h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.expectation-list {
  list-style: none;
}

.expectation-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.expectation-list li::before {
  content: '\2713';
  color: var(--sage);
  font-weight: 500;
}

.calendar-embed {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--sage-pale);
}

.calendar-embed h2 {
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 0.5rem;
}

.calendar-embed > p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.calendar-placeholder {
  background: var(--cream-warm);
  border: 2px dashed var(--sage-light);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
}

.calendar-placeholder-icon {
  width: 60px;
  height: 60px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--sage);
}

.calendar-placeholder h3 {
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.calendar-placeholder p {
  font-size: 0.95rem;
  max-width: 350px;
  margin: 0 auto 1.5rem;
}

.calendar-placeholder code {
  display: block;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  font-family: monospace;
}

.alternative-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sage-pale);
  text-align: center;
}

.alternative-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.alternative-contact a {
  color: var(--sage);
  font-weight: 400;
}

/* ========================================
   Active Nav Link
   ======================================== */
.nav-links a.active {
  color: var(--sage);
}

/* ========================================
   Inner Page Responsive
   ======================================== */
@media (max-width: 1024px) {
  .story-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    position: relative;
    top: 0;
    max-width: 350px;
    margin: 0 auto 2rem;
  }

  .philosophy-grid,
  .services-detail-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .how-grid,
  .individuals-content {
    grid-template-columns: 1fr;
  }

  .individuals-topics {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1.1rem;
  }

  .page-header {
    padding: 7rem 5% 3rem;
  }
}
