:root {
  --bg-main: #f9f7fc;
  --bg-alt: #ffffff;
  --bg-soft: #f3f0ff;
  --accent-lavender: #b9a7ff;
  --accent-blue: #8fb7ff;
  --accent-pink: #f3a9c9;
  --text-main: #2f2a3b;
  --text-soft: #5b546b;
  --border-soft: #e0d9f5;
  --radius-soft: 14px;
  --shadow-soft: 0 14px 30px rgba(40, 26, 80, 0.08);
  --max-width: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #fdf5ff 0, #f9f7fc 40%, #f4f7ff 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* Global image control */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Soft framed images */
.img-soft {
  width: 100%;
  max-width: 480px; /* prevents huge PNGs from blowing out the layout */
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(210, 199, 240, 0.9);
  object-fit: cover;
}

/* Hero images */
.hero-main-image {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

/* Portraits */
.portrait {
  width: 100%;
  max-width: 380px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 auto;
}

/* Artwork / illustrations */
.art-image {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  margin: 0 auto;
}

/* Layout */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

/* Header & navigation */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to right,
    rgba(249, 247, 252, 0.96),
    rgba(244, 247, 255, 0.96)
  );
  border-bottom: 1px solid rgba(210, 199, 240, 0.6);
}

.header-inner {
  width: 100%;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffd1e8, #c7b5ff 40%, #9fd0ff 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(120, 90, 190, 0.25);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #6b5aa8;
  margin: 4px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--text-soft);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.site-nav a:hover {
  background: rgba(185, 167, 255, 0.12);
  color: #3a2f6b;
  transform: translateY(-1px);
}

.site-nav a.active {
  background: linear-gradient(135deg, var(--accent-lavender), var(--accent-blue));
  color: #fff;
}

/* ------------------------------------------------------ */
/* ⭐ RESPONSIVE LAYOUT — when screen is under 1300px      */
/* ------------------------------------------------------ */

@media (max-width: 1300px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 1.25rem 1.5rem;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .site-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 18px;
  }

  .site-nav a {
    flex: 1 1 auto;
    text-align: center;
    padding: 0.5rem 0.75rem;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-lavender));
  color: #fff;
  box-shadow: 0 12px 26px rgba(210, 120, 190, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(210, 120, 190, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-soft);
  border: 1px solid rgba(185, 167, 255, 0.6);
}

.btn-outline:hover {
  background: #fff;
}

/* Hero */

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a7ac0;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-lavender));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hero-meta-pill {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 199, 240, 0.9);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top, #fff7ff 0, #f3f0ff 40%, #f4f8ff 100%);
  border-radius: 26px;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card img.hero-main-image {
  width: 100%;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  max-height: 320px;
}

.hero-chip {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  background: rgba(34, 26, 70, 0.86);
  color: #fdfbff;
  padding: 0.6rem 0.9rem;
  border-radius: 14px;
  font-size: 0.8rem;
  max-width: 80%;
}

.hero-floating-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 120px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(40, 26, 80, 0.25);
  padding: 0.5rem;
}

.hero-floating-badge img {
  width: 100%;
  display: block;
}

/* Sections */

.section {
  padding: 2.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.9);
}

.section-soft {
  background: radial-gradient(circle at top left, #fdf5ff 0, #f4f7ff 60%, #f9f7fc 100%);
}

.section-header {
  margin-bottom: 1.75rem;
  max-width: 720px;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8a7ac0;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
}

.section-intro {
  color: var(--text-soft);
}

/* Cards & grids */

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
}

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

.card {
  background: var(--bg-alt);
  border-radius: var(--radius-soft);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.card-soft {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-soft);
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(210, 199, 240, 0.7);
}

.card h3 {
  margin-top: 0;
}

/* Lists */

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(185, 167, 255, 0.12);
  color: var(--text-soft);
}

/* Quote */

.quote-block {
  margin: 2.5rem auto 0;
  max-width: 720px;
  text-align: center;
  padding: 1.8rem 1.6rem;
  border-radius: 22px;
  background: radial-gradient(circle at top, #fff7ff 0, #f3f0ff 40%, #f4f8ff 100%);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(210, 199, 240, 0.9);
}

.quote-block p {
  margin: 0 0 1rem;
  font-style: italic;
}

.quote-block .quote-attrib {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Forms */

.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.75rem;
}

.form-row-inline {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(185, 167, 255, 0.9);
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
  color: var(--text-main);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.checkbox-row input {
  margin-top: 0.2rem;
}

/* Success Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 236, 255, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.overlay-content {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  text-align: center;
  max-width: 380px;
  border: 1px solid rgba(185, 167, 255, 0.4);
}

.overlay-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.overlay-content p {
  color: var(--text-soft);
}


/* FAQ */

.faq-item {
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 199, 240, 0.9);
  margin-bottom: 0.75rem;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

/* Blog */

.blog-article {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article h1 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
}

.blog-article p {
  margin-bottom: 0.9rem;
}

/* Reflection list */
/* Container for all posts */
#reflections-list {
  display: flex;
  flex-direction: column;
  gap: 3rem; /* space between posts */
  max-width: 800px;
  margin: 0 auto;
}

/* Headings inside posts */
#reflections-list .post h1,
#reflections-list .post h2,
#reflections-list .post h3 {
  font-family: "Georgia", serif;
  margin-bottom: 1rem;
}

/* Paragraph spacing */
#reflections-list .post p {
  margin-bottom: 1.2rem;
}

/* Bullet lists */
#reflections-list .post ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

#reflections-list .post li {
  margin-bottom: 0.6rem;
}

/* Optional: subtle divider between posts */
#reflections-list .post:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 3rem;
}

.post {
  position: relative;

}

.post:last-child {
  border-bottom: none; /* no divider after last post */
}

.post-title {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 600;
}

.post-date {
  position: absolute;
  top: 0;
  right: 0;
  color: #7A7A7A; /* soft grey */
  font-size: 0.9rem;
  margin: 0;
}

.post-content {
  margin-top: 10px;
  line-height: 1.6;
}


/* Footer */

.site-footer {
  padding: 1.8rem 0 1.4rem;
  background: rgba(20, 12, 50, 0.96);
  color: #f5f0ff;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  font-size: 0.9rem;
}

.footer-meta {
  font-size: 0.8rem;
  color: #c9c0f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.footer-links a {
  color: #e9e3ff;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Utility */

.lead {
  font-size: 1.02rem;
  color: var(--text-soft);
}

.img-soft {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(210, 199, 240, 0.9);
}
.therapy-quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(249, 247, 252, 0.6);
  border-left: 4px solid var(--accent-lavender);
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-soft);
}


.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(185, 167, 255, 0.16);
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Responsive */
@media (max-width: 1300px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .site-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }

  .site-nav a {
    flex: 1 1 auto;
    text-align: center;
    padding: 8px 0;
  }
}

/* ------------------------------ */
/* ORIGINAL DESKTOP STYLES        */
/* ------------------------------ */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to right,
    rgba(249, 247, 252, 0.96),
    rgba(244, 247, 255, 0.96)
  );
  border-bottom: 1px solid rgba(210, 199, 240, 0.6);
}

.header-inner {
  width: 100%;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffd1e8, #c7b5ff 40%, #9fd0ff 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(120, 90, 190, 0.25);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color:#551A8B;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #6b5aa8;
  margin: 4px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--text-soft);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.site-nav a:hover {
  background: rgba(185, 167, 255, 0.12);
  color: #3a2f6b;
  transform: translateY(-1px);
}

.site-nav a.active {
  background: linear-gradient(135deg, var(--accent-lavender), var(--accent-blue));
  color: #fff;
}

#map{
  z-index:0;
}
#directions{
  text-decoration:none;
  color:var(--accent-pink);
}

/* ------------------------------------------------------ */
/* ⭐ RESPONSIVE LAYOUT — under 1300px                     */
/* ------------------------------------------------------ */

@media (max-width: 1300px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 1.25rem 1.5rem;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .site-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 18px;
  }

  .site-nav a {
    flex: 1 1 auto;
    text-align: center;
    padding: 0.5rem 0.75rem;
  }
}

/* ------------------------------------------------------ */
/* ⭐ under 880px — logo left + nav collapses              */
/* ------------------------------------------------------ */

@media (max-width: 880px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
  }

  .brand {
    flex-direction: row;
    text-align: left;
  }

  .brand-text {
    text-align: left;
    align-items: flex-start;
  }

  /* Hide full nav */
  .site-nav {
    display: none;
  }

  /* Dropdown works here */
  .site-nav.open {
    display: flex !important;
  }

  .nav-toggle {
    display: block;
  }
}

/* ------------------------------------------------------ */
/* ⭐ under 840px — same dropdown, but positioned absolute */
/* ------------------------------------------------------ */

@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }

  .grid-two {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-three {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .header-inner {
    padding-inline: 1rem;
  }

  /* Absolute-position dropdown */
  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(249, 247, 252, 0.98);
    border-bottom: 1px solid rgba(210, 199, 240, 0.8);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1rem;
    display: none;
  }

  .site-nav.open {
    display: flex !important;
  }
}
