/* ============================================= */
/* RESET & BASE                                  */
/* ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #7B5EA7;
  --purple-light: #9B7FCA;
  --purple-pale: #F0EBF8;
  --teal-pale: #EBF8F7;
  --blue: #5BA4C9;
  --blue-light: #A8DADC;
  --teal: #4ECDC4;
  --teal-dark: #6B8E8E;
  --mint: #85CDCA;
  --sage: #D1DED6;
  --cream: #F4EDE4;
  --beige: #C4B9AD;
  --warm-gold: #D4A373;
  --coral: #E8A87C;
  --slate: #1E293B;
  --orange: #D97706;
  --green: #3B6D11;
  --black: #1A1A1A;
  --dark: #2D2D2D;
  --gray-800: #3D3D3D;
  --gray-600: #666666;
  --gray-400: #999999;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container: 1280px;
  --container-narrow: 860px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 48px;
  --transition: 0.3s ease-out;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--black); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--container-narrow); }

/* ============================================= */
/* TYPOGRAPHY                                    */
/* ============================================= */
.section-heading { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; line-height: 1.15; color: var(--black); text-align: center; margin-bottom: 1rem; }
.section-heading .accent { color: var(--teal-dark); }
.section-subtext { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gray-600); text-align: center; max-width: 600px; margin: 0 auto 3rem; font-weight: 400; }
.accent-light { color: var(--teal); }

/* ============================================= */
/* BUTTONS                                       */
/* ============================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font); font-weight: 600; font-size: 0.9375rem; padding: 0.75rem 1.75rem; border-radius: var(--radius-pill); border: 2px solid transparent; cursor: pointer; transition: color var(--transition), background-color var(--transition), box-shadow var(--transition), transform var(--transition); white-space: nowrap; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-primary:hover { background: var(--purple-light); border-color: var(--purple-light); color: var(--white); }
.btn-ghost { background: transparent; color: var(--black); border-color: var(--black); }
.btn-ghost:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost-white:hover { background: var(--white); color: var(--black); }
.btn-sm { font-size: 0.8125rem; padding: 0.5rem 1.25rem; }
.btn-lg { font-size: 1.0625rem; padding: 1rem 2.25rem; }

/* ============================================= */
/* NAVIGATION                                    */
/* ============================================= */
.nav-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background-color var(--transition), box-shadow var(--transition), top var(--transition); background: rgba(255,255,255,0); }
.nav-header.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.nav-header.hidden { top: -100px; }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 2rem; height: 72px; }
.nav-logo a { display: flex; align-items: center; gap: 0.5rem; }
.logo-img { height: 36px; width: auto; object-fit: contain; }
.nav-list { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; font-size: 0.9375rem; font-weight: 500; color: var(--gray-800); padding: 0.5rem 1.25rem; background: none; border: none; cursor: pointer; font-family: var(--font); transition: color var(--transition); }
.nav-link:hover { color: var(--purple); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-signin { padding: 0.5rem 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

/* Mega Menu */
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 720px; background: var(--white); border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.12); opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); padding: 2rem; margin-top: 0.5rem; }
.nav-item.has-mega:hover .mega-menu, .nav-item.has-mega .mega-menu.active { opacity: 1; visibility: visible; }
.mega-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; }
.mega-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 1rem; }
.mega-link { display: block; font-size: 0.9375rem; color: var(--gray-800); padding: 0.375rem 0; transition: color var(--transition); }
.mega-link:hover { color: var(--purple); }
.mega-promo-card { background: var(--sage); border-radius: var(--radius-md); padding: 1.5rem; }
.mega-promo-card h4 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--black); }
.mega-promo-card p { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.5; }

/* Mobile Drawer */
.mobile-drawer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200; pointer-events: none; }
.mobile-drawer.open { pointer-events: all; }
.drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.44); opacity: 0; transition: opacity var(--transition); }
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; width: 320px; max-width: 85vw; height: 100%; background: var(--white); transform: translateX(100%); transition: transform 0.35s ease; padding: 2rem; overflow-y: auto; }
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close { position: absolute; top: 1rem; right: 1.5rem; font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--gray-600); line-height: 1; }
.drawer-nav { display: flex; flex-direction: column; margin-top: 3rem; }
.drawer-link { font-size: 1.125rem; font-weight: 500; padding: 0.875rem 0; border-bottom: 1px solid var(--gray-200); color: var(--black); }
.drawer-link:hover { color: var(--purple); }
.drawer-divider { height: 1px; background: var(--gray-200); margin: 0.5rem 0; }

/* ============================================= */
/* HERO SECTION                                  */
/* ============================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(26,26,26,0.55) 50%, rgba(26,26,26,0.8) 100%); }
.hero-content { position: relative; z-index: 2; text-align: left; padding: 2rem; width: 100%; max-width: var(--container); }
.hero-pretitle { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; }

/* Rotating text */
.hero-rotating-wrap { display: inline-block; height: 1.15em; overflow: hidden; vertical-align: bottom; position: relative; }
.hero-rotating { display: flex; flex-direction: column; animation: heroTextCycle 16s ease-in-out infinite; }
.hero-word { display: block; height: 1.15em; line-height: 1.15; color: var(--teal); font-style: italic; font-weight: 300; }
@keyframes heroTextCycle {
  0%, 2%    { transform: translateY(0%); }
  10%, 14%  { transform: translateY(-12.5%); }
  22%, 26%  { transform: translateY(-25%); }
  34%, 38%  { transform: translateY(-37.5%); }
  46%, 50%  { transform: translateY(-50%); }
  58%, 62%  { transform: translateY(-62.5%); }
  70%, 74%  { transform: translateY(-75%); }
  82%, 100% { transform: translateY(-87.5%); }
}
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.375rem); color: rgba(255,255,255,0.85); font-weight: 300; margin-bottom: 2.5rem; line-height: 1.5; }
.hero-actions { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }

/* ============================================= */
/* SEARCH BAR                                    */
/* ============================================= */
.search-section { position: relative; z-index: 10; margin-top: -3rem; padding: 0 2rem; max-width: 1100px; margin-left: auto; margin-right: auto; }
.search-tabs { display: flex; gap: 0; margin-bottom: -1px; padding-left: 1rem; }
.search-tab { font-family: var(--font); font-size: 0.875rem; font-weight: 500; padding: 0.75rem 1.5rem; background: rgba(255,255,255,0.7); border: none; border-radius: var(--radius-sm) var(--radius-sm) 0 0; cursor: pointer; color: var(--gray-600); transition: background var(--transition), color var(--transition); }
.search-tab.active { background: var(--white); color: var(--purple); font-weight: 600; }
.search-tab:hover:not(.active) { background: rgba(255,255,255,0.9); }
.search-bar { display: flex; align-items: center; background: var(--white); border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg); box-shadow: 0 8px 40px rgba(0,0,0,0.12); padding: 0.5rem; gap: 0; }
.search-field { flex: 1; display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; }
.search-icon { width: 20px; height: 20px; color: var(--gray-400); flex-shrink: 0; }
.search-input { width: 100%; border: none; outline: none; font-family: var(--font); font-size: 0.9375rem; color: var(--black); background: transparent; }
.search-input::placeholder { color: var(--gray-400); }
.search-select { width: 100%; border: none; outline: none; font-family: var(--font); font-size: 0.9375rem; color: var(--black); background: transparent; cursor: pointer; appearance: none; -webkit-appearance: none; }
.search-divider { width: 1px; height: 32px; background: var(--gray-200); flex-shrink: 0; }
.search-btn { flex-shrink: 0; border-radius: var(--radius-md); padding: 0.875rem 1.5rem; }

/* ============================================= */
/* CATEGORY CARDS                                */
/* ============================================= */
.categories-section { padding: var(--section-pad) 0; }
.categories-scroll { display: flex; gap: 1.5rem; overflow-x: auto; padding: 1rem 2rem 2rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.categories-scroll::-webkit-scrollbar { display: none; }
.category-card { flex-shrink: 0; width: 280px; background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); scroll-snap-align: start; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.category-img-wrap { height: 200px; overflow: hidden; }
.category-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover .category-img-wrap img { transform: scale(1.05); }
.category-content { padding: 1.5rem; }
.category-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.category-content p { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.5; }
.category-link { font-size: 0.875rem; font-weight: 600; color: var(--purple); display: inline-flex; align-items: center; gap: 0.5rem; }
.category-link .arrow { transition: transform var(--transition); }
.category-link:hover .arrow { transform: translateX(4px); }

/* ============================================= */
/* HOW IT WORKS                                  */
/* ============================================= */
.how-section { padding: var(--section-pad) 0; background: var(--gray-100); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.step-number { font-size: 3rem; font-weight: 700; color: var(--sage); line-height: 1; margin-bottom: 1.5rem; }
.step-card h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-card p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================= */
/* FEATURED GRID                                 */
/* ============================================= */
.featured-section { padding: var(--section-pad) 0; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; }
.featured-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); min-height: 360px; }
.featured-card--large { grid-row: 1 / 3; }
.featured-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.6s ease; }
.featured-card:hover img { transform: scale(1.03); }
.featured-card-content { position: relative; z-index: 2; padding: 2.5rem; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%); }
.featured-card-content h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.featured-card-content h3 .accent { color: var(--teal); }
.featured-card-content p { font-size: 0.9375rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; max-width: 380px; line-height: 1.5; }

/* ============================================= */
/* TRUST / STATS                                 */
/* ============================================= */
.trust-section { padding: var(--section-pad) 0; background: var(--sage); }
.trust-stats { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: var(--purple); line-height: 1; display: inline-block; }
.stat-plus { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--purple); }
.stat-label { display: block; font-size: 0.875rem; color: var(--gray-600); margin-top: 0.5rem; font-weight: 500; }
.stat-divider { width: 1px; height: 60px; background: rgba(0,0,0,0.12); }

/* ============================================= */
/* CULTURAL INSET BLOCK                          */
/* ============================================= */
.cultural-inset-block {
  border-left: 4px solid var(--teal) !important;
  padding: 1.25rem 1.5rem;
  background: var(--teal-pale) !important;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
}
.cultural-inset-block p {
  font-size: 0.9375rem;
  color: var(--black);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.cultural-inset-block p:last-child { margin-bottom: 0; }

/* ============================================= */
/* SPECIALTY TAGS                                */
/* ============================================= */
.tags-section { padding: var(--section-pad) 0; background: var(--gray-100); }
.tags-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; max-width: 800px; margin: 0 auto; }
.tag-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-pill); font-size: 0.9375rem; font-weight: 500; color: var(--black); transition: all var(--transition); }
.tag-pill:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(123,94,167,0.15); }
.tag-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ============================================= */
/* CTA BANNER                                    */
/* ============================================= */
.cta-section { position: relative; min-height: 500px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: -1; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(123,94,167,0.85) 0%, rgba(107,142,142,0.8) 100%); }
.cta-content { position: relative; z-index: 2; text-align: center; padding: 4rem 2rem; max-width: 700px; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.cta-content p { font-size: 1.125rem; color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; line-height: 1.6; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================= */
/* FAQ ACCORDION                                 */
/* ============================================= */
.faq-section { padding: var(--section-pad) 0; }
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font); font-size: 1.125rem; font-weight: 600; color: var(--black); transition: color var(--transition); }
.faq-question:hover { color: var(--purple); }
.faq-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100); font-size: 1.25rem; font-weight: 400; flex-shrink: 0; transition: background var(--transition), transform var(--transition); }
.faq-item.open .faq-icon { background: var(--purple); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; }

/* ============================================= */
/* FOOTER                                        */
/* ============================================= */
.footer { background: var(--black); color: var(--white); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-top: 1rem; line-height: 1.6; max-width: 280px; }
.footer-logo { height: 32px; width: auto; object-fit: contain; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); transition: background var(--transition), color var(--transition); }
.social-link:hover { background: var(--purple); color: var(--white); }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.25rem; color: rgba(255,255,255,0.9); }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55); padding: 0.375rem 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* ============================================= */
/* SCROLL REVEAL                                 */
/* ============================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease calc(var(--delay, 0s)), transform 0.6s ease calc(var(--delay, 0s)); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================= */
/* ABOUT PAGE — VIDEO HERO                       */
/* ============================================= */
.video-hero { position: relative; height: 700px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
.video-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.video-hero .hero-overlay { background: linear-gradient(rgba(255,255,255,0) 0%, rgba(36,36,36,0.6) 50%, rgba(0,0,0,0.75) 85%); z-index: 1; }
.video-hero-content { position: relative; z-index: 3; text-align: center; padding: 4rem 2rem; max-width: 750px; }
.video-hero-content .hero-pretitle { color: var(--teal); }
.video-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; color: var(--white); line-height: 1.2; }

/* ============================================= */
/* FOR PRACTITIONERS PAGE                        */
/* ============================================= */
.prac-hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(180deg, var(--sage) 0%, var(--cream) 100%); }
.prac-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: var(--container); margin: 0 auto; padding: 6rem 2rem 4rem; }
.prac-hero-content h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.prac-hero-content h1 .accent { color: var(--teal-dark); font-weight: 300; font-style: italic; }
.prac-hero-content p { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 2rem; line-height: 1.6; max-width: 480px; }
.prac-hero-img { border-radius: var(--radius-xl); overflow: hidden; height: 500px; }
.prac-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.prac-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: var(--container); margin: -3rem auto 0; padding: 0 2rem; position: relative; z-index: 2; }
.prac-feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: transform var(--transition), box-shadow var(--transition); }
.prac-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.prac-feature-card h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.75rem; }
.prac-feature-card h3 .accent { color: var(--teal-dark); }
.prac-feature-card p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1.5rem; }

/* ============================================= */
/* DIRECTORY / FIND PROFESSIONAL                 */
/* ============================================= */
.directory-hero { position: relative; height: 400px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.directory-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.directory-hero .hero-overlay { z-index: 1; }
.directory-hero-content { position: relative; z-index: 3; text-align: center; padding: 2rem; }
.directory-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.directory-hero-content p { font-size: 1.125rem; color: rgba(255,255,255,0.85); }
.directory-content { padding: 3rem 0 var(--section-pad); }
.directory-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.filter-sidebar { position: sticky; top: 90px; align-self: start; }
.filter-group { margin-bottom: 2rem; }
.filter-group h4 { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 0.75rem; }
.filter-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0; font-size: 0.9375rem; color: var(--gray-800); cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--purple); }
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.listing-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); display: block; color: var(--black); }
.listing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.listing-img { height: 200px; overflow: hidden; }
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.listing-card:hover .listing-img img { transform: scale(1.05); }
.listing-info { padding: 1.5rem; }
.listing-category { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--purple); background: rgba(123,94,167,0.1); padding: 0.25rem 0.75rem; border-radius: var(--radius-pill); margin-bottom: 0.75rem; }
.listing-info h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--black); }
.listing-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--gray-600); margin-bottom: 0.75rem; }
.listing-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.listing-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.75rem; }
.listing-tag { font-size: 0.75rem; padding: 0.25rem 0.625rem; background: var(--gray-100); border-radius: var(--radius-pill); color: var(--gray-600); }
.listing-rating { display: flex; align-items: center; gap: 0.25rem; color: var(--warm-gold); font-size: 0.875rem; font-weight: 600; }

/* ============================================= */
/* PROFILE PAGE                                  */
/* ============================================= */
.profile-hero { position: relative; height: 350px; overflow: hidden; margin-top: 72px; }
.profile-hero img { width: 100%; height: 100%; object-fit: cover; }
.profile-hero .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%); z-index: 1; }
.profile-header { position: relative; z-index: 3; max-width: var(--container); margin: -80px auto 0; padding: 0 2rem; }
.profile-header-inner { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 2rem; }
.profile-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.12); flex-shrink: 0; }
.profile-title h1 { font-size: 1.75rem; font-weight: 700; }
.profile-title .profile-specialty { font-size: 0.9375rem; color: var(--purple); font-weight: 500; display: block; }
.profile-title .profile-location { font-size: 0.875rem; color: var(--gray-600); display: flex; align-items: center; gap: 0.25rem; margin-top: 0.25rem; }
.profile-actions { margin-left: auto; display: flex; gap: 0.75rem; flex-shrink: 0; }
.profile-body { max-width: var(--container); margin: 2rem auto; padding: 0 2rem; display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.profile-section { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 1.5rem; }
.profile-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-200); }
.profile-section p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--gray-100); }
.hours-table td { padding: 0.625rem 0; font-size: 0.875rem; }
.hours-table td:first-child { font-weight: 600; color: var(--black); }
.hours-table td:last-child { text-align: right; color: var(--gray-600); }
.hours-open { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; font-weight: 600; color: var(--teal-dark); margin-bottom: 0.75rem; }
.hours-open::before { content: ''; width: 8px; height: 8px; background: var(--teal-dark); border-radius: 50%; }
.profile-sidebar .booking-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; position: sticky; top: 90px; margin-bottom: 1.5rem; }
.booking-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.5rem; }
.booking-card .btn { width: 100%; margin-bottom: 0.75rem; }

/* ============================================= */
/* CONTACT PAGE                                  */
/* ============================================= */
.contact-section { padding: calc(72px + var(--section-pad)) 0 var(--section-pad); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.contact-info h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.contact-info h1 .accent { color: var(--teal-dark); }
.contact-info > p { font-size: 1.0625rem; color: var(--gray-600); margin-bottom: 2.5rem; line-height: 1.6; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 2rem; }
.contact-detail-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--purple); }
.contact-detail h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-detail p { font-size: 0.875rem; color: var(--gray-600); }
.contact-form { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label, .form-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--black); }
.form-input { width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.9375rem; color: var(--black); transition: border-color var(--transition), box-shadow var(--transition); background: var(--white); }
.form-input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(123,94,167,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-input { min-height: 140px; resize: vertical; }

/* ============================================= */
/* TEAM (About page)                             */
/* ============================================= */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.team-member { text-align: center; }
.team-avatar { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 3px solid var(--sage); }
.team-member h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-member p { font-size: 0.8125rem; color: var(--gray-600); }

/* ============================================= */
/* GALLERY                                       */
/* ============================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1rem; }
.gallery-grid img { width: 100%; height: 150px; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; transition: opacity var(--transition); }
.gallery-grid img:hover { opacity: 0.85; }

/* ============================================= */
/* SERVICES LIST                                 */
/* ============================================= */
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.5rem; }
.service-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; padding: 0.5rem 0; color: var(--gray-800); }
.service-item::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ============================================= */
/* 404                                           */
/* ============================================= */
.error-404-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: calc(var(--section-pad) + 72px) 2rem var(--section-pad); }
.error-404-number { font-size: 7rem; font-weight: 700; color: var(--gray-200); line-height: 1; margin-bottom: 1.5rem; }
.error-404-inner h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.error-404-inner h1 .accent { color: var(--teal-dark); }
.error-404-inner p { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 2.5rem; }
.error-404-actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }

/* ============================================= */
/* GENERIC PAGE                                  */
/* ============================================= */
.page-content-section { padding: calc(var(--section-pad) + 72px) 0 var(--section-pad); }
.page-content-section h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.page-content-section .entry-content { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.85; }

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn, .nav-signin { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card--large { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .prac-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .prac-hero-content p { max-width: 100%; margin: 0 auto 2rem; }
  .prac-hero-content .hero-actions { justify-content: center; }
  .prac-hero-img { height: 350px; }
  .prac-features { grid-template-columns: 1fr; }
  .directory-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 1rem; }
  .filter-group { flex: 1; min-width: 200px; }
  .profile-body { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr !important; }
  .trust-stats { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .search-bar { flex-direction: column; border-radius: var(--radius-lg); }
  .search-field { width: 100%; }
  .search-divider { width: 100%; height: 1px; }
  .search-btn { width: 100%; }
  .search-tabs { overflow-x: auto; scrollbar-width: none; }
  .category-card { width: 240px; }
  .footer-grid { grid-template-columns: 1fr; }
  .profile-header-inner { flex-direction: column; text-align: center; }
  .profile-actions { margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .resources-dropdown { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-actions { flex-direction: column; align-items: center; }
  .nav-inner { padding: 0.75rem 1rem; }
}

/* ── Fitness indicator SVG icons ─────────────────────────────────── */
.fitness-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--teal-pale);
  color: var(--teal-dark);
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}
.fi-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--teal-dark);
  flex-shrink: 0;
}
.fi-icon.half { background: linear-gradient(to right, var(--teal-dark) 50%, transparent 50%); }
.fi-icon.full { background: var(--teal-dark); }

/* ── Registration form responsive ───────────────────────────────── */
@media (max-width: 640px) {
  .reg-grid-2 { grid-template-columns: 1fr !important; }
  .reg-check-grid { grid-template-columns: 1fr !important; }
  .reg-wrap { padding: 2rem 1rem 4rem; }
}

/* ── Similar practitioners grid ──────────────────────────────────── */
@media (max-width: 900px) {
  .similar-pros-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 500px) {
  .similar-pros-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   PROFILE PAGE — Reference layout (profile-individual.html)
   ═══════════════════════════════════════════════════════════════════ */

/* --- Missing variables (declared again for safety) --- */
:root {
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
}

/* --- Breadcrumb bar --- */
.profile-breadcrumb { background:var(--gray-100); border-bottom:1px solid var(--gray-200); margin-top:72px; }
.profile-breadcrumb .container { padding-top:.75rem; padding-bottom:.75rem; }
.profile-breadcrumb-inner { font-size:.8125rem; color:var(--gray-400); display:flex; align-items:center; gap:.5rem; }
.profile-breadcrumb-inner a { color:var(--gray-400); }

/* --- Hero banner (full-width, no text overlay) --- */
.profile-hero-banner { width:100%; height:420px; position:relative; overflow:hidden; background:var(--sage); }
.profile-hero-banner img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.profile-hero-banner::after { content:''; position:absolute; bottom:0; left:0; right:0; height:120px; background:linear-gradient(to bottom,transparent,rgba(0,0,0,.15)); pointer-events:none; }

/* --- Profile info strip (name/meta row below hero) --- */
.profile-info-strip { background:var(--white); border-bottom:1px solid var(--gray-200); padding:0; }
.profile-info-inner { max-width:var(--container); margin:0 auto; padding:0 2rem; display:grid; grid-template-columns:1fr auto; gap:2rem; align-items:start; }
.profile-id { display:flex; align-items:flex-start; gap:1.25rem; padding:1.5rem 0; }
.profile-avatar-wrap { flex-shrink:0; margin-top:-42px; position:relative; z-index:2; }
.profile-avatar { width:90px; height:90px; border-radius:50%; object-fit:cover; border:4px solid var(--white); box-shadow:0 2px 12px rgba(0,0,0,.12); flex-shrink:0; }
.profile-verified { position:absolute; bottom:2px; right:2px; width:22px; height:22px; background:var(--teal-dark); border-radius:50%; border:2px solid var(--white); display:flex; align-items:center; justify-content:center; }
.profile-name-block { padding-top:.375rem; }
.profile-name-block h1 { font-size:1.625rem; font-weight:700; letter-spacing:-.02em; line-height:1.2; color:var(--black); margin:0; }
.profile-designation { font-size:.9375rem; font-weight:600; color:var(--teal-dark); margin-top:.25rem; }
.profile-meta { display:flex; align-items:center; gap:.75rem; flex-wrap:wrap; margin-top:.625rem; }
.profile-meta-item { display:flex; align-items:center; gap:5px; font-size:.875rem; color:var(--gray-600); }
.profile-badge { display:inline-flex; align-items:center; gap:4px; font-size:.75rem; font-weight:700; padding:3px 10px; border-radius:var(--radius-pill); }
.profile-badge.virtual { background:var(--teal-pale); color:var(--teal-dark); }
.profile-badge.inperson { background:var(--purple-pale); color:var(--purple); }
.profile-badge.both { background:var(--sage); color:var(--dark); }
.profile-badge.verified-badge { background:var(--teal-pale); color:var(--teal-dark); }
.profile-cultural-tags { display:flex; gap:6px; flex-wrap:wrap; margin-top:.625rem; }
.cultural-tag { font-size:.75rem; padding:3px 10px; border-radius:var(--radius-pill); background:var(--cream); color:var(--dark); font-weight:500; border:1px solid rgba(212,163,115,.3); }
.profile-actions { display:flex; align-items:center; gap:.75rem; padding-top:1.25rem; flex-shrink:0; }

/* --- Tab navigation bar --- */
.profile-tabs-bar { background:var(--white); border-bottom:2px solid var(--gray-200); position:sticky; top:72px; z-index:50; }
.profile-tabs-inner { max-width:var(--container); margin:0 auto; padding:0 2rem; display:flex; align-items:center; gap:0; overflow-x:auto; scrollbar-width:none; }
.profile-tabs-inner::-webkit-scrollbar { display:none; }
.profile-tab { padding:1rem 1.375rem; font-size:.9375rem; font-weight:600; color:var(--gray-600); border-bottom:2px solid transparent; margin-bottom:-2px; cursor:pointer; transition:all var(--transition); white-space:nowrap; text-decoration:none; display:block; }
.profile-tab.active { color:var(--purple); border-bottom-color:var(--purple); }
.profile-tab:hover:not(.active) { color:var(--black); border-bottom-color:var(--gray-200); }

/* --- Profile body layout (overrides old) --- */
.profile-body { max-width:var(--container); margin:0 auto; padding:2.5rem 2rem; display:grid; grid-template-columns:1fr 340px; gap:2.5rem; }
.profile-main {}
.profile-section { margin-bottom:2.5rem; padding-bottom:2.5rem; border-bottom:1px solid var(--gray-100); background:transparent; border:none; border-radius:0; box-shadow:none; }
.profile-section:last-child { border-bottom:none; }
.profile-section h2 { font-size:1.375rem; font-weight:700; margin-bottom:1.25rem; color:var(--black); }
.profile-section p { font-size:.9375rem; color:var(--gray-600); line-height:1.78; }

/* --- Pull quote --- */
.pull-quote { border-left:3px solid var(--purple); padding:1rem 1.375rem; background:var(--purple-pale); border-radius:0 var(--radius-sm) var(--radius-sm) 0; font-style:italic; font-size:1.125rem; color:var(--dark); line-height:1.65; margin:0 0 1.75rem; }

/* --- Credentials --- */
.cred-item { display:flex; gap:1rem; align-items:flex-start; padding:1rem 0; border-bottom:1px solid var(--gray-100); }
.cred-item:last-of-type { border-bottom:none; }
.cred-icon { width:44px; height:44px; border-radius:var(--radius-sm); background:var(--sage); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--purple); }
.cred-text h4 { font-size:.9375rem; font-weight:700; color:var(--black); }
.cred-text p { font-size:.8125rem; color:var(--gray-600); margin-top:2px; }

/* --- Profile tags --- */
.profile-tags { display:flex; gap:8px; flex-wrap:wrap; margin-top:.875rem; }
.profile-tag { font-size:.8125rem; padding:5px 14px; border-radius:var(--radius-pill); background:var(--purple-pale); color:var(--purple); font-weight:600; }
.profile-tag.teal { background:var(--teal-pale); color:var(--teal-dark); }

/* --- Services table --- */
.services-table { width:100%; border-collapse:collapse; margin-top:.5rem; }
.services-table th { font-size:.8125rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--gray-400); padding:.625rem 1rem; text-align:left; border-bottom:2px solid var(--gray-100); }
.services-table td { padding:1rem; border-bottom:1px solid var(--gray-100); font-size:.9375rem; vertical-align:top; }
.services-table tr:last-child td { border-bottom:none; }
.services-table .svc-name { font-weight:600; color:var(--black); }
.services-table .svc-price { font-weight:700; color:var(--purple); }
.badge-virtual { display:inline-flex; align-items:center; gap:4px; font-size:.75rem; font-weight:600; color:var(--teal-dark); background:var(--teal-pale); padding:3px 10px; border-radius:var(--radius-pill); }
.badge-inperson { display:inline-flex; align-items:center; gap:4px; font-size:.75rem; font-weight:600; color:var(--purple); background:var(--purple-pale); padding:3px 10px; border-radius:var(--radius-pill); }

/* --- Gallery grid --- */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:.75rem; margin-top:.5rem; }
.gallery-grid img { border-radius:var(--radius-sm); aspect-ratio:4/3; object-fit:cover; width:100%; transition:transform .3s; cursor:pointer; }
.gallery-grid img:hover { transform:scale(1.02); }

/* --- Recommendation cards --- */
.recommendation-card { background:var(--gray-100); border-radius:var(--radius-md); padding:1.25rem; display:flex; gap:1rem; align-items:flex-start; border:1px solid var(--gray-200); transition:all var(--transition); }
.recommendation-card:hover { border-color:var(--sage); }
.rec-badge { background:var(--teal-pale); border-radius:var(--radius-sm); padding:.5rem; flex-shrink:0; color:var(--teal-dark); }
.rec-info h4 { font-size:.9375rem; font-weight:700; }
.rec-info p { font-size:.875rem; color:var(--gray-600); margin-top:.25rem; }
.rec-info .rec-quote { font-size:.875rem; font-style:italic; color:var(--gray-600); margin-top:.5rem; border-left:2px solid var(--sage); padding-left:.75rem; }

/* --- Sidebar --- */
.profile-sidebar {}
.booking-card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-lg); padding:1.5rem; box-shadow:var(--shadow-sm); position:sticky; top:140px; }
.booking-card h3 { font-size:1.125rem; font-weight:700; margin-bottom:.25rem; }
.booking-card .booking-subtitle { font-size:.875rem; color:var(--gray-600); margin-bottom:1.5rem; }
.booking-status { display:flex; align-items:center; gap:6px; font-size:.875rem; font-weight:600; margin-bottom:1.25rem; color:var(--black); }
.booking-status .dot { width:8px; height:8px; border-radius:50%; background:var(--teal-dark); flex-shrink:0; }
.booking-status.limited .dot { background:var(--coral); }
.booking-status.waitlist .dot { background:var(--gray-400); }
.avail-grid { display:flex; flex-direction:column; gap:.5rem; margin-bottom:1.5rem; }
.avail-row { display:flex; align-items:center; justify-content:space-between; font-size:.875rem; }
.avail-day { font-weight:600; color:var(--black); min-width:85px; }
.avail-badges { display:flex; gap:4px; flex-wrap:wrap; }
.avail-badge { font-size:.6875rem; font-weight:600; padding:2px 8px; border-radius:var(--radius-pill); background:var(--teal-pale); color:var(--teal-dark); }
.booking-divider { height:1px; background:var(--gray-100); margin:1.25rem 0; }
.booking-price-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:1rem; }
.booking-price-label { font-size:.875rem; color:var(--gray-600); }
.booking-price-val { font-size:1.25rem; font-weight:700; color:var(--black); }
.booking-card .btn { width:100%; justify-content:center; margin-bottom:.625rem; display:flex; }
.booking-note { font-size:.8125rem; color:var(--gray-400); text-align:center; margin-top:.5rem; }
.sidebar-card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-lg); padding:1.25rem; margin-top:1.25rem; }
.sidebar-card h4 { font-size:.9375rem; font-weight:700; margin-bottom:1rem; color:var(--black); }
.contact-row { display:flex; gap:.5rem; margin-bottom:.5rem; font-size:.875rem; }
.contact-row strong { color:var(--black); min-width:70px; flex-shrink:0; }
.contact-row span, .contact-row a { color:var(--gray-600); }
.contact-row a:hover { color:var(--purple); }

/* --- Fitness indicator (profile version) --- */
.fitness-indicator { display:inline-flex; align-items:center; gap:.35rem; font-size:.75rem; font-weight:600; letter-spacing:.03em; background:var(--teal-pale); color:var(--teal-dark); padding:3px 10px; border-radius:var(--radius-pill); }
.fi-icon { display:inline-block; width:12px; height:12px; border-radius:50%; border:2px solid var(--teal-dark); flex-shrink:0; }
.fi-icon.half { background:linear-gradient(to right, var(--teal-dark) 50%, transparent 50%); }
.fi-icon.full { background:var(--teal-dark); }

/* --- Button additions --- */
.btn-outline-sage { background:transparent; color:var(--dark); border-color:var(--sage); }
.btn-outline-sage:hover { background:var(--sage); }

/* --- Profile page responsive --- */
@media (max-width: 1024px) {
  .profile-body { grid-template-columns:1fr 300px; }
}
@media (max-width: 768px) {
  .profile-hero-banner { height:280px; }
  .profile-info-inner { grid-template-columns:1fr; }
  .profile-body { grid-template-columns:1fr; padding:1.5rem 1rem; }
  .profile-tabs-inner { padding:0 1rem; }
  .profile-actions { padding-top:0; padding-bottom:1.5rem; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .booking-card { position:static; }
}
@media (max-width: 480px) {
  .profile-hero-banner { height:200px; }
  .profile-avatar-wrap { margin-top:-28px; }
  .profile-avatar { width:70px; height:70px; }
  .profile-name-block h1 { font-size:1.25rem; }
  .gallery-grid { grid-template-columns:1fr; }
  .services-table { font-size:.8125rem; }
  .services-table th, .services-table td { padding:.625rem .5rem; }
}

.stats-framing {
  font-style: italic;
  text-align: center;
  color: var(--gray-400);
  max-width: 640px;
  margin: 2rem auto 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   DIRECTORY V2 — Pill bar, sort bar, card v2, sidebar filters
   ═══════════════════════════════════════════════════════════════════ */

/* ── Pill bar ─────────────────────────────────────────────────────── */
.pill-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.875rem 0;
}
.pill-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pill-bar-inner::-webkit-scrollbar { display: none; }

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: var(--font);
}
.filter-pill.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.filter-pill:hover:not(.active) {
  border-color: var(--purple);
  color: var(--purple);
}

/* ── Sort / count bar ─────────────────────────────────────────────── */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.sort-bar-count {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
}
.sort-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.sort-bar-right select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.875rem;
  font-size: 0.875rem;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

/* ── Sidebar filter labels and tabs ──────────────────────────────── */
.filter-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  display: block;
}
.filter-tab-row {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  font-family: var(--font);
  transition: background var(--transition), color var(--transition);
}
.filter-tab.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.filter-tab:hover:not(.active) {
  border-color: var(--purple);
  color: var(--purple);
}

/* ── Status badges ────────────────────────────────────────────────── */
.status--accepting {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--teal-pale);
  color: var(--teal-dark);
}
.status--limited {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--warm-gold);
}
.status--waitlist {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  color: var(--gray-600);
}

/* ── Listing card v2 ──────────────────────────────────────────────── */
.listing-card-v2 {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--black);
  text-decoration: none;
}
.listing-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}

.listing-card-img {
  position: relative;
  height: 180px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  flex-shrink: 0;
}
.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.listing-card-v2:hover .listing-card-img img {
  transform: scale(1.05);
}

.listing-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
  white-space: nowrap;
}

.listing-card-avatar {
  position: absolute;
  bottom: -26px;
  left: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  z-index: 3;
  overflow: hidden;
  flex-shrink: 0;
}
.listing-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.listing-card-body {
  padding: 2.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.listing-card-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.listing-card-creds {
  font-size: 0.8125rem;
  color: var(--teal-dark);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.listing-card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
}

.listing-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}

.listing-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
}

.pill-virtual {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.pill-inperson {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  background: transparent;
}

/* ── Fitness pill in card ─────────────────────────────────────────── */
.fitness-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-pale);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

/* ── Profile badge — verified (CSS var override for hardcoded hex) ─ */
.profile-badge.verified-badge { background: var(--teal-pale); color: var(--teal-dark); }
.booking-status .dot { background: var(--teal-dark); }

/* ── Responsive — listing cards v2 ───────────────────────────────── */
@media (max-width: 1024px) {
  .pill-bar-inner { padding: 0 1rem; }
}
@media (max-width: 768px) {
  .sort-bar { flex-direction: column; align-items: flex-start; }
  .listing-card-img { height: 160px; }
}
@media (max-width: 480px) {
  .listing-card-footer { flex-direction: column; align-items: flex-start; }
  .listing-card-footer .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   PROFILE BUILD V2 — April 2026
   ═══════════════════════════════════════════════════════════════════ */

/* ── Directory hero text ── */
.directory-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 3rem;
  z-index: 2;
}
.directory-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
  text-align: left;
}
.directory-hero-text h1 em {
  color: var(--teal);
  font-style: italic;
}
.directory-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-top: 0.75rem;
  font-weight: 400;
}

/* ── Profile quote (philosophy) ── */
.profile-quote {
  background: var(--purple-pale);
  border-left: 3px solid var(--purple);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 0 0 1.5rem;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--black);
}

/* ── Cultural approach box ── */
.cultural-approach-box {
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.cultural-approach-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}
.cultural-approach-box p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}

/* ── Wellness activities ── */
.wellness-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin: 2rem 0 0.75rem;
}
.wellness-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wellness-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ── Profile fitness row ── */
.profile-fitness-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 0.375rem;
}

/* ── Fitness pills in card ── */
.fitness-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
}

/* ── Accepting / status badges ── */
.accepting-row {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0.75rem 0 1rem;
}
.accepting-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  background: var(--teal);
}
.status--accepting .accepting-dot { background: var(--teal); color: var(--teal-dark); }
.status--limited  .accepting-dot  { background: var(--warm-gold); }
.status--waitlist .accepting-dot  { background: var(--teal-dark); }
.status--accepting { color: var(--teal-dark); }
.status--limited   { color: var(--warm-gold); }
.status--waitlist  { color: var(--teal-dark); }

/* ── Availability table in booking card ── */
.availability-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.availability-table td {
  padding: 5px 0;
  font-size: 0.8125rem;
  vertical-align: top;
}
.availability-table td:first-child {
  color: var(--gray-600);
  width: 100px;
}
.availability-table td:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.avail-pill {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}
.not-avail {
  color: var(--gray-400);
  font-style: italic;
}

/* ── Sessions from row ── */
.sessions-from-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 0.75rem;
}
.sessions-from-row span { font-size: 0.875rem; color: var(--gray-600); }
.sessions-from-row strong { font-size: 1.5rem; font-weight: 700; color: var(--black); }

/* ── Booking note ── */
.booking-note {
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── Recommendation badge (facility cards — no emoji) ── */
.recommendation-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--warm-gold);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ── Category badge on listing card ── */
.listing-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

/* ── Listing card v2 ── */
.listing-card-v2 {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: visible;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.listing-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.listing-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-card-avatar {
  position: absolute;
  bottom: -26px;
  left: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  z-index: 3;
}
.listing-card-body {
  padding: 2.25rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.listing-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.25rem;
  line-height: 1.3;
}
.listing-card-creds {
  font-size: 0.8125rem;
  margin: 0 0 0.5rem;
}
.listing-card-desc {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.listing-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.875rem;
}
.listing-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
  padding-top: 0.875rem;
  gap: 0.5rem;
}
.listing-card-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.pill-virtual {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--teal);
  color: var(--teal);
}
.pill-inperson {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
}

/* ── Pill bar (top filter bar) ── */
.pill-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.875rem 0;
}
.pill-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-pill {
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all var(--transition);
  font-family: var(--font);
}
.filter-pill:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.filter-pill.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

/* ── Sort bar ── */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.sort-bar-count {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
}
.sort-bar select {
  font-size: 0.875rem;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.75rem;
  background: var(--white);
  font-family: var(--font);
  cursor: pointer;
}

/* ── Filter sidebar labels and tabs ── */
.filter-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.375rem;
}
.filter-tab-row {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--purple); color: var(--purple); }
.filter-tab.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

/* ── Gallery placeholder ── */
.gallery-placeholder {
  grid-column: 1/-1;
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9375rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .directory-hero-text { padding-left: 1.5rem; }
  .directory-hero-text h1 { font-size: 1.75rem; }
  .listing-card-footer { flex-direction: column; align-items: flex-start; }
  .sessions-from-row strong { font-size: 1.25rem; }
  .pill-bar-inner { padding: 0 1rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   TABBED MEGA-MENU — Find a Professional
   ═══════════════════════════════════════════════════════════════════ */

.mega-menu--wide { min-width: 680px; }

.mega-inner--tabbed {
  display: flex;
  gap: 0;
  padding: 0;
}

.mega-tabs {
  width: 185px;
  flex-shrink: 0;
  border-right: 1px solid var(--gray-200);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
}

.mega-tab {
  background: none;
  border: none;
  border-left: 2px solid transparent;
  text-align: left;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition), border-left-color var(--transition);
}

.mega-tab.active {
  color: var(--purple);
  border-left-color: var(--purple);
  font-weight: 600;
}

.mega-tab:hover {
  color: var(--purple);
}

.mega-panels {
  flex: 1;
  padding: 1.5rem 2rem;
  min-height: 280px;
}

.mega-panel { display: none; }
.mega-panel.active { display: block; }

.mega-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1rem;
}

.mega-link--desc {
  display: flex;
  flex-direction: column;
}

.mega-link-title {
  font-weight: 500;
  color: var(--dark);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.mega-link-desc {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-top: 0.125rem;
}

.mega-link--desc:hover .mega-link-title { color: var(--purple); }

.mega-footer-bar {
  border-top: 1px solid var(--gray-200);
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.mega-footer-link {
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
}

.mega-footer-note { color: var(--gray-600); }

/* ═══════════════════════════════════════════════════════════════════
   RESOURCES PAGE — Inline divider
   ═══════════════════════════════════════════════════════════════════ */

.resources-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.5rem 0;
}

.resources-divider .divider-line {
  flex: 1;
  border: none;
  border-top: 1px solid var(--gray-200);
}

.resources-divider .divider-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  white-space: nowrap;
}

/* Resources dropdown */
.resources-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 260px; background: var(--white); border-radius: 0 0 var(--radius-sm) var(--radius-sm); box-shadow: 0 12px 40px rgba(0,0,0,0.10); opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); padding: 0.75rem 0; margin-top: 0.5rem; }
.nav-item.has-dropdown:hover .resources-dropdown { opacity: 1; visibility: visible; }
.dropdown-item { display: block; padding: 0.5rem 1.25rem; font-size: 0.875rem; color: var(--gray-800); transition: color var(--transition), background var(--transition); text-decoration: none; }
.dropdown-item:hover { color: var(--purple); background: var(--gray-100); }
.dropdown-divider { height: 1px; background: var(--gray-200); margin: 0.375rem 0; }
.dropdown-item--accent { color: var(--purple); font-weight: 600; }

/* Resources article list dots */
.resources-article-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.resources-article-list li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--gray-600); margin-bottom: 0.625rem; }
.dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot--purple { background: var(--purple); }
.dot--teal { background: var(--teal); }
.dot--orange { background: var(--orange); }
.dot--green { background: var(--green); }

/* Quote pull card */
.quote-pull-card { background: rgba(74,172,163,0.08); border: 0.5px solid rgba(74,172,163,0.22); border-radius: 12px; padding: 1.75rem; }
.quote-mark { font-size: 2.5rem; font-weight: 700; color: rgba(74,172,163,0.35); line-height: 0.8; margin-bottom: 0.75rem; font-family: Georgia, serif; }
.quote-text { font-size: 0.875rem; font-style: italic; color: #ffffff; line-height: 1.75; border: none; padding: 0; margin: 0; }
.quote-attribution { font-size: 0.6875rem; color: rgba(255,255,255,0.4); margin-top: 0.75rem; }

/* Event rows */
.event-row { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1rem 0; border-bottom: 0.5px solid var(--gray-200); }
.event-date { text-align: center; flex-shrink: 0; width: 44px; }
.event-month { font-size: 0.625rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-400); display: block; }
.event-day { font-size: 1.5rem; font-weight: 700; color: var(--black); line-height: 1; }
.event-title { font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 0.25rem; }
.event-meta { font-size: 0.8125rem; color: var(--gray-500, var(--gray-400)); }

/* Partner line */
.partner-line { font-size: 0.8125rem; font-style: italic; color: rgba(255,255,255,0.45); padding-top: 1rem; border-top: 0.5px solid rgba(255,255,255,0.12); margin-top: 1.25rem; }
.partner-line a { color: var(--teal); text-decoration: underline; }

/* About page */
.story-images { display: flex; flex-direction: column; gap: 10px; }
.story-img-wide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; display: block; }
.story-img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.story-img-pair img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; display: block; }
.community-list-plain { list-style: none; padding: 0; margin: 0.75rem 0; }
.community-list-plain li { font-size: 0.8125rem; color: var(--gray-600); padding: 0.625rem 0 0.625rem 1.25rem; border-bottom: 0.5px solid var(--gray-200); position: relative; }
.community-list-plain li::before { content: '—'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.community-list-plain li:last-child { border-bottom: none; }
.community-list-closing { font-size: 0.8125rem; font-style: italic; color: var(--teal); margin-top: 0.75rem; padding-top: 0.75rem; border-top: 0.5px solid var(--gray-200); }

/* ═══════════════════════════════════════════════════════════════════
   GALLERY TAB
   ═══════════════════════════════════════════════════════════════════ */

.gallery-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.gallery-media-grid .gallery-video-slot {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
}
.gallery-video-slot--empty {
  background: #1C2B3A;
  border: 0.5px solid var(--gray-200);
}
.gallery-video-slot--has-video { background: var(--black); }
.gallery-video-slot--has-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.gallery-video-play { line-height: 0; }
.gallery-video-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.gallery-video-sub {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  max-width: 200px;
  margin: 0;
  line-height: 1.5;
}
.gallery-photo-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-photo-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: opacity var(--transition);
}
.gallery-photo-item img:hover { opacity: 0.9; }
.gallery-photo-caption {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════
   RECOMMENDATIONS TAB
   ═══════════════════════════════════════════════════════════════════ */

.recommendations-panel { display: flex; flex-direction: column; gap: 0; }
.rec-intro-box {
  background: #F7F7F7;
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.rec-facility-card {
  display: flex;
  gap: 14px;
  border: 0.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.rec-facility-avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--gray-100);
  border: 0.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
  flex-shrink: 0;
}
.rec-facility-info { display: flex; flex-direction: column; gap: 3px; }
.rec-facility-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.rec-facility-meta {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin: 0;
}
.rec-endorsement-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: #FEF3C7;
  color: #B45309;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin: 4px 0;
  width: fit-content;
}
.rec-practitioner-note {
  font-size: 0.8125rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.6;
  margin: 4px 0;
}
.rec-view-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  margin-top: 2px;
}
.rec-empty {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-style: italic;
  padding: 1rem 0;
}
.rec-flywheel-box {
  background: rgba(78,205,196,0.06);
  border: 0.5px solid rgba(78,205,196,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 20px;
}
.rec-flywheel-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.rec-flywheel-text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   STAFF TAB (Facility profiles)
   ═══════════════════════════════════════════════════════════════════ */

.staff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.staff-card {
  display: flex;
  gap: 12px;
  border: 0.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px;
  align-items: flex-start;
}
.staff-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.staff-role {
  font-size: 0.8125rem;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 6px;
}
.staff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.staff-profile-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
}
@media (max-width: 640px) {
  .staff-grid { grid-template-columns: 1fr; }
  .gallery-media-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   ACTIVE VITALS BADGE
   ═══════════════════════════════════════════════════════════════════ */

.badge-vitals {
  background: var(--teal-pale);
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════
   AVATAR COLOUR CLASSES
   ═══════════════════════════════════════════════════════════════════ */

.avatar-blue   { background: #4A90A4; color: #fff; }
.avatar-teal   { background: #4AACA3; color: #fff; }
.avatar-orange { background: #E07B45; color: #fff; }
.avatar-purple { background: #7B5EA7; color: #fff; }
.avatar-green  { background: #3D7A5A; color: #fff; }
.avatar-gray   { background: #718096; color: #fff; }


/* 
 *    ABOUT  CHAPTER NAV (rounded frame + shortened dividers)
 *     */

nav[aria-label="Page chapters"] {
	  border: 1px solid #EAE5DC !important;
	  border-radius: 12px !important;
	  overflow: hidden;
}

nav[aria-label="Page chapters"] a {
	  border-right: none !important;
	  position: relative;
}

nav[aria-label="Page chapters"] a:not(:last-child)::after {
	  content: '';
	  position: absolute;
	  right: 0;
	  top: 50%;
	  transform: translateY(-50%);
	  height: 50%;
	  width: 1px;
	  background: #EAE5DC;
}
}
}
}