/* ═══════════════════════════════════════════════
   SPA TEMPLATE — Split-Section Wellness Design
   Hand & Stone inspired alternating layout
   Playfair Display + Lato | Teal + Sage + Cream
   ═══════════════════════════════════════════════ */

:root {
  --primary: #1a4a5a;
  --primary-light: #245e72;
  --primary-dark: #133a47;
  --sage: #e8f0eb;
  --cream: #faf8f5;
  --gold: #b8976a;
  --gold-light: #d4b88c;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #6b7280;
  --border: #e2e8e4;
  --shadow-sm: 0 2px 8px rgba(26, 74, 90, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 74, 90, 0.1);
  --shadow-lg: 0 8px 40px rgba(26, 74, 90, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, sans-serif;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── Eyebrow ── */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 8px;
}

.eyebrow--light {
  color: var(--gold-light);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
}

.section-title.left-align {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-subtitle.left-align {
  text-align: left;
  margin: 0 0 32px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

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

.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
}

.btn-outline-teal:hover {
  background: var(--primary);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   HERO — H&S globalPromotionHero pattern
   Single section, image floats on right over both halves
   ═══════════════════════════════════════════════ */
.hero-section {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ── Top: contact info on sage bg ── */
.hero-contact {
  background: var(--sage);
  padding: 40px 0 48px;
}

.hero-contact__info {
  max-width: 40%;
}

.hero-contact__city {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
}

.hero-contact__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--primary);
  line-height: 1.5;
}

.hero-contact__item svg {
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Bottom: dark green + floral bg, text left, image floats right ── */
.hero-content-block {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.hero-content-block__bg {
  position: absolute;
  inset: 0;
  background-color: var(--primary-dark);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='500' viewBox='0 0 600 500'%3E%3Ccircle cx='220' cy='200' r='160' fill='rgba(255,255,255,0.07)' /%3E%3Ccircle cx='360' cy='260' r='180' fill='rgba(255,255,255,0.06)' /%3E%3Ccircle cx='480' cy='120' r='100' fill='rgba(255,255,255,0.04)' /%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-content-block__inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
}

.hero-content-block__text {
  max-width: 42%;
}

.hero-content-block__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-content-block__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content-block__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-content-block__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-hero-solid {
  display: inline-block;
  padding: 14px 32px;
  background: var(--white);
  color: var(--primary-dark);
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-hero-solid:hover {
  background: var(--sage);
}

/* Mobile image — shown below text on small screens */
.hero-content-block__mobile-img {
  display: none;
  margin-top: 40px;
}

.hero-content-block__mobile-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Desktop floating image — absolutely positioned over both halves */
.hero-float-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: max(32px, calc((100vw - 1200px) / 2 + 24px));
  width: 32%;
  z-index: 10;
  pointer-events: none;
  padding: 32px 0;
}

.hero-float-img img {
  width: 100%;
  aspect-ratio: 4.5 / 5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(26, 74, 90, 0.25);
  display: block;
}

/* ═══════════════════════════════════════════════
   LOCATION OVERVIEW — H&S location-overview
   ═══════════════════════════════════════════════ */
.overview-section {
  background: var(--sage);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.overview-left {
  display: flex;
  flex-direction: column;
}

.overview-image {
  flex: 1;
  overflow: hidden;
}

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

.overview-hours {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=800&q=80');
  background-size: cover;
  background-position: center;
  padding: 48px 40px 48px max(40px, calc((100vw - 1200px) / 2 + 24px));
}

.overview-hours__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 74, 90, 0.88);
}

.overview-hours__content {
  position: relative;
  z-index: 1;
}

.overview-hours__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.overview-hours__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.overview-hours__list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.overview-hours__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.overview-hours__list li span:first-child {
  font-weight: 600;
}

.overview-hours__list li span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.overview-hours__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.overview-right {
  padding: 64px max(48px, calc((100vw - 1200px) / 2 + 24px)) 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
}

.overview-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.25;
}

.overview-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.overview-benefits {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.overview-benefits h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.overview-benefits p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   CAROUSEL — shared horizontal scroll
   H&S snap-scroll pattern
   ═══════════════════════════════════════════════ */
.carousel {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 24px 4px max(24px, calc((100vw - 1200px) / 2 + 24px));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.carousel__card--tall {
  flex: 0 0 280px;
}

/* ── Offer visual cards (carousel) ── */
.offer-visual-card {
  display: flex;
  flex-direction: column;
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.offer-visual-card:hover {
  transform: translateY(-4px);
}

.offer-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-visual-card__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(26, 74, 90, 0.9) 0%, transparent 100%);
}

.offer-visual-card__content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 24px;
  color: var(--white);
}

.offer-visual-card__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.offer-visual-card__content p {
  font-size: 0.88rem;
  font-weight: 300;
  opacity: 0.85;
}

/* ── Service visual cards (carousel) ── */
.svc-visual-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.svc-visual-card:hover {
  transform: translateY(-4px);
}

.svc-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-visual-card__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(26, 74, 90, 0.9) 0%, transparent 100%);
}

.svc-visual-card__content {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.svc-visual-card__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.svc-visual-card__content p {
  font-size: 0.82rem;
  font-weight: 300;
  opacity: 0.8;
  line-height: 1.5;
}

/* ── Offers/Services header (H&S split heading pattern) ── */
.offers-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}

.offers-header__text {
  flex: 1;
}

.offers-header__text .section-title {
  margin-bottom: 0;
}

.offers-header__desc {
  max-width: 320px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   OFFERS SECTION
   ═══════════════════════════════════════════════ */
.offers-section {
  background: var(--white);
}

/* ═══════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════ */
.services-section {
  background: var(--sage);
}

/* ═══════════════════════════════════════════════
   GIFT CARDS — H&S 50/50 split
   ═══════════════════════════════════════════════ */
.giftcard-section {
  overflow: hidden;
}

.giftcard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.giftcard-image {
  overflow: hidden;
}

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

.giftcard-content {
  background: var(--primary-dark);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.giftcard-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.giftcard-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════
   MEMBERSHIP — H&S globalMembership
   ═══════════════════════════════════════════════ */
.membership-section {
  background: var(--white);
}

.membership-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: stretch;
}

.membership-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.membership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.membership-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.membership-card {
  background: var(--sage);
  border-radius: var(--radius);
  padding: 24px;
}

.membership-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.membership-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
}

.membership-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.membership-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.membership-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   ABOUT US — 50/50 split
   ═══════════════════════════════════════════════ */
.about-section {
  overflow: hidden;
  background: var(--sage);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  overflow: hidden;
  padding: 48px 0 48px 24px;
  display: flex;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(26, 74, 90, 0.08);
}

.about-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-body:last-of-type {
  margin-bottom: 28px;
}

.about-content .btn {
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════
   Remove old sections (replaced by H&S structure)
   Keep only what's still used
   ═══════════════════════════════════════════════ */

/* Old hero-split — no longer used */

.hero-split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px 60px 80px;
  gap: 32px;
}

.hero-contact-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 400;
}

.hero-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.7;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  color: var(--primary-dark);
  line-height: 1.15;
  max-width: 520px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--primary);
  max-width: 440px;
  line-height: 1.7;
  opacity: 0.85;
}

.hero-split-right {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════
   SECTION 2: BOOKING + BUSINESS INFO — Split
   ═══════════════════════════════════════════════ */
.booking-info-split {
  background: var(--white);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.split-left .section-title,
.split-right .section-title {
  margin-bottom: 24px;
}

.booking-widget {
  background: var(--sage);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 400px;
}

.biz-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--sage);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   SECTION 3: INTRO OFFERS — Two Cards
   ═══════════════════════════════════════════════ */
.offers {
  background: var(--cream);
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

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

.offer-image-wrap {
  overflow: hidden;
  height: 280px;
}

.offer-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-image-wrap img {
  transform: scale(1.05);
}

.offer-body {
  padding: 32px;
  text-align: center;
}

.offer-body h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.offer-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════
   SECTION 4: TREATMENTS — Image + Table Split
   ═══════════════════════════════════════════════ */
.treatments-split {
  background: var(--white);
}

.treatments-row {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 48px;
  align-items: start;
}

.treatments-image {
  position: sticky;
  top: 100px;
}

.treatments-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.treatments-table-side .section-title {
  margin-bottom: 12px;
}

.treatments-table-wrap {
  overflow-x: auto;
}

.treatments-table {
  width: 100%;
  border-collapse: collapse;
}

.treatments-table thead {
  background: var(--primary);
}

.treatments-table th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.treatments-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.treatments-table tbody tr:hover {
  background: var(--sage);
}

.treat-name {
  font-weight: 700;
  color: var(--primary);
}

.treat-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* Mobile treatment cards — hidden on desktop */
.treatments-cards {
  display: none;
}

.treat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
}

.treat-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.treat-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.treat-card-details span {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--sage);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════
   SECTION 5: THERAPISTS — Alternating Left-Right
   ═══════════════════════════════════════════════ */
.therapists {
  background: var(--cream);
}

.therapist-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.therapist-row:last-child {
  margin-bottom: 0;
}

.therapist-row.reverse .therapist-image {
  order: 2;
}

.therapist-row.reverse .therapist-info {
  order: 1;
}

.therapist-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.therapist-name {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.therapist-title {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.therapist-exp {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.therapist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.therapist-tags .tag {
  display: inline-block;
  background: var(--sage);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}

.therapist-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   SECTION 6: ENVIRONMENT GALLERY
   ═══════════════════════════════════════════════ */
.environment {
  background: var(--white);
}

.env-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.env-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.env-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.env-item:hover img {
  transform: scale(1.06);
}

.env-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26, 74, 90, 0.8), transparent);
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition);
}

.env-item:hover .env-overlay {
  transform: translateY(0);
  opacity: 1;
}

.env-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.env-overlay p {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.9;
}

/* ═══════════════════════════════════════════════
   SECTION 7: ABOUT — Split Layout
   ═══════════════════════════════════════════════ */
.about {
  background: var(--sage);
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* old about-image override removed — handled above */

.about-text .section-title {
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════
   SECTION 8: REVIEWS
   ═══════════════════════════════════════════════ */
.reviews {
  background: var(--cream);
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card cite {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
}

/* ═══════════════════════════════════════════════
   SECTION 9: FAQ
   ═══════════════════════════════════════════════ */
.faq {
  background: var(--white);
}

.faq .section-title {
  margin-bottom: 48px;
}

.faq-question {
  font-family: var(--font-body);
  color: var(--primary);
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-answer-inner {
  color: var(--text-muted);
}

.faq-item {
  border-color: var(--border);
}

/* ═══════════════════════════════════════════════
   SECTION 10: FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.social-links a:hover {
  color: var(--gold-light);
}

.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .promo-hero__headline {
    font-size: 2.25rem;
  }

  .overview-right {
    padding: 48px 32px;
  }

  .membership-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-map {
    aspect-ratio: 16 / 9;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Section titles */
  .section-title {
    font-size: 1.75rem;
  }

  /* Hero */
  .hero-contact__info {
    max-width: 100%;
  }

  .hero-contact__city {
    font-size: 1.5rem;
  }

  .hero-content-block__text {
    max-width: 100%;
  }

  .hero-content-block__inner {
    padding: 48px 0 56px;
  }

  .hero-content-block__title {
    font-size: 2rem;
  }

  .hero-content-block__ctas {
    flex-direction: column;
  }

  .hero-content-block__ctas a {
    text-align: center;
  }

  /* Hide desktop float image, show mobile inline */
  .hero-float-img {
    display: none;
  }

  .hero-content-block__mobile-img {
    display: block;
  }

  /* Overview: stack */
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-image {
    height: 280px;
  }

  .overview-hours {
    padding: 36px 24px;
  }

  .overview-right {
    padding: 48px 24px;
  }

  .overview-headline {
    font-size: 1.6rem;
  }

  /* Offers header: stack */
  .offers-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .offers-header__desc {
    max-width: 100%;
  }

  /* Carousel cards smaller on mobile */
  .carousel__card {
    flex: 0 0 260px;
  }

  .carousel__card--tall {
    flex: 0 0 240px;
  }

  /* Gift cards: stack */
  .giftcard-grid {
    grid-template-columns: 1fr;
  }

  .giftcard-image {
    height: 280px;
  }

  .giftcard-content {
    padding: 40px 24px;
  }

  .giftcard-headline {
    font-size: 1.6rem;
  }

  /* Membership: stack */
  .membership-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 280px;
  }

  .about-content {
    padding: 40px 24px;
  }

  .about-headline {
    font-size: 1.6rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer {
    padding: 48px 0 24px;
  }
}

@media (max-width: 480px) {
  .hero-content-block__title {
    font-size: 1.6rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .carousel__card {
    flex: 0 0 220px;
  }

  .carousel__card--tall {
    flex: 0 0 200px;
  }

  .membership-card {
    padding: 20px;
  }
}
