/* =========================================================
   360 Health and Healing, LLC — Main Stylesheet
   Brand: Dark navy-teal #0c2028 | Mint teal #4ecba4
   ========================================================= */

/* --- Design Tokens --- */
:root {
  /* Brand colors — exact match to logo image background (#042138 sampled) */
  --brand-dark:       #042138;    /* Exact logo background: deep navy */
  --brand-dark-mid:   #0b3050;    /* Mid-dark for gradients / hover states */
  --brand-teal:       #3aaf8a;    /* Primary action teal (accessible contrast) */
  --brand-teal-hover: #2f9878;    /* Hover state */
  --brand-mint:       #4ecba4;    /* Brand mint — decorative highlights */
  --brand-mint-light: #8fe3ca;    /* Lighter mint for badges / labels */

  /* Background hierarchy */
  --bg-base:     #ffffff;
  --bg-surface:  #f0faf7;         /* Very light teal tint for alt sections */
  --bg-subtle:   #f8fffe;
  --bg-card:     #ffffff;

  /* Text */
  --text-dark:   #0b2028;         /* Headings on light backgrounds */
  --text-body:   #2c4a57;         /* Body copy */
  --text-muted:  #5b7d8a;         /* Secondary / caption text */
  --text-light:  #e2f3ef;         /* Text on dark backgrounds */
  --text-faint:  #a0bfc8;         /* Faint on dark sections */

  /* Borders */
  --border:      #c8e8e0;
  --border-card: #dff2ec;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(12, 32, 40, 0.10);
  --shadow-md: 0 4px 18px rgba(12, 32, 40, 0.13);
  --shadow-lg: 0 8px 36px rgba(12, 32, 40, 0.18);

  /* Teal glow */
  --teal-glow: rgba(78, 203, 164, 0.18);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --max-width: 1100px;
  --nav-height: 68px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--brand-teal);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--brand-teal-hover);
}

ul, ol {
  list-style: none;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--dark {
  background: var(--brand-dark);
  border: none;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Dark section overrides */
.section--dark .section-label {
  color: var(--brand-mint);
}
.section--dark .section-title {
  color: #ffffff;
}
.section--dark .section-desc {
  color: var(--text-faint);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--brand-teal);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(58, 175, 138, 0.35);
}

.btn-primary:hover {
  background: var(--brand-teal-hover);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(58, 175, 138, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--brand-teal);
  border: 2px solid var(--brand-teal);
}

.btn-outline:hover {
  background: var(--brand-teal);
  color: #ffffff;
}

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-ghost-light:hover {
  background: rgba(255,255,255,0.22);
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
}

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

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-dark);
  border-bottom: 1px solid rgba(78, 203, 164, 0.15);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 44px;
  height: 44px;
  color: var(--brand-mint);
  flex-shrink: 0;
  object-fit: contain;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.nav__logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-mint);
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links li a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-faint);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav__links li a:hover,
.nav__links li a.active {
  color: #ffffff;
  background: rgba(78, 203, 164, 0.1);
}

/* Book button in nav */
.nav__links li a.nav-cta {
  background: var(--brand-teal);
  color: #ffffff;
  padding: 7px 16px;
  font-weight: 600;
}

.nav__links li a.nav-cta:hover {
  background: var(--brand-teal-hover);
  color: #ffffff;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(145deg, var(--brand-dark) 0%, var(--brand-dark-mid) 55%, #083248 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 203, 164, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 203, 164, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glow accent */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 203, 164, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  margin-bottom: 16px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mint);
  background: rgba(78, 203, 164, 0.12);
  border: 1px solid rgba(78, 203, 164, 0.25);
  padding: 5px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.hero__pill:hover {
  background: rgba(78, 203, 164, 0.22);
  border-color: rgba(78, 203, 164, 0.5);
}

.hero__title {
  font-size: 3.0rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--brand-mint);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-faint);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero right — credential badges */
.hero__credentials {
  display: grid;
  gap: 16px;
}

.credential-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(78, 203, 164, 0.20);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(4px);
}

.credential-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(78, 203, 164, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-mint);
  flex-shrink: 0;
}

.credential-card__icon svg {
  width: 22px;
  height: 22px;
}

.credential-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.credential-card__sub {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 2px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--brand-dark-mid);
  border-top: 1px solid rgba(78, 203, 164, 0.12);
  border-bottom: 1px solid rgba(78, 203, 164, 0.12);
  padding: 22px 0;
}

.trust-bar__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-mint);
  flex-shrink: 0;
}

.trust-item__text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

.trust-item__text strong {
  color: #ffffff;
  font-weight: 700;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card--wide {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.service-card__wide-inner {
  max-width: 460px;
  width: 100%;
}

.service-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-teal);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--brand-teal);
  transition: background 0.2s, border-color 0.2s;
}

.service-card:hover .service-card__icon {
  background: rgba(58, 175, 138, 0.1);
  border-color: var(--brand-teal);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card__title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card__list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-teal);
  flex-shrink: 0;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-us__card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}

.why-us__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-us__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.why-us__body {
  padding: 22px 24px 26px;
}

.why-us__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-us__title::before {
  content: '';
  width: 3px;
  height: 18px;
  background: var(--brand-teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.why-us__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .why-us__photo {
    aspect-ratio: 16/7;
    object-position: center center;
  }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.33% - 0px);
  right: calc(33.33% - 0px);
  height: 2px;
  background: linear-gradient(90deg, var(--border) 0%, var(--brand-teal) 50%, var(--border) 100%);
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-item__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-dark);
  border: 2.5px solid var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brand-mint);
  box-shadow: 0 0 0 6px var(--bg-surface);
}

.step-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-item__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__team-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__photo-area {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__photo-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-teal);
  background: rgba(58, 175, 138, 0.08);
  border: 1px solid rgba(58, 175, 138, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.about__name {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 6px;
}

.about__credentials-line {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-teal);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.about__bio {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.mission-block {
  background: var(--bg-surface);
  border-left: 3px solid var(--brand-teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin: 20px 0 24px;
}

.mission-block p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
}

.about__cert-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.about__cert-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.about__cert-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(58, 175, 138, 0.12);
  border: 1.5px solid var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__cert-icon svg {
  width: 11px;
  height: 11px;
  color: var(--brand-teal);
}

/* ============================================================
   PHOTO GALLERY STRIP
   ============================================================ */
.photo-strip {
  overflow: hidden;
}

.photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.photo-strip__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip__item:hover img {
  transform: scale(1.04);
}

.photo-strip__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 20px 18px;
  background: linear-gradient(transparent, rgba(4, 33, 56, 0.82));
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.photo-strip__item:hover .photo-strip__caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .photo-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .photo-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-strip__item {
    aspect-ratio: 1;
  }

  .photo-strip__caption {
    opacity: 1;
    transform: none;
    font-size: 0.75rem;
    padding: 24px 12px 12px;
  }
}

/* ============================================================
   REFERRALS SECTION
   ============================================================ */

.referral-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.referral-contact-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.referral-contact-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(78, 203, 164, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-mint);
  flex-shrink: 0;
}

.referral-contact-card__icon svg {
  width: 26px;
  height: 26px;
}

.referral-contact-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0;
}

.referral-contact-card__desc {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.referral-contact-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.referral-contact-card__fax {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.referral-contact-card__fax svg {
  color: var(--brand-teal);
  flex-shrink: 0;
}

.referral-contact-card__hours {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================================================
   BOOKING CTA SECTION
   ============================================================ */
.booking-cta {
  text-align: center;
  padding: 88px 0;
}

.booking-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.booking-cta__title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.booking-cta__title em {
  font-style: normal;
  color: var(--brand-mint);
}

.booking-cta__subtitle {
  font-size: 1.05rem;
  color: var(--text-faint);
  margin-bottom: 36px;
  line-height: 1.7;
}

.booking-cta__note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(160, 191, 200, 0.7);
}

.booking-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SERVICE AREA MAP
   ============================================================ */

.map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-card);
  margin-bottom: 32px;
}

#service-map {
  height: 480px;
  width: 100%;
  background: var(--bg-surface);
}

/* Custom home-base pin */
.map-home-marker {
  background: none !important;
  border: none !important;
}

.map-marker-pin {
  width: 40px;
  height: 40px;
  background: var(--brand-teal);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(58, 175, 138, 0.45);
}

.map-marker-pin svg {
  fill: #fff;
  transform: rotate(45deg);
}

/* Map legend overlay */
.map-legend {
  position: absolute;
  bottom: 28px;
  right: 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.79rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  z-index: 400;
  color: var(--text-body);
  pointer-events: none;
}

.map-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-legend__dot--home {
  width: 12px;
  height: 12px;
  background: var(--brand-teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.map-legend__area {
  width: 22px;
  height: 12px;
  background: rgba(78, 203, 164, 0.2);
  border: 2px solid #3aaf8a;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Leaflet tooltip override */
.map-city-tooltip {
  background: rgba(4, 33, 56, 0.85) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  padding: 4px 9px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
}

.map-city-tooltip::before {
  border-top-color: rgba(4, 33, 56, 0.85) !important;
}

/* Communities tag list */
.service-area__communities {
  text-align: center;
}

.service-area__communities-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.service-area__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.service-area__tags li {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 100px;
  padding: 5px 15px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact__info-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 18px;
  height: 18px;
}

.contact-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item__value {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-item__value a {
  color: var(--text-dark);
}

.contact-item__value a:hover {
  color: var(--brand-teal);
}

.contact-item__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Contact form */
.contact__form-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact__form-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact__form-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-subtle);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

/* iOS Safari date/time inputs ignore width:100% with native rendering */
input[type="date"].form-input {
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
  line-height: 1.5;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brand-dark);
  border-top: 1px solid rgba(78, 203, 164, 0.12);
  padding: 56px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer__logo-icon {
  width: 52px;
  height: 52px;
  color: var(--brand-mint);
  object-fit: contain;
}

.footer__logo-name {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer__logo-sub {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-mint);
  display: block;
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-faint);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__contact-quick {
  font-size: 0.84rem;
  color: var(--text-faint);
}

.footer__contact-quick a {
  color: var(--brand-mint-light);
}

.footer__contact-quick a:hover {
  color: var(--brand-mint);
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li a {
  font-size: 0.88rem;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links li a:hover {
  color: var(--brand-mint);
}

.footer__emergency-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 80, 80, 0.10);
  border: 1px solid rgba(255, 80, 80, 0.30);
  border-radius: var(--radius-md);
  color: #f88;
  font-size: 0.88rem;
  padding: 12px 18px;
  margin-bottom: 24px;
}

.footer__emergency-notice svg {
  flex-shrink: 0;
  color: #f88;
}

.footer__bottom {
  border-top: 1px solid rgba(78, 203, 164, 0.10);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-copy {
  font-size: 0.82rem;
  color: rgba(160, 191, 200, 0.5);
}

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

.footer__bottom-links a {
  font-size: 0.82rem;
  color: rgba(160, 191, 200, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: var(--brand-mint);
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #163545 100%);
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(78, 203, 164, 0.15);
}

.page-header__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.page-header__meta {
  font-size: 0.86rem;
  color: var(--text-faint);
}

.prose {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 24px;
}

.prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.prose p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.prose ul li {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 6px;
}

.prose a {
  color: var(--brand-teal);
}

.prose strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__credentials {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }

  .step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }

  .step-item__number {
    margin: 0;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
    box-shadow: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__photo-area {
    aspect-ratio: 16/7;
    max-width: 480px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: span 2;
    max-width: none;
  }

  .trust-bar__items {
    gap: 24px;
  }

  .referral-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .hero {
    padding: 72px 0 64px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__credentials {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .booking-cta__title {
    font-size: 1.9rem;
  }

  .referral-contact-card {
    padding: 28px 22px;
  }

#service-map {
    height: 320px;
  }

  .about__photo-area {
    aspect-ratio: 4/3;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact__form-card {
    padding: 24px;
  }

  .trust-bar__items {
    gap: 16px;
    justify-content: flex-start;
  }

  /* Mobile nav */
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--brand-dark);
    border-bottom: 1px solid rgba(78, 203, 164, 0.15);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 2px;
    box-shadow: var(--shadow-md);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links li a {
    padding: 10px 14px;
    font-size: 0.94rem;
  }

  .nav__links li a.nav-cta {
    margin-top: 6px;
    text-align: center;
    border-radius: var(--radius-md);
  }
}

/* ============================================================
   UTILITY
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
