/* ============================================
   THERAPEUTIC HEALING — Botanical Sanctuary
   ============================================ */

:root {
  --navy: #153147;
  --navy-deep: #0e2233;
  --gold: #c3965f;
  --gold-light: #d4ad7a;
  --gold-glow: rgba(195, 150, 95, 0.15);
  --cream: #EDEAE4;
  --cream-light: #f5f3ef;
  --cream-dark: #ddd8cf;
  --sage: #9cad84;
  --sage-light: #b8c5a5;
  --sage-muted: rgba(156, 173, 132, 0.12);
  --blush: #e8d5c4;
  --text-primary: #2a2a2a;
  --text-secondary: #5a5a5a;
  --text-light: #8a8a8a;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(21, 49, 71, 0.06);
  --shadow-md: 0 8px 30px rgba(21, 49, 71, 0.08);
  --shadow-lg: 0 20px 60px rgba(21, 49, 71, 0.12);
  --shadow-gold: 0 8px 30px rgba(195, 150, 95, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Base & Typography ---- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  background: var(--cream-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

h1 { font-weight: 500; letter-spacing: -0.02em; }
h2 { font-weight: 500; letter-spacing: -0.01em; }
h3 { font-weight: 500; }

p {
  line-height: 1.75;
  color: var(--text-secondary);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

::selection {
  background: var(--gold-glow);
  color: var(--navy);
}

/* ---- Scroll Reveal Animations ---- */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Navbar ---- */

.th-navbar {
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent !important;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.th-navbar.scrolled {
  background: rgba(21, 49, 71, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.th-navbar .navbar-brand img:first-child {
  transition: transform var(--transition);
}

.th-navbar .navbar-brand:hover img:first-child {
  transform: rotate(15deg) scale(1.05);
}

.th-navbar .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color var(--transition);
}

.th-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.th-navbar .nav-link:hover {
  color: #fff !important;
}

.th-navbar .nav-link:hover::after {
  width: 60%;
}

.th-navbar .dropdown-menu {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  backdrop-filter: blur(20px);
}

.th-navbar .dropdown-item {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  padding: 0.55rem 1.25rem;
  transition: all var(--transition);
  font-family: 'Outfit', sans-serif;
}

.th-navbar .dropdown-item:hover {
  color: #fff;
  background: rgba(195, 150, 95, 0.15);
  padding-left: 1.5rem;
}

/* CTA Button in Navbar */
.th-cta-btn {
  display: inline-block;
  padding: 10px 24px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 0;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
}

.th-cta-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(195, 150, 95, 0.3);
  color: #fff !important;
}

.th-cta-btn:active {
  transform: translateY(0);
}

/* ---- Hero Section ---- */

.th-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--navy);
}

.th-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.8);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.th-hero.loaded .th-hero__bg {
  transform: scale(1);
}

.th-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21,49,71,0.4) 0%, transparent 40%),
    linear-gradient(0deg, rgba(21,49,71,0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(195,150,95,0.1) 0%, transparent 60%);
  z-index: 1;
}

.th-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.th-hero__tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.th-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.th-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.th-hero__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.th-hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.th-hero__cta .th-cta-btn {
  padding: 14px 36px;
  font-size: 0.85rem;
}

.th-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  opacity: 0;
  animation: heroFadeUp 1s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.th-hero__scroll i {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- Decorative Divider ---- */

.th-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.th-divider__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.th-divider__icon {
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.6;
}

/* ---- Section Styles ---- */

.th-section {
  padding: 6rem 0;
  position: relative;
}

.th-section--cream {
  background: var(--cream);
}

.th-section--navy {
  background: var(--navy);
  color: #fff;
}

.th-section--navy p {
  color: rgba(255,255,255,0.7);
}

.th-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.th-section__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.th-section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.th-section__subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* ---- Page Header (for inner pages) ---- */

.th-page-header {
  position: relative;
  padding: 10rem 0 4rem;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}

.th-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(195,150,95,0.08) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 0%, rgba(156,173,132,0.06) 0%, transparent 50%);
}

.th-page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream-light), transparent);
}

.th-page-header h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin: 0;
}

.header2 {
  position: relative;
  background: var(--navy) !important;
  overflow: hidden;
  padding: 10rem 0 4rem !important;
  background-image: url('/public/images/lotus2-scaled.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.header2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21,49,71,0.85) 0%, rgba(21,49,71,0.7) 50%, rgba(21,49,71,0.85) 100%),
    radial-gradient(ellipse at 50% 80%, rgba(195,150,95,0.1) 0%, transparent 60%);
  z-index: 1;
}

.header2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream-light), transparent);
  z-index: 2;
}

.header2 .container-fluid {
  position: relative;
  z-index: 3;
}

.header2 h1,
.header2 .text-body-emphasis {
  color: #fff !important;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

/* Page-specific banner backgrounds */
body.page-craniosacral-therapy .header2,
body.page-heart-centered-therapy .header2,
body.page-somatoemotional-release .header2 {
  background-image: url('/public/images/bg-home.jpg') !important;
  background-position: center 30% !important;
}

body.page-meet-kelly .header2,
body.page-about .header2 {
  background-image: url('/public/images/winter.png') !important;
}

body.page-contact .header2,
body.page-reviews .header2 {
  background-image: url('/public/images/trees.png') !important;
}

body.page-myofascial-release .header2,
body.page-visceral-mobilization .header2,
body.page-range-of-motion .header2,
body.page-sensory-integration .header2 {
  background-image: url('/public/images/lotus2-scaled.jpg') !important;
  background-position: center 40% !important;
}

/* ---- Cards ---- */

.th-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
}

.th-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Override Bootstrap cards in page content */
.card {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: 1.75rem;
}

/* ---- Review Cards ---- */

.th-reviews {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.th-reviews::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--sage-muted);
  filter: blur(80px);
}

.th-review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  position: relative;
}

.th-review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
}

.th-review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.th-review-card .review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.th-review-card .review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream);
}

.th-review-card .review-author h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.th-review-card .review-author small {
  color: var(--text-light);
  font-size: 0.8rem;
}

.th-review-card .review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.th-review-card .review-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* ---- Gift Section ---- */

.th-gift {
  padding: 6rem 0;
  position: relative;
  background: var(--cream-light);
  overflow: hidden;
}

.th-gift::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/public/images/trees.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.th-gift__content {
  position: relative;
  z-index: 1;
}

.th-gift-card-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
  max-width: 100%;
}

.th-gift-card-img:hover {
  transform: rotate(-2deg) scale(1.02);
}

.th-gift-feature {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
  height: 100%;
}

.th-gift-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.th-gift-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}

.th-gift-feature__icon--heart {
  background: rgba(220, 80, 80, 0.1);
  color: #dc5050;
}

.th-gift-feature__icon--leaf {
  background: var(--sage-muted);
  color: var(--sage);
}

.th-gift-feature__icon--gift {
  background: var(--gold-glow);
  color: var(--gold);
}

.th-gift-feature h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.th-gift-feature p {
  font-size: 0.9rem;
  margin: 0;
}

/* ---- Footer ---- */

.th-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
}

.th-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.th-footer__main {
  padding: 5rem 0 3rem;
}

.th-footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
}

.th-footer h6 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.th-footer__links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: all var(--transition);
  text-decoration: none;
}

.th-footer__links a:hover {
  color: #fff;
  padding-left: 4px;
}

.th-footer__contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}

.th-footer__contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.th-footer__contact a:hover {
  color: var(--gold);
}

.th-footer__contact i {
  color: var(--gold);
  opacity: 0.7;
  width: 20px;
}

.th-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-size: 1rem;
}

.th-footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.th-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ---- Inner Page Banner ---- */

.th-inner-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.th-inner-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--banner-img);
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(0.7);
  transform: scale(1.03);
  transition: transform 6s ease-out;
}

.th-inner-banner:hover::before {
  transform: scale(1);
}

.th-inner-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21,49,71,0.6) 0%, rgba(21,49,71,0.3) 40%, rgba(21,49,71,0.6) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(195,150,95,0.08) 0%, transparent 70%);
  z-index: 1;
}

.th-inner-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem 3.5rem;
  width: 100%;
}

.th-inner-banner__label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.th-inner-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.th-inner-banner__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.th-inner-banner__divider span {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.th-inner-banner__divider i {
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.6;
}

.th-inner-banner__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--cream-light), transparent);
  z-index: 3;
}

/* Inner page main content area */
.th-inner-main {
  background: var(--cream-light);
  position: relative;
}

.th-inner-main > .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Hide old header2 banners when inside th-inner-main (page content from CMS) */
.th-inner-main .header2 {
  display: none;
}

@media (max-width: 767.98px) {
  .th-inner-banner {
    min-height: 300px;
  }

  .th-inner-banner__content {
    padding: 7rem 1.5rem 2.5rem;
  }
}

/* ---- Page Content Styling ---- */

main {
  background: var(--cream-light);
}

main .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

main h3,
main h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
}

/* Bootstrap overrides for content pages */
.nav-tabs {
  border-bottom: 2px solid var(--cream-dark);
}

.nav-tabs .nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  border: none;
  padding: 0.75rem 1.25rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
  background: transparent;
}

.tab-content {
  padding: 1.5rem 0;
}

.accordion-item {
  border: 1px solid var(--cream-dark) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy) !important;
  background: var(--white) !important;
  box-shadow: none !important;
  padding: 1.1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
  background: var(--cream-light) !important;
  border-color: var(--sage) !important;
  color: var(--navy) !important;
}

.accordion-button::after {
  filter: none;
  transition: transform var(--transition);
}

.accordion-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ---- Buttons (Bootstrap overrides) ---- */

.btn-secondary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.6rem 1.5rem;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary {
  background: var(--navy);
  border: none;
  border-radius: var(--radius-xl);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- SimplePractice Widget Override ---- */

.spwidget-button-wrapper { text-align: center; }

.spwidget-button {
  display: inline-block;
  padding: 14px 36px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  border: 0 !important;
  border-radius: var(--radius-xl) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  font-family: 'Outfit', sans-serif !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  transition: all var(--transition) !important;
  box-shadow: var(--shadow-gold) !important;
}

.spwidget-button:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(195, 150, 95, 0.3) !important;
}

.spwidget-button:active {
  transform: translateY(0) !important;
}

/* ---- Error Page ---- */

.error-page {
  text-align: center;
  padding: 4rem 0;
  margin-top: 100px;
}

.error-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.error-page a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-xl);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: all var(--transition);
}

.error-page a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ---- Utility ---- */

.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream); }

/* ---- Responsive ---- */

@media (max-width: 991.98px) {
  .th-navbar .navbar-collapse {
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-lg);
  }

  .th-hero__title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .th-section {
    padding: 4rem 0;
  }

  .th-footer__main {
    padding: 3rem 0 2rem;
    text-align: center;
  }

  .th-footer__links,
  .th-footer__contact {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .th-hero__content {
    padding: 1rem;
  }

  .th-review-card {
    padding: 1.5rem;
  }
}

/* ---- Grain Texture Overlay ---- */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
