/* ==========================================================================
   True Touch Wellness Massage — Presentation & Marketing Website Stylesheet
   Brand Aesthetic: Premium Mobile Massage Therapy (Sage Green, Cream, Gold)
   ========================================================================== */

/* ── Typography & Web Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Brand Color Palette */
  --sage-50: #F4F7F3;
  --sage-100: #E6EEE4;
  --sage-200: #CDDEC9;
  --sage-300: #A8C4A3;
  --sage-400: #88AE82;
  --sage-500: #6A9364;   /* Primary Brand Sage */
  --sage-600: #54774E;   /* Deep Sage */
  --sage-700: #3F5B3A;
  --sage-800: #2C4028;
  --sage-900: #1B2919;

  --cream-bg: #FAF7F2;     /* Warm Cream Base */
  --cream-subtle: #F3EFE7;
  --cream-surface: #FFFFFF;
  
  --gold-accent: #C5A059;  /* Champagne Gold CTA & Badges */
  --gold-hover: #B28E46;
  --gold-soft: rgba(197, 160, 89, 0.12);

  --text-primary: #1C241E; /* Deep Charcoal Slate */
  --text-secondary: #4A584F; /* Balanced Muted Green-Slate */
  --text-muted: #5A6B5F;  /* WCAG AA compliant (≥4.5:1 on cream-bg) */
  --text-light: #FAF7F2;

  --border-light: rgba(106, 147, 100, 0.16);
  --border-focus: rgba(106, 147, 100, 0.45);

  --shadow-xs: 0 1px 3px rgba(28, 36, 30, 0.05);
  --shadow-sm: 0 4px 12px rgba(28, 36, 30, 0.06);
  --shadow-md: 0 10px 28px rgba(28, 36, 30, 0.08);
  --shadow-lg: 0 20px 45px rgba(28, 36, 30, 0.12);
  --shadow-hover: 0 16px 36px rgba(84, 119, 78, 0.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --header-height: 104px;
}

/* ── Dark Mode Theme Overrides ── */
[data-theme="dark"] {
  /* Background surfaces — deep sage-tinted dark tones */
  --cream-bg: #121A14;
  --cream-subtle: #1A241C;
  --cream-surface: #1E2820;

  /* Sage greens — adjusted for dark backgrounds */
  --sage-50: #1A241C;
  --sage-100: #1E2E20;
  --sage-200: #2A3E2C;
  --sage-300: #3A5038;
  --sage-400: #5A8054;
  --sage-500: #6A9364;
  --sage-600: #7DAE76;
  --sage-700: #93C38C;
  --sage-800: #B8DAB3;
  --sage-900: #DCF0D8;

  /* Gold — slightly brighter for dark surfaces */
  --gold-accent: #D4AF37;
  --gold-hover: #E0BD4A;
  --gold-soft: rgba(212, 175, 55, 0.14);

  /* Text colors — light on dark */
  --text-primary: #E8F0E6;
  --text-secondary: #B0C4AC;
  --text-muted: #8FA68A;
  --text-light: #121A14;

  /* Borders and shadows — softer for dark mode */
  --border-light: rgba(147, 195, 140, 0.12);
  --border-focus: rgba(147, 195, 140, 0.35);

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.45);
  --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.4);
}

/* Smooth transition for theme switching */
[data-theme="dark"] body,
[data-theme="dark"] .site-header,
[data-theme="dark"] .topbar,
[data-theme="dark"] .site-footer {
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* ── Dark Mode: Header & Navigation ── */
[data-theme="dark"] .site-header {
  background-color: rgba(18, 26, 20, 0.94);
  border-bottom-color: rgba(147, 195, 140, 0.08);
}

[data-theme="dark"] .site-header.scrolled {
  background-color: rgba(24, 34, 26, 0.97);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .topbar {
  background-color: #0D130E;
  border-bottom-color: rgba(147, 195, 140, 0.06);
}

[data-theme="dark"] .mobile-nav-drawer {
  background: #1A241C;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(147, 195, 140, 0.08);
}

[data-theme="dark"] .mobile-nav-link {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* ── Dark Mode: Hero Section ── */
[data-theme="dark"] .hero-section {
  background: linear-gradient(180deg, rgba(18, 26, 20, 0.8) 0%, var(--cream-bg) 100%);
}

[data-theme="dark"] .trust-badge-pill {
  background-color: #1E2820;
  border-color: rgba(147, 195, 140, 0.15);
}

[data-theme="dark"] .hero-booking-card {
  background: #1E2820;
  border-color: rgba(147, 195, 140, 0.12);
}

[data-theme="dark"] .zip-input {
  background-color: #1A241C;
  border-color: rgba(147, 195, 140, 0.2);
  color: var(--text-primary);
}

[data-theme="dark"] .zip-input:focus {
  background-color: #222E24;
  box-shadow: 0 0 0 3px rgba(106, 147, 100, 0.2);
}

[data-theme="dark"] .hero-main-img-card {
  border-color: #2A3E2C;
}

[data-theme="dark"] .floating-badge {
  background: rgba(30, 40, 32, 0.95);
  border-color: rgba(147, 195, 140, 0.15);
}

/* ── Dark Mode: Trust Bar ── */
[data-theme="dark"] .trust-bar-section {
  background-color: #1A241C;
  border-color: rgba(147, 195, 140, 0.08);
}

[data-theme="dark"] .pillar-icon-box {
  background: #222E24;
  border-color: rgba(147, 195, 140, 0.12);
}

/* ── Dark Mode: Cards & Surfaces ── */
[data-theme="dark"] .step-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .journal-card,
[data-theme="dark"] .modality-item,
[data-theme="dark"] .city-pill,
[data-theme="dark"] .coverage-interactive-panel {
  background: #1E2820;
  border-color: rgba(147, 195, 140, 0.1);
}

[data-theme="dark"] .step-card:hover,
[data-theme="dark"] .testimonial-card:hover,
[data-theme="dark"] .journal-card:hover,
[data-theme="dark"] .modality-item:hover {
  border-color: rgba(147, 195, 140, 0.25);
}

[data-theme="dark"] .city-pill.active {
  background: #222E24;
  border-color: var(--sage-400);
}

/* ── Dark Mode: Services & Pricing ── */
[data-theme="dark"] .services-section {
  background-color: #151D16;
}

[data-theme="dark"] .pricing-card {
  background: #1A241C;
}

[data-theme="dark"] .pricing-card.featured {
  background: #1E2820;
  border-color: var(--sage-500);
  box-shadow: 0 0 30px rgba(106, 147, 100, 0.12);
}

[data-theme="dark"] .modalities-intro-box {
  background: #1A241C;
}

/* ── Dark Mode: Coverage ── */
[data-theme="dark"] .coverage-section {
  background-color: #151D16;
}

[data-theme="dark"] .coverage-box {
  background: #1A241C;
}

/* ── Dark Mode: FAQ ── */
[data-theme="dark"] .faq-section {
  background-color: #151D16;
}

[data-theme="dark"] .faq-item {
  background: #1A241C;
}

[data-theme="dark"] .faq-item.active {
  background: #1E2820;
}

[data-theme="dark"] .faq-chevron {
  background: #2A3E2C;
}

[data-theme="dark"] .faq-item.active .faq-chevron {
  background: var(--sage-600);
}

/* ── Dark Mode: Testimonials ── */
[data-theme="dark"] .testimonials-section {
  background-color: #121A14;
}

[data-theme="dark"] .client-avatar {
  background: #2A3E2C;
  color: var(--sage-300);
}

/* ── Dark Mode: Journal ── */
[data-theme="dark"] .journal-cat-tag {
  background: rgba(30, 40, 32, 0.92);
  color: var(--sage-300);
}

/* ── Dark Mode: Final CTA ── */
[data-theme="dark"] .final-cta-section {
  background: linear-gradient(180deg, var(--cream-bg) 0%, #0D130E 100%);
}

/* ── Dark Mode: About Section ── */
[data-theme="dark"] .about-media-card {
  border-color: #2A3E2C;
}

[data-theme="dark"] .mv-card {
  background: rgba(30, 40, 32, 0.85);
}

[data-theme="dark"] .mv-card:hover {
  background: #1E2820;
}

[data-theme="dark"] .mv-badge {
  background: #2A3E2C;
}

[data-theme="dark"] .value-icon {
  background: #222E24;
}

/* ── Dark Mode: Btn Outline & White ── */
[data-theme="dark"] .btn-outline {
  color: var(--sage-400);
  border-color: var(--sage-400);
}

[data-theme="dark"] .btn-outline:hover {
  background-color: rgba(147, 195, 140, 0.1);
  color: var(--sage-300);
  border-color: var(--sage-300);
}

[data-theme="dark"] .btn-white {
  background-color: #1E2820;
  color: var(--sage-300);
}

[data-theme="dark"] .btn-white:hover {
  background-color: #222E24;
}

/* ── Dark Mode: Payment Strip ── */
[data-theme="dark"] .payment-methods-strip {
  background: #1A241C;
}

[data-theme="dark"] .payment-icon-item {
  background: #222E24;
  border-color: rgba(147, 195, 140, 0.1);
}

/* ── Dark Mode: Section Tags ── */
[data-theme="dark"] .section-tag {
  background: #1E2E20;
  border-color: rgba(147, 195, 140, 0.15);
}

/* ── Dark Mode: Verified Tag ── */
[data-theme="dark"] .verified-tag {
  color: #6FCF6A;
}

/* ── Dark Mode: ZIP Result ── */
[data-theme="dark"] .zip-result-message.success {
  color: #6FCF6A;
}

[data-theme="dark"] .zip-result-message.warning {
  color: #E0A840;
}

/* ── Dark Mode: Article Modal ── */
[data-theme="dark"] .article-modal-container {
  background: #1A241C;
}

[data-theme="dark"] .article-modal-close-btn {
  background: rgba(30, 40, 32, 0.9);
}

[data-theme="dark"] .article-quote-box {
  background: #222E24;
  border-color: var(--sage-400);
}

[data-theme="dark"] .article-takeaways-box {
  background: #1E2820;
  border-color: rgba(147, 195, 140, 0.12);
}

/* ── Dark Mode: Chair Massage Spotlight ── */
[data-theme="dark"] .chair-massage-spotlight {
  background: linear-gradient(135deg, #18241A 0%, #101812 100%);
  border: 1px solid rgba(147, 195, 140, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

/* ── Dark Mode: Recruitment Banner ── */
[data-theme="dark"] .recruitment-banner {
  background: linear-gradient(135deg, #1A261C 0%, #111A13 100%);
  border: 1px solid rgba(147, 195, 140, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* ── Dark Mode: Final CTA Box ── */
[data-theme="dark"] .cta-box {
  background: linear-gradient(135deg, #1C281E 0%, #121C14 100%);
  border: 1px solid rgba(147, 195, 140, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ── Dark Mode: Article Bottom CTA ── */
[data-theme="dark"] .article-bottom-cta {
  background: linear-gradient(135deg, #1A261C 0%, #111A13 100%);
  border: 1px solid rgba(147, 195, 140, 0.12);
}

/* ── Dark Mode: Site Footer ── */
[data-theme="dark"] .site-footer {
  background-color: #0B110C;
  color: rgba(232, 240, 230, 0.85);
  border-top-color: rgba(147, 195, 140, 0.08);
}

[data-theme="dark"] .footer-brand-title,
[data-theme="dark"] .footer-heading {
  color: #FFFFFF;
}

[data-theme="dark"] .footer-brand-bio {
  color: rgba(232, 240, 230, 0.72);
}

[data-theme="dark"] .footer-links-list a {
  color: rgba(232, 240, 230, 0.72);
}

[data-theme="dark"] .footer-links-list a:hover {
  color: var(--gold-accent);
}

[data-theme="dark"] .footer-contact-item {
  color: rgba(232, 240, 230, 0.75);
}

[data-theme="dark"] .footer-contact-item a {
  color: rgba(232, 240, 230, 0.75);
}

[data-theme="dark"] .footer-contact-item a:hover {
  color: var(--gold-accent);
}

[data-theme="dark"] .medical-disclaimer {
  border-top-color: rgba(147, 195, 140, 0.1);
}

[data-theme="dark"] .disclaimer-content p {
  color: rgba(232, 240, 230, 0.6);
}

[data-theme="dark"] .footer-bottom-bar {
  border-top-color: rgba(147, 195, 140, 0.1);
  color: rgba(232, 240, 230, 0.6);
}

[data-theme="dark"] .legal-links a {
  color: rgba(232, 240, 230, 0.6);
}

[data-theme="dark"] .legal-links a:hover {
  color: var(--gold-accent);
}

/* ── Theme Toggle Button ── */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
  padding: 0;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  transform: rotate(15deg);
}

.theme-icon {
  display: block;
}

.theme-icon svg {
  display: block;
}

/* Light mode: show moon (click to switch to dark), hide sun */
.moon-icon { display: block; }
.sun-icon { display: none; }

/* Dark mode: show sun (click to switch to light), hide moon */
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="dark"] .sun-icon { display: block; }


/* ── Global Reset & Base Styles ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-bg);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button, input, select, textarea {
  font: inherit;
}

/* ── Container Layout ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-py {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section-py {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* ── Section Header Components ── */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-700);
  background: var(--sage-100);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(106, 147, 100, 0.25);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── UI Buttons & Badges ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--sage-600);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(84, 119, 78, 0.28);
}

.btn-primary:hover {
  background-color: var(--sage-700);
  box-shadow: 0 6px 20px rgba(84, 119, 78, 0.4);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B89230 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(184, 146, 48, 0.32);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #DEBA46 0%, #A88225 100%);
  box-shadow: 0 6px 22px rgba(184, 146, 48, 0.45);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: var(--sage-700);
  border-color: var(--sage-500);
}

.btn-outline:hover {
  background-color: var(--sage-50);
  color: var(--sage-800);
  border-color: var(--sage-700);
  transform: translateY(-2px);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--sage-800);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background-color: var(--cream-subtle);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* ── Top Bar (Announcement / Language) ── */
.topbar {
  background-color: var(--sage-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
}

.topbar-info a:hover {
  color: var(--gold-accent);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: #FFFFFF;
  color: var(--sage-900);
  box-shadow: var(--shadow-xs);
}

/* ── Header & Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(106, 147, 100, 0.12);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 6px 20px rgba(28, 36, 30, 0.06);
  background-color: rgba(255, 255, 255, 0.96);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  height: 84px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.08));
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.04);
}

.brand-name-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--sage-800);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sage-500);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--sage-600);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: #FFFFFF;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
  border-bottom: 1px solid var(--border-light);
  flex-direction: column;
  gap: 18px;
  z-index: 999;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 50px 0 80px 0;
  background: linear-gradient(180deg, rgba(244, 247, 243, 0.6) 0%, var(--cream-bg) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-800);
}

.stars-rating {
  color: #E5A93C;
  letter-spacing: 2px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.14;
  color: var(--sage-900);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-title span.highlight {
  font-style: italic;
  color: var(--sage-600);
  font-weight: 500;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}

/* Hero Quick Booking Widget */
.hero-booking-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
  max-width: 530px;
}

.booking-widget-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sage-700);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.widget-row {
  display: flex;
  gap: 10px;
}

.zip-input-group {
  position: relative;
  flex: 1;
}

.zip-input {
  width: 100%;
  padding: 13px 16px 13px 40px;
  border: 1.5px solid rgba(106, 147, 100, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  background-color: var(--sage-50);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.zip-input:focus {
  outline: none;
  border-color: var(--sage-500);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(106, 147, 100, 0.15);
}

.zip-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sage-600);
  font-size: 1.1rem;
}

.zip-result-message {
  font-size: 0.82rem;
  margin-top: 10px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.zip-result-message.success {
  color: #2E7D32;
  font-weight: 500;
}

.zip-result-message.warning {
  color: #C67D0A;
  font-weight: 500;
}

.hero-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.hero-highlights-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-highlights-list li span.check {
  color: var(--sage-600);
  font-weight: bold;
}

/* Hero Media Column */
.hero-media-wrap {
  position: relative;
}

.hero-main-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.hero-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.hero-main-img-card:hover .hero-main-img {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(106, 147, 100, 0.2);
}

.floating-badge.bottom-left {
  bottom: 24px;
  left: -20px;
}

.floating-badge.top-right {
  top: 30px;
  right: -20px;
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--sage-100);
  color: var(--sage-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-text-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sage-900);
  margin-bottom: 2px;
}

.badge-text-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ── Brand Trust Bar ── */
.trust-bar-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 34px 0;
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pillar-icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--sage-50);
  border: 1px solid rgba(106, 147, 100, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-600);
  font-size: 1.35rem;
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 2px;
}

.pillar-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── How It Works Section ── */
.how-it-works-section {
  background-color: var(--cream-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(106, 147, 100, 0.35);
}

.step-num-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sage-200);
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--sage-100);
  color: var(--sage-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Services & Pricing Section ── */
.services-section {
  background-color: #FFFFFF;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--cream-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-fast);
}

.pricing-card.featured {
  background: #FFFFFF;
  border: 2px solid var(--sage-500);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.featured-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-accent);
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
}

.pricing-card-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 22px;
  margin-bottom: 24px;
  text-align: center;
}

.duration-tag {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sage-700);
  margin-bottom: 6px;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
}

.amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(106, 147, 100, 0.08);
}

.pricing-features-list li:last-child {
  border-bottom: none;
}

.pricing-features-list li span.icon {
  color: var(--sage-600);
  font-weight: bold;
}

/* Modalities Grid */
.modalities-intro-box {
  background: var(--sage-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 60px;
}

.modalities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.modality-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all var(--transition-fast);
}

.modality-item:hover {
  transform: translateY(-3px);
  border-color: var(--sage-400);
  box-shadow: var(--shadow-sm);
}

.modality-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sage-900);
  margin-bottom: 8px;
}

.modality-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Chair Massage Feature Spotlight */
.chair-massage-spotlight {
  background: linear-gradient(135deg, var(--sage-900) 0%, var(--sage-800) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}

.chair-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.chair-spotlight-content {
  padding: 60px 48px;
}

.chair-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-accent);
  background: rgba(197, 160, 89, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.chair-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.chair-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 24px;
}

.chair-benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.chair-benefits-list li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chair-benefits-list li span.check {
  color: var(--gold-accent);
  font-weight: bold;
}

.chair-spotlight-media {
  height: 100%;
  min-height: 380px;
}

.chair-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── About Us & The True Touch Standard ── */
.about-section {
  background-color: var(--cream-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.about-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.about-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(27, 41, 25, 0.88);
  backdrop-filter: blur(12px);
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
  color: #FFFFFF;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 16px;
}

.values-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 24px 0;
}

.value-item {
  display: flex;
  gap: 12px;
}

.value-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--sage-100);
  color: var(--sage-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.value-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.value-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Mission & Vision Cards */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 6px 0 28px 0;
}

.mv-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-xs);
  border-left: 3px solid var(--sage-600);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.mv-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: #FFFFFF;
}

.mv-header {
  margin-bottom: 8px;
}

.mv-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-800);
  background: var(--sage-100);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.mv-text {
  font-size: 0.91rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Service Coverage Map & ZIP Finder ── */
.coverage-section {
  background-color: #FFFFFF;
}

.coverage-box {
  background: var(--cream-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.coverage-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px 0;
}

.city-pill {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sage-800);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.city-pill.active {
  background: var(--sage-50);
  border-color: var(--sage-400);
  color: var(--sage-900);
  font-weight: 600;
}

.coverage-interactive-panel {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

/* ── Testimonials Section ── */
.testimonials-section {
  background-color: var(--sage-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.testimonial-quote {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(106, 147, 100, 0.1);
  padding-top: 16px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--sage-200);
  color: var(--sage-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
}

.client-info {
  flex-grow: 1;
}

.client-name {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--text-primary);
}

.client-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.verified-tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: #2E7D32;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── FAQ Section ── */
.faq-section {
  background-color: #FFFFFF;
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cream-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--sage-400);
  background: #FFFFFF;
  box-shadow: var(--shadow-xs);
}

.faq-question-btn {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-question-btn:hover {
  color: var(--sage-600);
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--sage-100);
  color: var(--sage-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--sage-600);
  color: #FFFFFF;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 26px;
}

.faq-answer-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-bottom: 22px;
}

/* ── Wellness Journal / Blog ── */
.journal-section {
  background-color: var(--cream-bg);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.journal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.journal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.journal-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.journal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.journal-card:hover .journal-img {
  transform: scale(1.05);
}

.journal-cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--sage-800);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.journal-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.journal-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.journal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 12px;
}

.journal-summary {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.journal-read-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.journal-read-link:hover {
  color: var(--sage-900);
  text-decoration: underline;
}

/* ── Therapist Recruitment Banner ── */
.recruitment-banner {
  background: linear-gradient(135deg, var(--sage-800) 0%, var(--sage-900) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-md);
}

.recruitment-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.recruitment-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  line-height: 1.6;
}

/* ── Final CTA Section ── */
.final-cta-section {
  background: linear-gradient(180deg, var(--cream-bg) 0%, #EAEFE8 100%);
  text-align: center;
  position: relative;
}

.cta-box {
  background: var(--sage-700);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 72px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-box-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.15;
}

.cta-box-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.cta-buttons-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Footer ── */
.site-footer {
  background-color: var(--sage-900);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.footer-brand-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 16px;
}

.footer-brand-bio {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold-accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item a:hover {
  color: var(--gold-accent);
}

.footer-contact-item span.icon {
  color: var(--gold-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.legal-links a:hover {
  color: var(--gold-accent);
}

/* ── Responsive Queries ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-media-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid,
  .pricing-cards-grid,
  .testimonials-grid,
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .coverage-box,
  .chair-spotlight-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 88px;
  }
  .brand-logo-img {
    height: 68px;
  }
  .brand-title {
    font-size: 1.35rem;
  }
  .brand-subtitle {
    font-size: 0.72rem;
  }
  .nav-menu,
  .header-cta-group .btn-secondary-hide {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .trust-pillars-grid,
  .steps-grid,
  .pricing-cards-grid,
  .testimonials-grid,
  .journal-grid,
  .modalities-grid,
  .mission-vision-grid,
  .values-checklist {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .recruitment-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
  .floating-badge {
    display: none;
  }
  .pricing-card.featured {
    transform: none;
  }
  .chair-spotlight-content {
    padding: 36px 24px;
  }
  .hero-main-img {
    height: 380px;
  }
}

/* ── Article Reader Modal ── */
.article-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(27, 41, 25, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.article-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.article-modal-container {
  background: #FFFFFF;
  width: 100%;
  max-width: 840px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition-normal);
}

.article-modal-backdrop.open .article-modal-container {
  transform: translateY(0) scale(1);
}

.article-modal-close-btn {
  position: sticky;
  top: 16px;
  right: 16px;
  align-self: flex-end;
  margin-bottom: -44px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.article-modal-close-btn:hover {
  background: var(--sage-600);
  color: #FFFFFF;
  transform: scale(1.05);
}

.article-modal-hero {
  position: relative;
  height: 320px;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.article-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(27,41,25,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 36px;
}

.article-hero-tag {
  background: var(--gold-accent);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
  align-self: flex-start;
}

.article-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
}

.article-modal-body {
  padding: 36px;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
}

.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}

.article-body-text h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--sage-900);
  margin: 30px 0 14px 0;
  line-height: 1.3;
}

.article-body-text p {
  margin-bottom: 18px;
}

.article-quote-box {
  background: var(--sage-50);
  border-left: 4px solid var(--sage-500);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--sage-900);
  margin: 24px 0;
  font-size: 1.05rem;
}

.article-takeaways-box {
  background: var(--cream-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
}

.article-takeaways-title {
  font-weight: 700;
  color: var(--sage-800);
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-takeaways-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-takeaways-list li {
  font-size: 0.94rem;
  color: var(--text-secondary);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.article-takeaways-list li span.dot {
  color: var(--sage-600);
  font-weight: bold;
}

.article-bottom-cta {
  background: linear-gradient(135deg, var(--sage-800) 0%, var(--sage-900) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.article-bottom-cta-text h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.article-bottom-cta-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (max-width: 640px) {
  .article-modal-hero {
    height: 220px;
  }
  .article-modal-body {
    padding: 24px 20px;
  }
  .article-bottom-cta {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Availability Pill (How It Works) ── */
.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--sage-800);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 12px;
}

/* ── Payment Methods Strip ── */
.payment-methods-strip {
  text-align: center;
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--cream-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.payment-strip-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.payment-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.payment-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  transition: box-shadow var(--transition-fast);
}

.payment-icon-item:hover {
  box-shadow: var(--shadow-sm);
}

.payment-icon-item svg {
  display: block;
}

.payment-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Modality Disclaimer (Prenatal) ── */
.modality-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  padding: 6px 10px;
  background: rgba(197, 160, 89, 0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-accent);
  line-height: 1.5;
}

/* ── Medical Disclaimer & Scope of Practice (Footer) ── */
.medical-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-top: 10px;
}

.disclaimer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-content p {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

/* ── Responsive adjustments for new components ── */
@media (max-width: 768px) {
  .payment-methods-strip {
    padding: 20px 16px;
  }

  .payment-icons-row {
    gap: 10px;
  }

  .payment-icon-item {
    padding: 6px 10px;
  }

  .availability-pill {
    font-size: 0.82rem;
    padding: 6px 16px;
  }
}
