/* ============================================================
   Chiropractors â€” Industry Override
   Loads after base.css
   ============================================================ */

:root {
  --industry-hero-gradient: linear-gradient(135deg, #1a6b5a, #0d4a3e);
  --industry-surface-tint: #f0f9f6;
  --industry-icon-bg: linear-gradient(135deg, #1a6b5a, #0d4a3e);
  --industry-warm: #e8985a;
  --industry-stone: #5a7d6d;
}

/* Wellness-specific overrides */
.hero--wellness .hero__overlay {
  background: linear-gradient(
    160deg,
    rgba(74, 103, 65, 0.75) 0%,
    rgba(109, 139, 116, 0.45) 40%,
    rgba(212, 165, 116, 0.25) 100%
  );
}

/* Soft organic shapes â€” decorative */
.organic-shape {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  opacity: 0.06;
  pointer-events: none;
}

.organic-shape--1 {
  width: 500px;
  height: 500px;
  background: var(--brand-primary);
  top: -200px;
  right: -150px;
}

.organic-shape--2 {
  width: 350px;
  height: 350px;
  background: var(--industry-warm);
  bottom: -100px;
  left: -100px;
}

/* Wellness service cards â€” softer, rounder */
.service-card--wellness {
  border-radius: var(--border-radius-xl);
  border: none;
  background: var(--brand-surface);
  box-shadow: var(--shadow-sm);
}

.service-card--wellness .service-card__icon {
  background: var(--industry-icon-bg);
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

.service-card--wellness:hover {
  box-shadow: var(--shadow-lg);
}

.service-card--wellness::before {
  height: 0;
}

/* Pricing tiers */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.pricing-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out-expo);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 20px;
  border-radius: var(--border-radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__duration {
  font-size: var(--text-sm);
  color: var(--brand-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: var(--space-sm);
}

.pricing-card__description {
  font-size: var(--text-sm);
  color: var(--brand-text-muted);
  margin-bottom: var(--space-lg);
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.pricing-card__features li::before {
  content: 'âœ“';
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 12px;
}

/* Wellness modalities / specialties */
.modalities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-xl);
}

.modality-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--industry-surface-tint);
  border: 1px solid rgba(109, 139, 116, 0.2);
  border-radius: var(--border-radius-full);
  padding: 8px 20px;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--brand-text);
  transition: all var(--duration-base) var(--ease-out-quart);
}

.modality-tag:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

/* Booking widget placeholder */
.booking-widget {
  background: var(--brand-surface);
  border: 2px solid var(--brand-border);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.booking-widget__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--industry-surface-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--brand-primary);
}

/* Therapist profiles */
.therapist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.therapist-card {
  background: var(--brand-surface);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-base) var(--ease-out-expo);
}

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

.therapist-card__image {
  aspect-ratio: 3/4;
  background: var(--industry-surface-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--brand-primary);
  overflow: hidden;
}

.therapist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapist-card__body {
  padding: var(--space-xl);
}

.therapist-card__body h3 {
  font-size: var(--text-lg);
  margin-bottom: 4px;
}

.therapist-card__body .title {
  font-size: var(--text-sm);
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.therapist-card__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: var(--space-sm);
}

.therapist-card__specialties span {
  font-size: var(--text-xs);
  background: var(--industry-surface-tint);
  padding: 3px 10px;
  border-radius: var(--border-radius-full);
  color: var(--brand-text-muted);
}

/* Atmosphere / ambiance section */
.ambiance-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-md);
  height: 500px;
}

.ambiance-grid > :first-child {
  grid-row: 1 / -1;
}

.ambiance-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--industry-surface-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--brand-primary);
}

.ambiance-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .ambiance-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .ambiance-grid > :first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 250px;
  }
  .ambiance-item { min-height: 180px; }
}

/* Wellness-specific section order recommendation:
   1. Nav
   2. Hero with "Book a Session" CTA â€” serene, warm imagery
   3. Modalities/specialties tags
   4. Services grid with pricing
   5. About the practice / philosophy
   6. Therapist profiles
   7. Ambiance gallery
   8. Testimonials
   9. Pricing tiers (if not inline with services)
   10. CTA section (gift cards + booking)
   11. Contact + map + hours
   12. Footer
*/
