:root{
  --white:#FFFFFF;
  --bg-soft:#FAFAF7;
  --ink:#561d61;
  --ink-soft:#ffffff;
  --sage:#7d3b70;
  --sage-dark:#ed8f41;
  --sage-light:#DCEAE3;
  --gold:#d9a441;
  --gold-dark:#B98729;
  --line:rgba(37,48,45,0.1);
  --shadow: 0 20px 50px -20px rgba(37,48,45,0.18);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}

body{
  background:var(--white);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

a{color:inherit; text-decoration:none;}
ul{list-style:none;}

h1,h2,h3{
  font-family:'Fraunces', serif;
  font-weight:500;
  letter-spacing:-0.01em;
  line-height:1.12;
  color:var(--ink);
}
em{font-style:italic; color:var(--sage-dark); font-weight:400;}

.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 40px;
}

.eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--sage);
  margin-bottom:14px;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view{opacity:1; transform:translateY(0);}
.reveal.in-view[data-delay="1"]{transition-delay:0.1s;}
.reveal.in-view[data-delay="2"]{transition-delay:0.2s;}
.reveal.in-view[data-delay="3"]{transition-delay:0.3s;}
.reveal.in-view[data-delay="4"]{transition-delay:0.4s;}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:15px 28px;
  border-radius:100px;
  font-weight:600;
  font-size:15px;
  transition:transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, background 0.25s;
}
.btn-primary{
  background:var(--sage);
  color:var(--white);
  box-shadow:0 10px 28px -10px rgba(92,131,116,0.55);
}
.btn-primary:hover{background:var(--sage); transform:translateY(-13px); 
  box-shadow:0 16px 34px -12px rgba(9, 11, 10, 0.6);}
.btn-ghost{
  color:var(--dark);
  border:1.5px solid var(--gold-dark);
  background:transparent;
}
.btn-ghost:hover{border-color:var(--sage);background-color: #ffffff; color:var(--sage-dark); transform:translateY(-2px);}
.btn-small{padding:10px 20px; font-size:14px;}
.btn-full{width:100%; justify-content:center;}

/* ---------- HEADER ---------- */
#site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow 0.3s;
}
#site-header.scrolled{box-shadow:0 6px 24px -12px rgba(37,48,45,0.15);}
nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 40px;
  max-width:1180px; margin:0 auto;
}
.logo{
  font-family:'Fraunces', serif;
  font-size:21px; font-weight:600;
  display:flex; align-items:center; gap:8px;
}
.logo img{
 width:70px;
}
.logo-mark{width:24px; height:24px; display:inline-flex;}
.logo-mark svg{width:100%; height:100%;}
.nav-links{display:flex; gap:34px; font-size:14.5px; font-weight:500;}
.nav-links a{opacity:0.72; transition:opacity 0.2s, color 0.2s; position:relative;}
.nav-links a:hover{opacity:1; color:var(--sage-dark);}
.nav-toggle{display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px; cursor:pointer;}
.nav-toggle span{width:22px; height:2px; background:var(--ink); border-radius:2px; transition:transform 0.25s, opacity 0.25s;}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ---------- HERO ---------- */

.hero{
  position:relative;
  padding:120px 0 90px;
  text-align:center;
  overflow:hidden;
}
.hero-photo-bg{position:absolute; inset:0; z-index:0;}
.hero-photo-bg img{width:100%; height:100%; object-fit:cover; display:block;}
.hero-photo-bg::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(18, 18, 18, 0.5) 100%, rgba(7, 7, 7, 0.8) 95%, var(--dark) 96%);
}
.hero-content{
  position:relative; z-index:2;
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.badge{
  background:var(--sage-light);
  color:var(--sage-dark);
  font-size:13.5px;
  font-weight:600;
  padding:8px 18px;
  border-radius:100px;
  margin-bottom:26px;
}
.hero h1{
  font-size:clamp(36px, 5.4vw, 60px);
  max-width:680px;
}
.hero-sub{
  margin-top:22px;
  font-size:18px;
  line-height:1.6;
  color:var(--white);
  max-width:520px;
}
.hero-actions{
  margin-top:34px;
  display:flex; gap:16px; flex-wrap:wrap; justify-content:center;
}
.hero-trust{
  margin-top:56px;
  display:flex; align-items:center; gap:28px;
  flex-wrap:wrap;
  justify-content:center;
}
.trust-item{display:flex; flex-direction:column; align-items:center; gap:2px;}
.trust-item strong{font-family:'Fraunces', serif; font-size:22px; color:var(--sage-dark);}
.trust-item span{font-size:12.5px; color:var(--ink-soft);}
.trust-divider{width:1px; height:30px; background:var(--line);}
 
/* floating blobs */
.hero-blobs{position:absolute; inset:0; z-index:1; pointer-events:none;}
.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(50px);
  opacity:0.55;
}
.blob-1{
  width:420px; height:420px;
  background:var(--sage-light);
  top:-160px; left:-120px;
  animation:drift1 16s ease-in-out infinite;
}
.blob-2{
  width:340px; height:340px;
  background:rgba(217,164,65,0.22);
  top:-40px; right:-140px;
  animation:drift2 20s ease-in-out infinite;
}
.blob-3{
  width:280px; height:280px;
  background:var(--sage-light);
  bottom:-160px; left:38%;
  animation:drift3 18s ease-in-out infinite;
}
@keyframes drift1{
  0%,100%{transform:translate(0,0) scale(1);}
  50%{transform:translate(40px,30px) scale(1.08);}
}
@keyframes drift2{
  0%,100%{transform:translate(0,0) scale(1);}
  50%{transform:translate(-30px,40px) scale(1.1);}
}
@keyframes drift3{
  0%,100%{transform:translate(0,0) scale(1);}
  50%{transform:translate(20px,-30px) scale(1.06);}
}

.scroll-cue{
  position:relative; z-index:2;
  display:flex; justify-content:center;
  margin-top:70px;
}
.scroll-cue span{
  width:22px; height:36px;
  border:2px solid var(--line);
  border-radius:100px;
  position:relative;
}
.scroll-cue span::after{
  content:"";
  position:absolute;
  top:7px; left:50%;
  width:4px; height:4px;
  background:var(--sage);
  border-radius:50%;
  transform:translateX(-50%);
  animation:scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot{
  0%{opacity:1; top:7px;}
  70%{opacity:0; top:18px;}
  100%{opacity:0; top:7px;}
}


/* ---------- AS SEEN ---------- */
.as-seen{padding:36px 0; border-bottom:1px solid var(--line); overflow:hidden;}
.as-seen-label{
  text-align:center; font-size:12.5px; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--ink-soft); opacity:0.6; margin-bottom:20px;
}
.as-seen-viewport{
  position:relative;
  overflow:hidden;
  mask-image:linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image:linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.as-seen-marks{
  display:flex;
  align-items:center;
  gap:56px;
  width:max-content;
  font-family:'Fraunces', serif; font-style:italic;
  font-size:16px; color:var(--ink); opacity:0.55;
  white-space:nowrap;
  animation:as-seen-scroll 26s linear infinite;
}
.as-seen-viewport:hover .as-seen-marks{animation-play-state:paused;}
@keyframes as-seen-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
@media (prefers-reduced-motion: reduce){
  .as-seen-marks{animation:none;}
}

/* ---------- SECTION SCAFFOLD ---------- */
section{padding:110px 0;}
.section-head{
  max-width:600px;
  margin:0 auto 64px;
  text-align:center;
}
.section-head h2{font-size:clamp(28px, 3.4vw, 40px);}
.section-head p{margin-top:16px; font-size:16px; line-height:1.6; color:var(--ink);}

/* ---------- SERVICES ---------- */
.service-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.service-card{
  background:var(--bg-soft);
  border-radius:20px;
  padding:34px 26px;
  transition:transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.service-card:hover{transform:translateY(-6px); box-shadow:var(--shadow);}
.service-icon{
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  background:var(--white);
  border-radius:14px;
  margin-bottom:20px;
}
.service-card h3{font-size:19px; margin-bottom:10px;}
.service-card p{font-size:14.5px; line-height:1.6; color:var(--ink);}

/* ---------- HOW IT WORKS ---------- */
.how{background:var(--bg-soft);}
.how-steps{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:0;
  max-width:1000px;
  margin:0 auto;
}
.how-step{
  flex:1;
  text-align:center;
  padding:0 24px;
}
.how-num{
  display:inline-flex;
  align-items:center; justify-content:center;
  width:52px; height:52px;
  border-radius:50%;
  background:var(--white);
  box-shadow:var(--shadow);
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:19px;
  color:var(--sage-dark);
  margin-bottom:22px;
}
.how-step h3{font-size:19px; margin-bottom:10px;}
.how-step p{font-size:14.5px; line-height:1.6; color:var(--ink); max-width:230px; margin:0 auto;}
.how-connector{
  flex:0 0 60px;
  height:1.5px;
  background:repeating-linear-gradient(to right, var(--sage) 0 6px, transparent 6px 12px);
  margin-top:26px;
}

/* ---------- THERAPISTS ---------- */
.therapist-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.therapist-card{
  text-align:center;
  transition:transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.therapist-card:hover{transform:translateY(-6px);}
.t-photo{
  width:100%;
  aspect-ratio:1/1;
  border-radius:20px;
  overflow:hidden;
  margin-bottom:20px;
  box-shadow:var(--shadow);
}
.t-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.therapist-card h3{font-size:19px; margin-bottom:4px;}
.t-role{font-size:13.5px; color:var(--sage-dark); font-weight:600; margin-bottom:10px;}
.t-bio{font-size:14px; color:var(--ink); line-height:1.55; margin-bottom:14px;}
.t-tags{display:flex; gap:8px; justify-content:center; flex-wrap:wrap;}
.t-tags span{
  font-size:11.5px; font-weight:600;
  background:var(--sage-light);
  color:var(--sage-dark);
  padding:5px 12px;
  border-radius:100px;
}
.therapist-cta{text-align:center; margin-top:50px;}

/* ---------- TESTIMONIAL ---------- */
.testimonial{
  background:var(--sage-light);
  text-align:center;
}
.quote-mark{width:44px; height:33px; margin:0 auto 24px;}
.testimonial blockquote{
  max-width:740px; margin:0 auto;
  font-family:'Fraunces', serif; font-style:italic; font-weight:400;
  font-size:clamp(22px, 2.8vw, 30px);
  line-height:1.5;
  color:var(--ink);
}
.testimonial cite{
  display:block; margin-top:26px;
  font-style:normal; font-size:14px; font-weight:600;
  color:var(--sage-dark);
}

/* ---------- PRICING ---------- */
.pricing-inner{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}
.pricing-copy h2{font-size:clamp(28px, 3.2vw, 38px); margin-bottom:18px;}
.pricing-copy p{font-size:16px; line-height:1.65; color:var(--ink); margin-bottom:26px; max-width:460px;}
.pricing-card{
  background:var(--ink);
  color:var(--white);
  border-radius:24px;
  padding:44px 38px;
}
.pricing-eyebrow{
  display:inline-block;
  font-size:12.5px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--gold);
  margin-bottom:14px;
}
.pricing-amount{
  font-family:'Fraunces', serif;
  font-size:52px;
  margin-bottom:26px;
}
.pricing-amount span{
  display:block; font-family:'Inter',sans-serif; font-size:14px; font-weight:500;
  color:rgba(255,255,255,0.6); margin-top:2px;
}
.pricing-card ul{margin-bottom:30px;}
.pricing-card li{
  font-size:14.5px;
  padding:10px 0 10px 26px;
  position:relative;
  border-top:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.85);
}
.pricing-card li:first-child{border-top:none;}
.pricing-card li::before{
  content:"✓";
  position:absolute; left:0; top:10px;
  color:var(--gold);
  font-weight:700;
}
.pricing-card .btn-primary{background:var(--gold);}
.pricing-card .btn-primary:hover{background:var(--gold-dark);}

/* ---------- FAQ ---------- */
.faq-list{max-width:720px; margin:0 auto;}
.faq-item{
  border-bottom:1px solid var(--line);
  padding:22px 0;
}
.faq-item summary{
  font-family:'Fraunces', serif;
  font-size:18px;
  font-weight:500;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+";
  font-family:'Inter', sans-serif;
  font-size:22px;
  font-weight:400;
  color:var(--sage);
  transition:transform 0.3s;
  flex-shrink:0;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{
  margin-top:14px;
  font-size:15px;
  line-height:1.65;
  color:var(--ink);
  max-width:600px;
}

/* ---------- FINAL CTA ---------- */
.final-cta{
  background:var(--sage-light);
  text-align:center;
  border-radius:32px;
  margin:0 40px;
  padding:100px 40px;
}
.final-cta h2{font-size:clamp(30px, 4vw, 46px); margin-top:12px;}
.final-cta p{margin:20px auto 32px; font-size:16.5px; line-height:1.6; color:var(--ink); max-width:440px;}

/* ---------- FOOTER ---------- */
footer{padding:70px 0 0; margin-top:0px;}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid var(--line);
}
.footer-brand p{
  margin:14px 0 20px;
  font-size:14px; color:var(--ink); line-height:1.6; max-width:260px;
}
.footer-social{display:flex; gap:10px;}
.footer-social a{
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  background:var(--bg-soft);
  border-radius:50%;
  font-size:11px; font-weight:700;
  color:var(--ink);
  transition:background 0.2s, color 0.2s;
}
.footer-social img{
width:30px;
border-radius: 50%;
}
.footer-social a:hover{background:var(--sage-light); color:var(--sage-dark);}
.footer-col{display:flex; flex-direction:column;}
.footer-col a{
  font-size:14.5px; color:var(--ink);
  margin-bottom:12px;
  transition:color 0.2s;
}
.footer-col a:hover{color:var(--sage-dark);}
.footer-crisis{
  text-align:center;
  font-size:14px;
  color:var(--ink);
  padding:28px 20px;
  border-bottom:1px solid var(--line);
}
.footer-crisis strong{color:var(--sage-dark);}
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:13px; color:var(--ink); opacity:0.7;
  padding:26px 0 34px;
}

/* ---------- FOCUS ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible{
  outline:2px solid var(--sage); outline-offset:3px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .service-grid{grid-template-columns:repeat(2, 1fr);}
  .pricing-inner{grid-template-columns:1fr; gap:40px;}
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media (max-width: 760px){
  .nav-links{display:none;}
  .nav-toggle{display:flex;}
  .how-steps{flex-direction:column; align-items:center; gap:36px;}
  .how-connector{display:none;}
  .therapist-grid{grid-template-columns:1fr;}
  .as-seen-marks{gap:26px; font-size:14px;}
  section{padding:80px 0;}
  .hero{padding:90px 0 60px;}
  .final-cta{margin:0 20px; padding:70px 26px; border-radius:24px;}
  .footer-top{grid-template-columns:1fr;}
  .container{padding:0 24px;}
  nav{padding:16px 24px;}
}
@media (max-width: 560px){
  .service-grid{grid-template-columns:1fr;}
  .hero-trust{gap:18px;}
  .trust-divider{display:none;}
}


/* ---------- ABOUT PAGE ---------- */
.about-hero{padding-bottom:70px;}
.about-hero .hero-sub{max-width:580px;}
 .hero-sub-reveal{
  color: #FFFFFF;
 }
 .hero-photo-bg{position:absolute; inset:0; z-index:0;}
.hero-photo-bg img{width:100%; height:100%; object-fit:cover; display:block;}
.hero-photo-bg::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(45deg, rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.8) 95%, var(--white) 96%);
}
 
.story-stats{padding:0 0 100px;}
.story-stats-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:44px 0;
}
.stat-item{text-align:center;}
.stat-item strong{
  display:block;
  font-family:'Fraunces', serif;
  font-size:34px;
  color:var(--sage-dark);
  margin-bottom:6px;
}
.stat-item span{font-size:13.5px; color:var(--ink);}
 
.mission-vision{background:var(--bg-soft);}
.mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.mv-card{
  background:var(--white);
  border-radius:20px;
  padding:40px 36px;
  box-shadow:var(--shadow);
}
.mv-icon{
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  background:var(--bg-soft);
  border-radius:14px;
  margin-bottom:22px;
}
.mv-card h3{font-size:23px; margin:10px 0 14px;}
.mv-card p{font-size:15px; line-height:1.7; color:var(--ink);}
 
.values-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
}
.value-item{text-align:center;}
.value-num{
  display:block;
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:15px;
  color:var(--gold-dark);
  margin-bottom:16px;
}
.value-item h3{font-size:19px; margin-bottom:10px;}
.value-item p{font-size:14.5px; line-height:1.6; color:var(--ink); max-width:260px; margin:0 auto;}
 
.founder-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:40px;
  max-width:820px;
  margin:0 auto;
}
.founder-card{text-align:center;}
.founder-photo{
  width:180px; height:180px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 22px;
  box-shadow:var(--shadow);
}
.founder-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.founder-card h3{font-size:21px; margin-bottom:4px;}
.founder-role{font-size:13.5px; color:var(--sage-dark); font-weight:600; margin-bottom:14px;}
.founder-card p{font-size:14.5px; line-height:1.65; color:var(--ink); max-width:320px; margin:0 auto;}
 
@media (max-width: 760px){
  .story-stats-grid{grid-template-columns:1fr 1fr; gap:28px 20px;}
  .mv-grid{grid-template-columns:1fr;}
  .values-grid{grid-template-columns:1fr; gap:34px;}
  .founder-grid{grid-template-columns:1fr; gap:44px;}
}
 
/* ---------- DIRECTORY / THERAPISTS PAGE ---------- */
.directory-hero{padding-bottom:60px;}
.filter-section{padding:0 0 20px;margin-top: 30px;}
.filter-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:18px;
}
.filter-pill{
  font-family:'Inter', sans-serif;
  font-size:13.5px;
  font-weight:600;
  padding:10px 20px;
  border-radius:100px;
  border:1.5px solid var(--line);
  background:var(--white);
  color:var(--ink);
  cursor:pointer;
  transition:all 0.2s;
}
.filter-pill:hover{border-color:var(--sage); color:var(--sage-dark);}
.filter-pill.active{
  background:var(--sage);
  border-color:var(--sage);
  color:var(--white);
}
.filter-count{
  text-align:center;
  font-size:13.5px;
  color:var(--ink);
  opacity:0.75;
}
.directory{padding-top:30px;}
.directory-grid{grid-template-columns:repeat(3, 1fr);}
.directory-card{transition:opacity 0.3s, transform 0.3s;}
.directory-card.hidden-card{
  display:none;
}
.browse-card{
  background:var(--bg-soft);
  border-radius:20px;
  padding:34px 28px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.browse-card h3{font-size:19px;}
.browse-card p{font-size:14px; line-height:1.6; color:var(--ink); margin-bottom:6px;}
.no-results{
  text-align:center;
  font-size:15px;
  color:var(--ink-soft);
  padding:40px 20px;
}

/* ---------- ABOUT: TEXT + PHOTO SIDE BY SIDE ---------- */
.about-grid{
  align-items:stretch; /* makes both cards equal height */
}
.about-grid .mv-card p{margin-bottom:8px;}
.about-grid .mv-card p:last-child{margin-bottom:0;}

.about-grid .photo-card{
  padding:0;              /* image bleeds to the card edges, no inner padding */
  overflow:hidden;
  min-height:300px;
}
.about-grid .photo-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:20px;     /* matches --shadow card radius used elsewhere */
}

@media (max-width: 760px){
  .about-grid .photo-card{min-height:260px;}
}
 
/* ---------- CONTACT PAGE ---------- */
.contact-hero{padding-bottom:60px;}
.contact-section{padding-top:20px;}
.contact-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:50px;
  align-items:start;
}
.contact-form{
  background:var(--bg-soft);
  border-radius:24px;
  padding:44px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.form-field{margin-bottom:20px;}
.form-field label{
  display:block;
  font-size:13.5px;
  font-weight:600;
  color:var(--ink);
  margin-bottom:8px;
}
.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  padding:13px 16px;
  border-radius:10px;
  border:1.5px solid var(--line);
  background:var(--white);
  font-family:'Inter', sans-serif;
  font-size:14.5px;
  color:var(--ink);
  transition:border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--sage);
}
.form-field textarea{resize:vertical;}
.form-note{
  font-size:12.5px;
  color:var(--ink);
  line-height:1.5;
  margin-bottom:20px;
}
.form-success{
  margin-top:16px;
  text-align:center;
  font-size:14.5px;
  font-weight:600;
  color:var(--sage-dark);
  background:var(--sage-light);
  padding:14px;
  border-radius:10px;
}
 
.contact-info{display:flex; flex-direction:column; gap:26px;}
.crisis-banner{
  background:var(--ink);
  color:var(--white);
  border-radius:18px;
  padding:26px 28px;
}
.crisis-banner p{
  margin-top:10px;
  font-size:14.5px;
  line-height:1.6;
  color:rgba(255,255,255,0.85);
}
.crisis-banner strong{color:var(--gold);}
.info-item{
  border-bottom:1px solid var(--line);
  padding-bottom:20px;
}
.info-item:last-child{border-bottom:none;}
.info-item p{
  font-size:14.5px;
  line-height:1.6;
  color:var(--ink);
}
 
@media (max-width: 900px){
  .directory-grid{grid-template-columns:1fr 1fr;}
  .contact-grid{grid-template-columns:1fr;}
}
@media (max-width: 760px){
  .directory-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .contact-form{padding:30px 24px;}
  .filter-bar{gap:8px;}
  .filter-pill{padding:9px 16px; font-size:13px;}
}
 
/* ---------- AUTH / SIGN UP ---------- */
.auth-section{
  position:relative;
  padding:80px 0 110px;
  overflow:hidden;
}
.auth-wrap{
  position:relative; z-index:2;
  max-width:1080px;
  margin:0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:40px;
  align-items:stretch;
}
.auth-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:24px;
  padding:44px 44px 36px;
  box-shadow:var(--shadow);
}
.auth-card .badge{margin-bottom:18px;}
.auth-card h1{font-size:clamp(26px, 3vw, 32px); margin-top: 30px;}
.auth-sub{
  margin-top:12px; margin-bottom:28px;
  font-size:15px; line-height:1.6; color:var(--ink);
}
 
.social-row{display:flex; gap:12px; margin-bottom:24px;}
.btn-social{
  flex:1;
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border:1.5px solid var(--line);
  border-radius:10px;
  background:var(--white);
  font-family:'Inter', sans-serif;
  font-size:13.5px; font-weight:600;
  color:var(--ink);
  cursor:pointer;
  transition:border-color 0.2s, transform 0.2s;
}
.btn-social:hover{border-color:var(--sage); transform:translateY(-2px);}
 
.auth-divider{
  position:relative;
  text-align:center;
  margin-bottom:24px;
}
.auth-divider::before{
  content:"";
  position:absolute; top:50%; left:0; right:0;
  height:1px; background:var(--line);
}
.auth-divider span{
  position:relative;
  background:var(--white);
  padding:0 14px;
  font-size:12.5px;
  color:var(--ink);
  opacity:0.75;
}
 
.password-wrap{position:relative;}
.password-wrap input{padding-right:64px;}
.toggle-visibility{
  position:absolute; right:6px; top:50%; transform:translateY(-50%);
  background:none; border:none;
  font-family:'Inter', sans-serif;
  font-size:12.5px; font-weight:600;
  color:var(--sage-dark);
  padding:8px 10px;
  cursor:pointer;
}
.password-hint{
  margin-top:8px;
  font-size:12.5px;
  color:var(--ink);
  opacity:0.75;
}
.password-hint.error{color:#B4544A; opacity:1;}
 
.checkbox-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:6px 0 26px;
  font-size:13.5px;
  line-height:1.55;
  color:var(--ink);
  cursor:pointer;
}
.checkbox-row input{
  margin-top:3px;
  width:16px; height:16px;
  accent-color:var(--sage);
  flex-shrink:0;
}
.checkbox-row a{color:var(--sage-dark); font-weight:600;}
 
.auth-switch{
  margin-top:22px;
  text-align:center;
  font-size:14px;
  color:var(--ink);
}
.auth-switch a{color:var(--sage-dark); font-weight:600;}
 
.auth-aside{
  background:var(--ink);
  color:var(--white);
  border-radius:24px;
  padding:40px 34px;
  display:flex;
  flex-direction:column;
}
.auth-points{margin:20px 0 30px; display:flex; flex-direction:column; gap:14px;}
.auth-points li{
  display:flex; align-items:flex-start; gap:10px;
  font-size:14.5px; line-height:1.5;
  color:rgba(255,255,255,0.88);
}
.point-icon{
  flex-shrink:0;
  color:var(--gold);
  font-weight:700;
}
.auth-aside blockquote{
  font-family:'Fraunces', serif; font-style:italic; font-weight:400;
  font-size:17px; line-height:1.55;
  color:var(--white);
  margin-top:auto;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.15);
}
.auth-aside cite{
  display:block; margin-top:14px;
  font-style:normal; font-size:12.5px;
  color:var(--gold);
}
 
.auth-footer{padding:36px 0; margin-top:0;}
 
@media (max-width: 900px){
  .auth-wrap{grid-template-columns:1fr;}
  .auth-aside{order:2;}
}
@media (max-width: 560px){
  .auth-card{padding:30px 24px;}
  .social-row{flex-direction:column;}
}

/* ---------- LOGIN EXTRAS ---------- */
.login-options{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:26px;
}
.forgot-link{
  font-size:13.5px; font-weight:600; color:var(--sage-dark);
}
.form-error{
  margin-top:14px; text-align:center;
  font-size:14px; font-weight:600; color:#B4544A;
}
 
/* ================= APP SHELL (DASHBOARD) ================= */
.app-body{background:var(--bg-soft);}
.app-shell{
  display:flex;
  min-height:100vh;
}
 
/* Sidebar */
.app-sidebar{
  width:252px;
  flex-shrink:0;
  background:var(--white);
  border-right:1px solid var(--line);
  padding:28px 20px;
  display:flex;
  flex-direction:column;
  position:sticky;
  top:0;
  height:100vh;
}
.app-logo{margin-bottom:34px; padding:0 8px;
margin-left:70px;}
.app-nav{display:flex; flex-direction:column; gap:4px; flex:1;}
.app-nav-item{
  display:flex; align-items:center; gap:12px;
  padding:11px 12px;
  border-radius:10px;
  font-size:14.5px; font-weight:500;
  color:var(--ink);
  transition:background 0.2s, color 0.2s;
}
.app-nav-item svg{width:19px; height:19px; flex-shrink:0;}
.app-nav-item:hover{background:var(--bg-soft); color:var(--ink);}
.app-nav-item.active{
  background:var(--sage-light);
  color:var(--sage-dark);
  font-weight:600;
}
.nav-badge{
  margin-left:auto;
  background:var(--gold);
  color:var(--white);
  font-size:11px; font-weight:700;
  width:18px; height:18px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.logout-link{border-top:1px solid var(--line); margin-top:16px; padding-top:20px;}
 
.app-sidebar-toggle{
  display:none;
  position:fixed; top:18px; left:18px; z-index:60;
  width:42px; height:42px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:10px;
  flex-direction:column; align-items:center; justify-content:center; gap:4px;
  box-shadow:var(--shadow);
}
.app-sidebar-toggle span{width:18px; height:2px; background:var(--ink); border-radius:2px;}
.app-sidebar-overlay{
  display:none;
  position:fixed; inset:0; z-index:45;
  background:rgba(23,20,15,0.35);
}
 
/* Main area */
.app-main{flex:1; min-width:0;}
.app-topbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:30px 40px;
  background:var(--white);
  border-bottom:1px solid var(--line);
}
.app-topbar-eyebrow{
  font-size:12.5px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--sage); margin-bottom:4px;
}
.app-topbar-title{font-size:24px; font-weight:500;}
.app-topbar-actions{display:flex; align-items:center; gap:16px;}
.icon-btn{
  position:relative;
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid var(--line);
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
  color:var(--ink);
  cursor:pointer;
}
.icon-btn svg{width:18px; height:18px;}
.icon-dot{
  position:absolute; top:8px; right:9px;
  width:7px; height:7px; border-radius:50%;
  background:var(--gold);
  border:1.5px solid var(--white);
}
.app-avatar{
  width:40px; height:40px;
  border-radius:50%;
  background:var(--sage);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces', serif;
  font-size:14.5px; font-weight:500;
}
 
.app-content{padding:34px 40px 70px; max-width:1180px;}
 
/* Stat row */
.stat-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  margin-bottom:24px;
}
.stat-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:16px;
  padding:22px 22px 20px;
  display:flex; flex-direction:column; gap:6px;
}
.stat-label{font-size:12.5px; color:var(--ink); font-weight:600;}
.stat-value{font-family:'Fraunces', serif; font-size:26px; color:var(--ink);}
.stat-sub{font-size:12px; color:var(--ink); opacity:0.75;}
 
/* Session card */
.session-card{
  background:var(--ink);
  color:var(--white);
  border-radius:20px;
  padding:28px 30px;
  display:flex;
  align-items:center;
  gap:24px;
  margin-bottom:24px;
  flex-wrap:wrap;
}
.session-photo{
  width:64px; height:64px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  border:2px solid rgba(255,255,255,0.2);
}
.session-photo img{width:100%; height:100%; object-fit:cover;}
.session-info{flex:1; min-width:200px;}
.session-info .eyebrow{color:var(--gold); margin-bottom:6px;}
.session-info h2{color:var(--white); font-size:20px; margin-bottom:6px;}
.session-meta{font-size:13.5px; color:rgba(255,255,255,0.75);}
.session-actions{display:flex; gap:12px; flex-wrap:wrap;}
.session-actions .btn-ghost{color:var(--white); border-color:rgba(255,255,255,0.3);}
.session-actions .btn-ghost:hover{border-color:var(--gold); color:var(--gold);}
 
/* Two column: therapist + messages */
.dash-columns{
  display:grid;
  grid-template-columns:0.9fr 1.4fr;
  gap:20px;
  margin-bottom:24px;
}
.therapist-mini, .messages-panel{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px;
}
.therapist-mini .eyebrow{margin-bottom:16px; display:block;}
.therapist-mini-body{display:flex; align-items:center; gap:14px; margin-bottom:16px;}
.therapist-mini-body img{width:56px; height:56px; border-radius:50%; object-fit:cover;}
.therapist-mini-body h3{font-size:17px;}
.therapist-mini-body p{font-size:13px; color:var(--ink);}
 
.panel-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:18px;}
.message-item{
  display:flex; gap:12px;
  padding:14px 0;
  border-top:1px solid var(--line);
}
.message-item:first-of-type{border-top:none; padding-top:0;}
.message-item img{width:38px; height:38px; border-radius:50%; object-fit:cover; flex-shrink:0;}
.message-icon{
  width:38px; height:38px; border-radius:50%;
  background:var(--sage-light);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; flex-shrink:0;
}
.message-top{display:flex; justify-content:space-between; gap:10px; margin-bottom:3px;}
.message-top strong{font-size:13.5px;}
.message-top span{font-size:12px; color:var(--ink); opacity:0.7; white-space:nowrap;}
.message-item p{font-size:13.5px; line-height:1.5; color:var(--ink);}
.message-item.unread p{color:var(--ink);}
.message-item.unread strong::after{
  content:"";
  display:inline-block;
  width:6px; height:6px;
  border-radius:50%;
  background:var(--gold);
  margin-left:7px;
  vertical-align:middle;
}
 
/* Mood widget */
.mood-widget{
  background:var(--sage-light);
  border-radius:20px;
  padding:28px 30px;
  margin-bottom:24px;
}
.mood-widget h3{font-size:19px; margin-bottom:18px;}
.mood-options{display:flex; gap:12px; flex-wrap:wrap;}
.mood-btn{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  background:var(--white);
  border:1.5px solid transparent;
  border-radius:14px;
  padding:14px 18px;
  font-size:22px;
  cursor:pointer;
  transition:transform 0.2s, border-color 0.2s;
}
.mood-btn span{font-size:11.5px; font-weight:600; color:var(--ink); font-family:'Inter', sans-serif;}
.mood-btn:hover{transform:translateY(-3px);}
.mood-btn.selected{border-color:var(--sage); background:var(--white);}
.mood-response{
  margin-top:16px;
  font-size:14px; font-weight:600;
  color:var(--sage-dark);
}
 
/* Resources */
.resources-section{margin-bottom:10px;}
.resource-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.resource-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:16px;
  padding:22px;
  transition:transform 0.2s, box-shadow 0.2s;
}
.resource-card:hover{transform:translateY(-4px); box-shadow:var(--shadow);}
.resource-icon{
  width:42px; height:42px;
  border-radius:12px;
  background:var(--bg-soft);
  display:flex; align-items:center; justify-content:center;
  font-size:19px;
  margin-bottom:14px;
}
.resource-card h4{font-family:'Fraunces', serif; font-weight:500; font-size:15.5px; line-height:1.4; margin-bottom:8px;}
.resource-card p{font-size:12.5px; color:var(--ink);}
 
/* Dashboard responsive */
@media (max-width: 1080px){
  .stat-row{grid-template-columns:1fr 1fr;}
  .dash-columns{grid-template-columns:1fr;}
  .resource-grid{grid-template-columns:1fr;}
}
@media (max-width: 900px){
  .app-sidebar{
    position:fixed; left:0; top:0; z-index:50;
    transform:translateX(-100%);
    transition:transform 0.3s ease;
    box-shadow:0 0 40px rgba(0,0,0,0.15);
  }
  .app-sidebar.open{transform:translateX(0);}
  .app-sidebar-toggle{display:flex;}
  .app-sidebar-overlay.open{display:block;}
  .app-topbar{padding:22px 24px 22px 74px;}
  .app-content{padding:24px 20px 60px;}
  .app-topbar-title{font-size:20px;}
}
@media (max-width: 560px){
  .stat-row{grid-template-columns:1fr;}
  .session-card{flex-direction:column; align-items:flex-start;}
  .session-actions{width:100%;}
  .session-actions .btn{flex:1; text-align:center; justify-content:center;}
}

/* ================= BOOKING FLOW ================= */
 
/* Stepper */
.booking-stepper{
  display:flex; align-items:center;
  margin-bottom:44px;
  max-width:560px;
}
.step-item{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.step-circle{
  width:32px; height:32px;
  border-radius:50%;
  border:1.5px solid var(--line);
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces', serif; font-size:14px;
  color:var(--ink-soft);
  transition:all 0.25s;
}
.step-label{
  font-size:13.5px; font-weight:600; color:var(--ink);
  white-space:nowrap;
}
.step-item.active .step-circle{background:var(--sage); border-color:var(--sage); color:var(--white);}
.step-item.active .step-label{color:var(--ink);}
.step-item.done .step-circle{background:var(--sage-dark); border-color:var(--sage-dark); color:var(--white);}
.step-line{
  flex:1;
  height:1.5px;
  background:var(--line);
  margin:0 14px;
  min-width:30px;
}
 
.booking-step-head{margin-bottom:26px;}
.booking-step-head h2{font-size:24px; margin-bottom:8px;}
.booking-step-head p{font-size:14.5px; color:var(--ink);}
 
/* Step 1: therapist selection grid */
.booking-therapist-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-bottom:34px;
}
.booking-therapist-card{
  position:relative;
  text-align:left;
  background:var(--white);
  border:1.5px solid var(--line);
  border-radius:18px;
  padding:20px;
  cursor:pointer;
  transition:border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family:'Inter', sans-serif;
}
.booking-therapist-card:hover{transform:translateY(-3px); box-shadow:var(--shadow);}
.booking-therapist-card.selected{border-color:var(--sage); box-shadow:0 0 0 3px var(--sage-light);}
.booking-therapist-card img{
  width:100%; aspect-ratio:1/0.85; object-fit:cover;
  border-radius:12px; margin-bottom:14px;
}
.booking-therapist-card h3{font-size:16.5px; margin-bottom:3px;}
.booking-therapist-card .t-role{font-size:12.5px; color:var(--sage-dark); font-weight:600; margin-bottom:10px;}
.booking-therapist-card .t-tags{display:flex; gap:6px; flex-wrap:wrap;}
.booking-therapist-card .t-tags span{
  font-size:10.5px; font-weight:600;
  background:var(--bg-soft); color:var(--ink);
  padding:4px 9px; border-radius:100px;
}
.select-check{
  position:absolute; top:14px; right:14px;
  width:24px; height:24px; border-radius:50%;
  background:var(--sage);
  color:var(--white);
  font-size:13px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:scale(0.6);
  transition:opacity 0.2s, transform 0.2s;
}
.booking-therapist-card.selected .select-check{opacity:1; transform:scale(1);}
 
.booking-nav{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:8px;
}
 
/* Step 2: time selection */
.session-type-toggle{display:flex; gap:10px; margin-bottom:28px;}
.type-pill{
  padding:10px 20px;
  border-radius:100px;
  border:1.5px solid var(--line);
  background:var(--white);
  font-size:13.5px; font-weight:600;
  color:var(--ink);
  cursor:pointer;
  transition:all 0.2s;
}
.type-pill.active{background:var(--ink); border-color:var(--ink); color:var(--white);}
 
.day-picker{
  display:flex; gap:10px; overflow-x:auto;
  margin-bottom:26px;
  padding-bottom:4px;
}
.day-btn{
  flex-shrink:0;
  display:flex; flex-direction:column; align-items:center; gap:4px;
  padding:14px 18px;
  border-radius:14px;
  border:1.5px solid var(--line);
  background:var(--white);
  cursor:pointer;
  min-width:68px;
  transition:all 0.2s;
}
.day-btn .day-name{font-size:11.5px; font-weight:600; color:var(--ink); text-transform:uppercase; letter-spacing:0.03em;}
.day-btn .day-num{font-family:'Fraunces', serif; font-size:19px; color:var(--ink);}
.day-btn.active{background:var(--sage); border-color:var(--sage);}
.day-btn.active .day-name, .day-btn.active .day-num{color:var(--white);}
 
.time-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
  margin-bottom:34px;
}
.time-btn{
  padding:13px;
  border-radius:12px;
  border:1.5px solid var(--line);
  background:var(--white);
  font-size:14px; font-weight:600;
  color:var(--ink);
  cursor:pointer;
  transition:all 0.2s;
}
.time-btn:hover{border-color:var(--sage);}
.time-btn.active{background:var(--sage); border-color:var(--sage); color:var(--white);}
.time-btn.unavailable{
  color:var(--ink); opacity:0.4;
  text-decoration:line-through;
  cursor:not-allowed;
}
.time-btn.unavailable:hover{border-color:var(--line);}
 
/* Step 3: confirm */
.confirm-layout{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:24px;
  margin-bottom:30px;
}
.confirm-summary{
  background:var(--bg-soft);
  border-radius:20px;
  padding:26px;
}
.confirm-therapist{
  display:flex; align-items:center; gap:14px;
  padding-bottom:20px;
  margin-bottom:20px;
  border-bottom:1px solid var(--line);
}
.confirm-therapist img{width:52px; height:52px; border-radius:50%; object-fit:cover;}
.confirm-therapist h3{font-size:17px;}
.confirm-therapist p{font-size:12.5px; color:var(--ink);}
.confirm-detail{
  display:flex; flex-direction:column; gap:4px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
}
.confirm-detail:last-child{border-bottom:none; padding-bottom:0;}
.confirm-detail span{font-size:12px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.04em; 
  font-weight:600;}
.confirm-detail strong{font-family:'Fraunces', serif; font-weight:500; font-size:16px; color:var(--ink);}
.confirm-note{font-family:'Inter', sans-serif; font-size:12px; font-weight:400; color:var(--ink);}
.confirm-form .form-field{margin-bottom:18px;}
.confirm-form textarea{width:100%; padding:13px 16px; border-radius:10px; border:1.5px solid var(--line); font-family:'Inter', sans-serif; font-size:14px; resize:vertical;}
.confirm-form textarea:focus{outline:none; border-color:var(--sage);}
 
/* Success state */
.booking-success{
  max-width:480px;
  margin:60px auto;
  text-align:center;
}
.success-icon{
  width:60px; height:60px;
  border-radius:50%;
  background:var(--sage);
  color:var(--white);
  font-size:26px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 22px;
}
.booking-success h2{font-size:26px; margin-bottom:12px;}
.booking-success p{font-size:15px; color:var(--ink); line-height:1.6; margin-bottom:30px;}
.success-actions{display:flex; gap:12px; justify-content:center; flex-wrap:wrap;}
 
@media (max-width: 900px){
  .booking-therapist-grid{grid-template-columns:1fr 1fr;}
  .confirm-layout{grid-template-columns:1fr;}
}
@media (max-width: 560px){
  .booking-therapist-grid{grid-template-columns:1fr;}
  .time-grid{grid-template-columns:1fr 1fr;}
  .step-label{display:none;}
  .booking-stepper{max-width:100%;}
}