/* ============================================================
   Amanda Massage & Spa — Main Stylesheet
   Fonts: Newsreader (headings), Karla (body)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --linen:       #FAF5F0;
  --cream:       #FDF9F5;
  --primary:     #2A1515;
  --primary-dark:#1E0F0F;
  --accent:      #C08080;
  --accent-light:#E0A0A0;
  --gold:        #C0A080;
  --gold-light:  #E0E0C0;
  --rose:        #804040;
  --rose-light:  #F0DADA;
  --charcoal:    #1A1210;
  --gray-700:    #4A4040;
  --gray-500:    #8A7A74;
  --gray-300:    #C8BAB4;
  --white:       #FFFFFF;
  --shadow:      0 2px 12px rgba(0,0,0,.07);
  --shadow-lg:   0 8px 30px rgba(0,0,0,.10);
  --radius:      8px;
  --radius-lg:   16px;
  --max-w:       1200px;
  --transition:  .3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Karla', sans-serif;
  color: var(--charcoal);
  background: var(--linen);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary-dark);
}

/* ---------- Utility ---------- */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.section   { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--green { background: var(--primary); color: var(--linen); }
.section--green h2, .section--green h3, .section--green p { color: var(--linen); }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-rose   { color: var(--rose); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: .5rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.section--green .section-subtitle { color: var(--gold-light); }

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}
.section--green .divider { background: var(--rose); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-family: 'Karla', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .3px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: #b8963e;
  border-color: #b8963e;
  color: var(--white);
}
.btn--whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: var(--white);
}
.btn--imessage {
  background: #34C759;
  border-color: #34C759;
  color: var(--white);
}
.btn--imessage:hover {
  background: #2ba849;
  border-color: #2ba849;
  color: var(--white);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 245, 240, .92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(192,128,128,.15);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(128,64,64,.08);
  background: rgba(250, 245, 240, .97);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--accent);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 1rem;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 1001;
  position: relative;
}
.nav__toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.nav__toggle-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.nav__toggle.open .nav__toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--linen);
}
.nav__toggle.open .nav__toggle-bars span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle.open .nav__toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--linen);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(42,21,21,.55), rgba(128,64,64,.6)),
    url('https://images.unsplash.com/photo-1761284758997-1074f2a33114?w=1920&q=80') center/cover no-repeat;
  color: var(--linen);
  padding-top: 5rem;
}
.hero__content {
  max-width: 640px;
}
.hero__badge {
  display: inline-block;
  padding: .35rem 1rem;
  background: rgba(201,168,76,.2);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__stat-number {
  font-family: 'Newsreader', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero__stat-label {
  font-size: .85rem;
  color: var(--gold-light);
  margin-top: .2rem;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--white);
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--gray-500);
}
.trust-strip__icon {
  font-size: 1.1rem;
}

/* ---------- Service Cards (Home Preview) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: .6rem;
  color: var(--primary-dark);
}
.service-card p {
  font-size: .92rem;
  color: var(--gray-500);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.service-card__pricing {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.service-card__tier {
  font-size: .9rem;
  color: var(--gray-700);
}
.service-card__tier strong {
  color: var(--primary);
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
}

/* ---------- Services Table ---------- */
.services-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 3rem;
}
.services-table {
  width: 100%;
  border-collapse: collapse;
}
.services-table thead {
  background: var(--primary);
  color: var(--linen);
}
.services-table th {
  padding: 1rem 1.5rem;
  font-family: 'Karla', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}
.services-table th:not(:first-child) {
  text-align: center;
  width: 120px;
}
.services-table__row {
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background var(--transition);
}
.services-table__row:last-child {
  border-bottom: none;
}
.services-table__row:hover {
  background: rgba(192,128,128,.04);
}
.services-table td {
  padding: 1.2rem 1.5rem;
  vertical-align: middle;
}
.services-table td:not(:first-child) {
  text-align: center;
}
.services-table__name {
  display: block;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: .2rem;
}
.services-table__desc {
  display: block;
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.services-table__price {
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

/* ---------- Packages ---------- */
.packages-section {
  margin-bottom: 3rem;
}
.packages-section__title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.package-card__name {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: .5rem;
}
.package-card__details {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.package-card__price {
  font-family: 'Newsreader', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}
.package-card__savings {
  display: inline-block;
  padding: .3rem .9rem;
  background: var(--rose-light);
  color: #8B4A4A;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
}

/* ---------- Add-Ons ---------- */
.addons-section {
  margin-bottom: 2rem;
}
.addons-section__title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}
.addons-grid {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.addon-item:last-child {
  border-bottom: none;
}
.addon-item__name {
  font-size: .92rem;
  color: var(--gray-700);
  white-space: nowrap;
}
.addon-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--gray-300);
  margin: 0 .3rem;
  min-width: 20px;
}
.addon-item__price {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .services-table-wrap {
    overflow: visible;
  }
  .services-table,
  .services-table thead,
  .services-table tbody,
  .services-table tr,
  .services-table th {
    display: block;
  }
  .services-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
  }
  .services-table tr {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    padding: 1.2rem 1.5rem;
  }
  .services-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
    text-align: right;
    border-bottom: 1px solid rgba(0,0,0,.05);
  }
  .services-table td:last-child {
    border-bottom: none;
  }
  .services-table td::before {
    content: attr(data-label);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gray-500);
    text-align: left;
    flex-shrink: 0;
    margin-right: 1rem;
  }
  .services-table td:first-child {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-bottom: .8rem;
    margin-bottom: .3rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .services-table td:first-child::before {
    display: none;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .service-card__pricing {
    flex-direction: column;
    gap: .5rem;
  }
}

/* ---------- Therapist Cards ---------- */
.therapist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.therapist-card__img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: var(--gray-300);
}
.therapist-card__body {
  padding: 1.5rem;
}
.therapist-card__name {
  font-size: 1.3rem;
  margin-bottom: .2rem;
}
.therapist-card__role {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .8rem;
}
.therapist-card__bio {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.therapist-card__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.therapist-card__tag {
  padding: .2rem .6rem;
  background: var(--rose-light);
  color: #8B4A4A;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 500;
}

.therapists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

/* ---------- Reviews Marquee ---------- */
.reviews-marquee {
  overflow: hidden;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollReviews 60s linear infinite;
}
.reviews-track:hover {
  animation-play-state: paused;
}
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  min-width: 360px;
  max-width: 360px;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: .8rem;
  letter-spacing: 2px;
}
.review-card__text {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-card__author {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.location-card__icon {
  width: 48px;
  height: 48px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.location-card__label {
  font-size: 1.05rem;
  margin-bottom: .4rem;
  color: var(--primary-dark);
}
.location-card__address {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: .8rem;
}
.location-card__address a {
  color: var(--gray-500);
}
.location-card__address a:hover {
  color: var(--gold);
}
.location-card__link {
  display: inline-block;
  font-size: .82rem;
  color: var(--accent);
  font-weight: 600;
  transition: color var(--transition);
}
.location-card__link:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Booking Form ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: start;
}
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Karla', sans-serif;
  font-size: .9rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,95,58,.1);
}
.form-group input.error,
.form-group select.error {
  border-color: #D32F2F;
}
.form-group .error-msg {
  font-size: .78rem;
  color: #D32F2F;
  margin-top: .3rem;
  display: none;
}
.form-group input.error ~ .error-msg,
.form-group select.error ~ .error-msg {
  display: block;
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking-sidebar__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.booking-sidebar__card h3 {
  font-size: 1.1rem;
  margin-bottom: .8rem;
}
.booking-sidebar__card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.booking-sidebar__card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: .6rem;
}
.booking-sidebar__note {
  font-size: .8rem;
  color: var(--gray-500);
  text-align: center;
  font-style: italic;
}

/* Payment radio group */
.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .8rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-size: .85rem;
  font-weight: 500;
}
.payment-option:hover {
  border-color: var(--primary);
}
.payment-option input[type="radio"] {
  accent-color: var(--primary);
  width: auto;
  margin: 0;
}
.payment-option.selected {
  border-color: var(--primary);
  background: rgba(45,95,58,.04);
}

/* Add-on Checkboxes */
.addons-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.addon-checkbox {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .8rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
}
.addon-checkbox:hover {
  border-color: var(--primary);
}
.addon-checkbox input[type="checkbox"] {
  accent-color: var(--primary);
  width: auto;
  margin: 0;
}
.addon-checkbox:has(input:checked) {
  border-color: var(--primary);
  background: rgba(45,95,58,.04);
}

@media (max-width: 768px) {
  .addons-checkboxes {
    grid-template-columns: 1fr;
  }
}

/* ---------- Confirmation Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal__icon {
  width: 64px;
  height: 64px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
}
.modal h2 { margin-bottom: .8rem; }
.modal p {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: .5rem;
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
}

/* ---------- Policies ---------- */
.policies-page {
  padding-top: 8rem;
  min-height: 100vh;
}
.policy-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.policy-block h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--gold-light);
}
.policy-block h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  color: var(--primary);
}
.policy-block p {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: .8rem;
}
.policy-block ul {
  margin-bottom: .8rem;
  padding-left: 1.5rem;
  list-style: disc;
}
.policy-block li {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: .3rem;
}
.policy-block strong {
  color: var(--charcoal);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-dark);
  color: var(--linen);
  padding: 4rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer p,
.footer a {
  font-size: .88rem;
  color: rgba(250,240,230,.7);
  line-height: 1.8;
}
.footer a:hover {
  color: var(--gold);
}
.footer__brand p {
  max-width: 280px;
  margin-bottom: 1rem;
}
.footer__social {
  display: flex;
  gap: .8rem;
  margin-top: .5rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,240,230,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid rgba(250,240,230,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(250,240,230,.5);
}
.footer__bottom a {
  color: rgba(250,240,230,.5);
  margin-left: 1rem;
}

/* Footer Address List */
.footer__address-item {
  margin-bottom: .6rem;
}
.footer__address-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .1rem;
}
.footer__address-item a {
  font-size: .85rem;
  color: rgba(250,240,230,.7);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__address-item a:hover {
  color: var(--gold);
}

/* Footer Locations Grid */
.footer__locations {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,240,230,.1);
}
.footer__locations-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer__locations-header h4 {
  margin-bottom: 0;
}
.footer__view-all-map {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  transition: opacity var(--transition);
}
.footer__view-all-map:hover {
  opacity: .8;
  color: var(--gold);
}
.footer__locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.footer__location {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(250,240,230,.05);
}
.footer__location-map {
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
}
.footer__location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.05);
  transition: filter var(--transition);
}
.footer__location:hover .footer__location-map iframe {
  filter: grayscale(0%) contrast(1);
}
.footer__location-info {
  padding: .8rem;
}
.footer__location-info h5 {
  font-size: .9rem;
  color: var(--gold);
  margin-bottom: .3rem;
  font-family: 'Karla', sans-serif;
  font-weight: 600;
}
.footer__location-info p {
  font-size: .8rem;
  color: rgba(250,240,230,.6);
  line-height: 1.5;
  margin-bottom: .4rem;
}
.footer__map-link {
  font-size: .78rem;
  color: var(--accent-light);
  font-weight: 600;
  transition: color var(--transition);
}
.footer__map-link:hover {
  color: var(--gold);
}

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

@media (max-width: 768px) {
  .footer__locations-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .footer__locations-grid {
    grid-template-columns: 1fr;
  }
  .footer__location-map {
    height: 200px;
  }
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 10rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(42,21,21,.6), rgba(128,64,64,.65)),
    url('https://images.unsplash.com/photo-1761284758997-1074f2a33114?w=1920&q=80') center/cover no-repeat;
  color: var(--linen);
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .5rem;
}
.page-header p {
  color: var(--gold-light);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero__stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  /* ── Dynamic Island Nav ── */
  .nav {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: .75rem 1rem;
  }
  .nav.scrolled {
    box-shadow: none;
    background: transparent;
  }

  .nav__inner {
    background: rgba(250, 245, 240, .92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(192,128,128,.2);
    border-radius: 50px;
    padding: .55rem .8rem .55rem 1rem;
    box-shadow: 0 4px 24px rgba(128,64,64,.1);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    max-width: 360px;
    margin: 0 auto;
  }

  .nav__inner.expanded {
    border-radius: 28px;
    max-width: 380px;
    box-shadow: 0 8px 40px rgba(128,64,64,.15);
  }

  .nav__logo-img {
    height: 32px;
  }

  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(192,128,128,.12);
    transition: background .3s ease;
  }
  .nav__toggle:hover {
    background: rgba(192,128,128,.2);
  }
  .nav__toggle.open {
    background: rgba(192,128,128,.25);
  }
  .nav__toggle-bars span {
    background: var(--accent);
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(250, 245, 240, .96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(192,128,128,.15);
    border-radius: 24px;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    box-shadow: 0 8px 40px rgba(128,64,64,.12);
    transition: max-height .4s cubic-bezier(.4,0,.2,1),
                opacity .3s ease,
                padding .3s ease;
    z-index: 999;
  }
  .nav__links.open {
    max-height: 500px;
    opacity: 1;
    padding: 1rem .5rem;
  }
  .nav__links a {
    font-size: .92rem;
    color: var(--gray-700);
    padding: .7rem 1rem;
    border-radius: 14px;
    width: 100%;
    text-align: center;
    transition: background .2s ease, color .2s ease;
  }
  .nav__links a::after { display: none; }
  .nav__links a:hover,
  .nav__links a.active {
    background: rgba(192, 128, 128, .12);
    color: var(--accent);
  }
  .nav__cta {
    margin-left: 0;
    margin-top: .3rem;
  }
  .nav__cta.btn {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    border-radius: 14px;
  }

  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .hero__stats { flex-direction: column; gap: 1.2rem; }

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

  .form-row { grid-template-columns: 1fr; }
  .booking-layout { gap: 2rem; }
  .payment-options { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .trust-strip__inner { gap: 1.2rem; }
  .trust-strip__item { font-size: .78rem; }
}

@media (max-width: 480px) {
  .container { width: 92%; }
  .hero h1 { font-size: 1.8rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .booking-form { padding: 1.5rem; }
  .modal { padding: 2rem 1.5rem; }
  .review-card { min-width: 290px; max-width: 290px; padding: 1.5rem; }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  font-size: .85rem;
}
.skip-link:focus { top: 0; }

/* ---------- Image Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}
.lightbox.show {
  display: flex;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
  cursor: default;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, .3);
}
.lightbox__name {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: 'Newsreader', serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  white-space: nowrap;
}
.therapist-card__img {
  cursor: pointer;
  transition: opacity var(--transition);
}
.therapist-card__img:hover {
  opacity: .9;
}
