/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--soft-cloud);
  padding: calc(var(--nav-h) + 60px) 5% 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,160,3,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ph-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ph-text h1 { margin-bottom: 20px; }
.ph-desc { font-size: 16px; max-width: 460px; line-height: 1.85; }

.ph-cards { display: flex; flex-direction: column; gap: 16px; }
.ph-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226,225,225,0.7);
}
.pc-vision { }
.pc-mission { background: var(--charcoal); }
.pc-icon { font-size: 26px; margin-bottom: 12px; }
.ph-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.pc-mission h4 { color: white; }
.ph-card p { font-size: 13px; line-height: 1.7; }
.pc-mission ul { padding: 0; }
.pc-mission ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-mission ul li::before { content: '✦'; color: var(--leaf); font-size: 9px; flex-shrink: 0; }

/* ─── ABOUT INTRO ─── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.ai-ph {
  aspect-ratio: 3/3.5;
  border-radius: var(--radius-xl);
  /*background: linear-gradient(145deg, #1a3a06 0%, #3a6a10 50%, #6DA003 100%) !important;*/
  position: relative;
  box-shadow: var(--shadow-lg);
}
.ai-img-text {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  text-align: center;
  z-index: 2;
}
.ai-img-text p { font-size: 16px; font-weight: 700; color: white; }
.ai-img-text span { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; }

.ai-img { position: relative; }
.ai-float-card {
  position: absolute;
  top: 28px; right: -20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.afc-icon { font-size: 20px; color: var(--leaf); }
.ai-float-card strong { display: block; font-size: 13px; font-weight: 700; color: var(--charcoal); }
.ai-float-card small { font-size: 11px; color: var(--urban-stone); }

.ai-text h2 { margin-bottom: 20px; }
.ai-text p { font-size: 14px; }

/* ─── THERAPIST PROFILE ─── */
.therapist-profile {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  margin-top: 48px;
}

.tp-big {
  aspect-ratio: 3/3.8;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #1a3a06, #6DA003) !important;
  box-shadow: var(--shadow-lg);
}
.tp-center {
  text-align: center;
  position: relative;
  z-index: 1;
}
.tp-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 800; color: white;
  margin: 0 auto 16px;
}
.tp-center strong { display: block; font-size: 20px; font-weight: 700; color: white; margin-bottom: 4px; }
.tp-center span { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }

.tp-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.tp-stat {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226,225,225,0.7);
}
.tp-stat-green { background: var(--leaf); }
.tp-stat span {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--leaf);
  line-height: 1;
  margin-bottom: 4px;
}
.tp-stat-green span { color: white; }
.tp-stat small {
  font-size: 11px;
  color: var(--urban-stone);
  font-weight: 500;
  text-align: center;
}
.tp-stat-green small { color: rgba(255,255,255,0.8); }

.therapist-bio h3 { font-size: 22px; margin-bottom: 16px; }

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--soft-cloud);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.exp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--soft-cloud);
  border-right: 1px solid var(--soft-cloud);
  background: white;
  transition: background var(--transition), color var(--transition);
}
.exp-item:hover { background: var(--leaf-bg); color: var(--leaf-dark); }
.exp-dot {
  width: 8px; height: 8px;
  background: var(--leaf);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── TRUST CARDS ─── */
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-c {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  border: 1px solid rgba(226,225,225,0.7);	
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-c:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.trust-c-green { background: var(--leaf); border-color: var(--leaf); }
.tc-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--soft-cloud);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.tc-icon { font-size: 28px; margin-bottom: 14px; }
.trust-c h3 { font-size: 15px; margin-bottom: 10px; }
.trust-c p { font-size: 13px; line-height: 1.7; }

/* ─── INNER CTA ─── */
.inner-cta {
  background: var(--charcoal);
  padding: 90px 5%;
  text-align: center;
}
.inner-cta h2 { color: white; margin-bottom: 16px; }
.inner-cta > .container > p { color: rgba(255,255,255,0.55); margin-bottom: 36px; font-size: 16px; }
.ic-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── SERVICES PAGE ─── */
.tab-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--soft-cloud);
  background: white;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.tab-btn:hover { border-color: var(--leaf); }
.tab-btn.active { background: var(--leaf); border-color: var(--leaf); }
.tab-btn.active strong { color: white; }
.tab-btn.active small { color: rgba(255,255,255,0.75); }
.tab-btn.active .tb-icon { filter: brightness(10); }
.tb-icon { font-size: 22px; }
.tab-btn strong { display: block; font-size: 15px; font-weight: 700; color: var(--charcoal); text-align: left; }
.tab-btn small { display: block; font-size: 12px; color: var(--urban-stone); text-align: left; margin-top: 2px; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-desc-row {
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
  padding-bottom: 32px;
  flex-direction: row;	
}

.tab-desc-row h2 { margin-bottom: 12px; }
.tab-desc-row p { font-size: 14px; max-width: 500px; line-height: 1.85; }

/* 4 cols × 3 rows service grid */
.services-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(226,225,225,0.7);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-card.featured {
  grid-column: span 2;
}
.svc-img {
  width: 100%;
  aspect-ratio: 1/0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-card.featured .svc-img { aspect-ratio: 2/0.85; }
.svc-img-icon {
  font-size: 44px;
  z-index: 1;
  position: relative;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  transition: transform var(--transition);
}
.svc-card.featured .svc-img-icon { font-size: 64px; }
.svc-card:hover .svc-img-icon { transform: scale(1.12); }

.svc-body { padding: 18px 20px 22px; }
.svc-card.featured .svc-body { padding: 22px 26px 28px; }
.svc-body h3 { font-size: 16px; margin-bottom: 6px; }
.svc-card.featured .svc-body h3 { font-size: 20px; }
.svc-body p { font-size: 12px; line-height: 1.65; }
.svc-card.featured .svc-body p { font-size: 14px; }

.svc-tag {
  position: absolute;
  top: 12px; left: 12px;
}

/* Color themes for service cards */
.sc-c1  { background: linear-gradient(145deg, #b8e0f0, #6ab0d8); }
.sc-c2  { background: linear-gradient(145deg, #c8e8a8, #88c848); }
.sc-c3  { background: linear-gradient(145deg, #e8c8b0, #c88060); }
.sc-c4  { background: linear-gradient(145deg, #d0c8f0, #9880d8); }
.sc-c5  { background: linear-gradient(145deg, #f0d8b0, #d0a860); }
.sc-c6  { background: linear-gradient(145deg, #c0e8c0, #68c868); }
.sc-c7  { background: linear-gradient(145deg, #e8d0b8, #b88060); }
.sc-c8  { background: linear-gradient(145deg, #b8d8f0, #6890c8); }
.sc-c9  { background: linear-gradient(145deg, #d8e8b0, #a0c860); }
.sc-c10 { background: linear-gradient(145deg, #f0c8c0, #d88080); }
.sc-c11 { background: linear-gradient(145deg, #c8d8b0, #80a858); }
.sc-c12 { background: linear-gradient(145deg, #d0e8d0, #70b870); }

/* Approach steps */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.approach-steps::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(12.5% + 10px); right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(to right, var(--leaf), var(--leaf-light));
  z-index: 0;
  border-radius: 2px;
}
.approach-step {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 24px 32px;
  text-align: center;
  border: 1px solid rgba(226,225,225,0.7);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.approach-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.as-num {
  width: 44px; height: 44px;
  background: var(--leaf);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(109,160,3,0.35);
}
.approach-step h3 { font-size: 16px; margin-bottom: 10px; }
.approach-step p { font-size: 13px; }

/* ─── CONTACT PAGE ─── */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contact-info-blocks { display: flex; flex-direction: column; gap: 0; }
.cib {
  padding: 24px 0;
  border-bottom: 1px solid var(--soft-cloud);
}
.cib:last-child { border-bottom: none; }
.cib .eyebrow { margin-bottom: 14px; }

.therapist-id {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--leaf-bg);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  border: 1px solid rgba(109,160,3,0.2);
}
.tid-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--leaf);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  flex-shrink: 0;
}
.tid-avatar-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--charcoal); }
.tid-avatar-text small { display: block; font-size: 11px; color: var(--urban-stone); margin-top: 2px; }

.phone-cards { display: flex; flex-direction: column; gap: 12px; }
.phone-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1.5px solid var(--soft-cloud);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-decoration: none;
  transition: all var(--transition);
}
.phone-card:hover { border-color: var(--leaf); background: var(--leaf-bg); transform: translateX(6px); }
.ph-icon { font-size: 22px; }
.phone-card strong { display: block; font-size: 17px; font-weight: 800; color: var(--charcoal); letter-spacing: 0.03em; }
.phone-card small { display: block; font-size: 11px; color: var(--urban-stone); margin-top: 2px; }

.contact-link-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--transition);
  padding: 8px 0;
}
.contact-link-row:hover { color: var(--leaf); }
.contact-link-row .ico { font-size: 18px; }

.timing-cards { display: flex; flex-direction: column; gap: 10px; }
.timing-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: 1px solid var(--soft-cloud);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  transition: background var(--transition);
}
.timing-card:hover { background: var(--leaf-bg); }
.timing-card.sunday { border-left: 3px solid var(--leaf); }
.timing-card .day { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.timing-card .hours { font-size: 14px; font-weight: 700; color: var(--leaf); }

.svc-tags-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-tag-pill {
  background: var(--leaf-bg);
  color: var(--leaf-dark);
  border: 1px solid rgba(109,160,3,0.25);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  transition: all var(--transition);
}
.svc-tag-pill:hover { background: var(--leaf); color: white; border-color: var(--leaf); }

/* Map */
.map-col { display: flex; flex-direction: column; gap: 20px; }
.map-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226,225,225,0.7);
}
.map-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--leaf);
  color: white;
}
.map-header .ico { font-size: 22px; }
.map-header strong { display: block; font-size: 15px; font-weight: 700; }
.map-header small { display: block; font-size: 12px; opacity: 0.8; margin-top: 2px; }
.map-header-actions { margin-left: auto; }
.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: white;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition);
}
.map-open-link:hover { background: rgba(255,255,255,0.25); }

.map-frame iframe { display: block; width: 100%; border: none; }

.quick-book-card {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.quick-book-card h3 { color: white; font-size: 20px; margin-bottom: 12px; }
.quick-book-card p { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 24px; line-height: 1.8; }
.qb-btns { display: flex; flex-direction: column; gap: 12px; }
.qb-btns .btn { justify-content: center; }

.directions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.dir-card {
  background: white;
  border: 1px solid var(--soft-cloud);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition);
}
.dir-card:hover { background: var(--leaf-bg); border-color: rgba(109,160,3,0.3); transform: translateY(-4px); }
.dir-icon { font-size: 28px; flex-shrink: 0; }
.dir-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.dir-card small { font-size: 12px; color: var(--urban-stone); line-height: 1.5; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .trust-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .services-img-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-card.featured { grid-column: span 2; }
}

@media (max-width: 900px) {
  .ph-inner { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .ai-img { max-width: 380px; margin: 0 auto; }
  .therapist-profile { grid-template-columns: 1fr; }
  .therapist-photo-wrap { max-width: 400px; margin: 0 auto; }
  .trust-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .services-img-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card.featured { grid-column: span 2; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .approach-steps::before { display: none; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .directions-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .tab-desc-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .tab-desc-row .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .trust-cards-grid { grid-template-columns: 1fr; }
  .services-img-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card.featured { grid-column: span 2; }
  .approach-steps { grid-template-columns: 1fr 1fr; }
  .directions-row { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .tp-stat-row { grid-template-columns: repeat(3, 1fr); }
  
  .tab-controls {
    flex-direction: column;
    gap: 12px;
  }
  .tab-btn {
    width: 100%;
    justify-content: flex-start;
  }
  .ph-card { padding: 20px; }
  .quick-book-card { padding: 24px; }
  .trust-c { padding: 24px 20px; }
}

@media (max-width: 500px) {
  .approach-steps { grid-template-columns: 1fr; }
  .approach-step { padding: 28px 20px 24px; }
}

@media (max-width: 480px) {
  .services-img-grid { grid-template-columns: 1fr; }
  .svc-card.featured { grid-column: span 1; }
}
