/* ============================================================
   Tina Thai Therapy — Stylesheet v3
   Warm Plum + Gold  |  Wix-matched redesign
   ============================================================ */

/* ---------- Reset & Custom Properties ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:       #6B2D5B;
  --primary-dark:  #4A1D3E;
  --primary-light: #8B4578;
  --gold:          #C9A96E;
  --gold-light:    #e0c992;
  --gold-dark:     #a88a4a;
  --cream:         #FDF6F0;
  --bg-light:      #f5ede6;
  --bg-warm:       #f0e4d8;
  --text:          #2D2226;
  --text-light:    #6b5b60;
  --white:         #ffffff;

  --shadow-sm:  0 2px 12px rgba(74,29,62,0.07);
  --shadow:     0 4px 24px rgba(74,29,62,0.10);
  --shadow-lg:  0 12px 48px rgba(74,29,62,0.18);
  --radius:     14px;
  --radius-sm:  8px;
  --trans:      0.28s ease;
  --navbar-h:   72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h);
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.72;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--primary-dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover { color: var(--gold-dark); }

img { max-width: 100%; height: auto; display: block; }

address { font-style: normal; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(253,246,240,0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(107,45,91,0.08);
  transition: background var(--trans), box-shadow var(--trans);
}

.navbar.scrolled {
  background: rgba(253,246,240,0.97);
  box-shadow: 0 2px 24px rgba(74,29,62,0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon { flex-shrink: 0; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-menu a {
  display: block;
  padding: 7px 14px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text);
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: color var(--trans), background var(--trans);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  background: rgba(107,45,91,0.07);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--trans);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--trans);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-gold {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,169,110,0.45);
}

.btn-outline-hero {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-arrow { font-size: 1.1em; }

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 96px 0; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.gold-italic {
  font-style: italic;
  color: var(--gold-dark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/generated/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(74,29,62,0.86) 0%,
    rgba(107,45,91,0.72) 55%,
    rgba(74,29,62,0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 28px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Lotus icon */
.hero-icon {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.8s 0.1s ease forwards;
}

/* Headline */
.hero-title {
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.9s 0.25s ease forwards;
}
.hero-title-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  text-shadow: 0 3px 24px rgba(0,0,0,0.25);
  line-height: 1.05;
}
.hero-title-sub {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.75rem, 1.4vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.80);
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.9s 0.4s ease forwards;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gold-light);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeInUp 0.9s 0.55s ease forwards;
}
.tagline-line {
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: rgba(201,169,110,0.55);
  border-radius: 1px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.9s 0.7s ease forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}
.scroll-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
}
.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), rgba(201,169,110,0));
  border-radius: 1px;
  animation: scrollPulse 2s 1.5s ease-in-out infinite;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left: Image */
.about-image-wrap { position: relative; }

.about-image-inner {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-photo {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 120px var(--radius) var(--radius) var(--radius);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(107,45,91,0.08);
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: center;
  line-height: 1.2;
}
.about-badge svg {
  stroke: var(--gold);
}

/* Right: Text */
.about-text {
  padding: 16px 0;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 14px;
  line-height: 1.75;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(107,45,91,0.10);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}
.stat-plus {
  color: var(--gold);
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-light);
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(107,45,91,0.12);
  border-radius: 1px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-light); }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.services-header-left {}

.services-main-heading {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.services-desc {
  max-width: 420px;
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.book-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  transition: color var(--trans), letter-spacing var(--trans);
}
.book-link:hover {
  color: var(--primary);
  letter-spacing: 0.04em;
}

/* Variant switcher */
.variant-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: 50px;
  padding: 6px 10px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.switcher-label {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 0 6px;
  white-space: nowrap;
}
.variant-btn {
  padding: 6px 16px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.02em;
}
.variant-btn.active,
.variant-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Show/hide variants */
.services-variant { display: block; }
.services-variant.hidden { display: none; }

/* ── Pricing Banner ── */
.pricing-banner {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: 16px;
  color: #fff;
}
.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.pricing-subtitle {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}
.pricing-tiers {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pricing-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 1rem 1.8rem;
  min-width: 120px;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.pricing-tier:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.pricing-tier:hover .tier-book {
  opacity: 1;
}
.tier-book {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-top: 0.4rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.tier-duration {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* ---- Variant A: Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(107,45,91,0.07);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: default;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(107,45,91,0.15);
}

.svc-card-body {
  padding: 22px 22px 0;
  flex: 1;
}
.svc-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.svc-from {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.svc-from strong {
  color: var(--gold-dark);
  font-size: 1rem;
}
.svc-tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  padding-bottom: 14px;
}

/* Expanded prices (revealed on hover/click) */
.svc-card-prices {
  background: var(--bg-light);
  border-top: 1px solid rgba(107,45,91,0.07);
  padding: 14px 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.svc-card.expanded .svc-card-prices,
.svc-card:hover .svc-card-prices {
  max-height: 180px;
  padding: 14px 22px;
}
.svc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(107,45,91,0.06);
  font-size: 0.88rem;
}
.svc-price-row:last-of-type { border-bottom: none; }
.svc-price-row .dur { color: var(--text-light); }
.svc-price-row .prc { font-weight: 700; color: var(--primary-dark); }
.svc-price-note {
  font-size: 0.77rem;
  color: var(--primary-light);
  font-style: italic;
  margin-top: 6px;
}

/* ---- Variant B: Tabs ---- */
.tabs-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid rgba(107,45,91,0.18);
  background: transparent;
  color: var(--primary-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tab-svc-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(107,45,91,0.09);
}
.tab-svc-item:last-child { border-bottom: none; }

.tab-svc-info {
  flex: 1;
}
.tab-svc-info h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.tab-svc-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
}

.tab-svc-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  min-width: 150px;
  text-align: right;
}
.tab-price {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.tab-price span {
  font-size: 0.85rem;
  color: var(--text-light);
}
.tab-price strong {
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 700;
}
.tab-price-note {
  font-size: 0.77rem;
  color: var(--primary-light);
  font-style: italic;
  text-align: right;
}

/* ---- Variant C: Accordion ---- */
.accordion-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.accordion-single-col {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid rgba(107,45,91,0.10);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color var(--trans);
}
.accordion-header:hover .acc-name { color: var(--primary); }

.acc-num {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 28px;
}

.acc-name {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: color var(--trans);
}

.acc-icon {
  flex-shrink: 0;
  stroke: var(--text-light);
  transition: transform var(--trans), stroke var(--trans);
}
.accordion-header[aria-expanded="true"] .acc-icon {
  transform: rotate(180deg);
  stroke: var(--primary);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.accordion-body.open { max-height: 400px; }

.accordion-body p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
  padding-bottom: 12px;
}

.acc-prices {
  padding-bottom: 18px;
}

.acc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(107,45,91,0.07);
  font-size: 0.9rem;
}
.acc-price-row:last-of-type { border-bottom: none; }
.acc-price-row span { color: var(--text-light); }
.acc-price-row strong { color: var(--primary-dark); font-weight: 700; }

.acc-note {
  font-size: 0.78rem !important;
  color: var(--primary-light) !important;
  font-style: italic;
  padding-top: 4px;
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background: url('../images/generated/booking-bg.jpg') center/cover no-repeat;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(74,29,62,0.88) 0%,
    rgba(107,45,91,0.80) 50%,
    rgba(74,29,62,0.88) 100%
  );
}

.booking-inner {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.booking-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}

.booking-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.booking-subtitle {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.booking-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   AFTERCARE
   ============================================================ */
.aftercare { background: var(--white); }

.aftercare-main-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.aftercare-intro {
  max-width: 600px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 52px;
}

.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aftercare-card {
  border-radius: var(--radius);
  border: 1px solid rgba(107,45,91,0.07);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--trans), transform var(--trans);
}
.aftercare-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.aftercare-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--primary-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 50px;
}

.aftercare-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.aftercare-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.aftercare-card:hover .aftercare-img { transform: scale(1.05); }

/* Aftercare images (Leonardo.ai generated, with gradient fallbacks) */
.aftercare-img--hydrate {
  background: linear-gradient(135deg, #c8e6f0 0%, #7eb8cc 100%);
  background: url('../images/generated/aftercare-hydrate.jpg') center/cover no-repeat;
}
.aftercare-img--rest {
  background: linear-gradient(135deg, #e8d5e5 0%, #b88aaa 100%);
  background: url('../images/generated/aftercare-rest.jpg') center/cover no-repeat;
}
.aftercare-img--stretch {
  background: linear-gradient(135deg, #f5e8d5 0%, #d4a878 100%);
  background: url('../images/generated/aftercare-stretch.jpg') center/cover no-repeat;
}
.aftercare-img--meals {
  background: linear-gradient(135deg, #f0e8d0 0%, #c8b080 100%);
  background: url('../images/generated/aftercare-meals.jpg') center/cover no-repeat;
}
.aftercare-img--observe {
  background: linear-gradient(135deg, #e8d5d0 0%, #b88880 100%);
  background: url('../images/generated/aftercare-observe.jpg') center/cover no-repeat;
}
.aftercare-img--schedule {
  background: linear-gradient(135deg, #d5e0e8 0%, #7898b0 100%);
  background: url('../images/generated/aftercare-schedule.jpg') center/cover no-repeat;
}

.aftercare-body {
  padding: 22px 22px 26px;
}
.aftercare-body h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.aftercare-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }

.contact-heading {
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--primary-dark);
  margin-bottom: 52px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
  min-height: 440px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid rgba(107,45,91,0.07);
  transition: box-shadow var(--trans), transform var(--trans);
}
.contact-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(107,45,91,0.10);
  color: var(--primary);
}

.contact-card-content h3 {
  font-size: 1.02rem;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.contact-card-content p,
.contact-card-content address {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-tel {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}
.contact-tel:hover { color: var(--gold-dark); }

.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact-map-wrap iframe {
  width: 100%;
  flex: 1;
  min-height: 400px;
  display: block;
}

/* Reviews badge */
.reviews-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transition: background var(--trans);
}
.reviews-badge:hover {
  background: var(--primary);
}
.reviews-link {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--gold-light);
  opacity: 0.7;
  transition: opacity var(--trans);
}
.reviews-badge:hover .reviews-link {
  opacity: 1;
}
.reviews-stars {
  display: flex;
  gap: 2px;
}
.reviews-text {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.reviews-text strong {
  color: var(--gold-light);
  font-size: 1.05rem;
}

/* Get Directions button */
.directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--gold);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background var(--trans), transform var(--trans);
}
.directions-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-col address p {
  margin-bottom: 10px;
  font-size: 0.93rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.83rem;
}

.footer-bottom-nav {
  display: flex;
  gap: 20px;
}
.footer-bottom-nav a {
  color: rgba(255,255,255,0.45);
  font-size: 0.83rem;
  transition: color var(--trans);
}
.footer-bottom-nav a:hover { color: var(--gold-light); }

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(74,29,62,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--trans);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL / INTERSECTION ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {

  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0s);
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .svc-card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow var(--trans), border-color var(--trans);
  }
  .svc-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes scrollPulse {
    0%   { transform: scaleY(1);   opacity: 0.8; }
    50%  { transform: scaleY(0.6); opacity: 0.4; }
    100% { transform: scaleY(1);   opacity: 0.8; }
  }
}

/* For users who prefer reduced motion — keep elements visible */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .svc-card,
  .hero-icon,
  .hero-title,
  .hero-subtitle,
  .hero-tagline,
  .hero-buttons,
  .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ============================================================
   RESPONSIVE — 1100px (large)
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 900px (tablet)
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 72px 0; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrap { order: -1; }
  .about-photo { height: 360px; border-radius: 80px var(--radius) var(--radius) var(--radius); }
  .about-badge { bottom: -12px; right: -4px; width: 90px; height: 90px; font-size: 0.72rem; }
  .about-stats { gap: 20px; }

  /* Services grid stays 2-col */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Accordion two-col → single col (if used) */
  .accordion-two-col { grid-template-columns: 1fr; gap: 0; }

  /* Tab items → stack */
  .tab-svc-item { flex-direction: column; gap: 16px; }
  .tab-svc-prices { min-width: auto; text-align: left; }
  .tab-price { justify-content: flex-start; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 340px; }
  .contact-map-wrap iframe { min-height: 340px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — 768px (mobile)
   ============================================================ */
@media (max-width: 768px) {
  :root { --navbar-h: 64px; }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 24px;
    gap: 2px;
    transform: translateY(-120%);
    transition: transform 0.32s ease;
    box-shadow: 0 12px 40px rgba(74,29,62,0.18);
    border-bottom: 1px solid rgba(107,45,91,0.08);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a {
    display: block;
    padding: 13px 16px;
    font-size: 1rem;
  }

  /* Hero */
  .hero-content { padding: 100px 20px 60px; }
  .hero-title-main { font-size: 2.8rem; }
  .hero-title-sub { font-size: 2.2rem; }
  .hero-buttons { gap: 10px; }

  /* Services */
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }

  /* Variant B tab prices */
  .tab-price strong { font-size: 0.95rem; }

  /* Aftercare → 1 col */
  .aftercare-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-nav { justify-content: center; }
}

/* ============================================================
   RESPONSIVE — 480px (small mobile)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title-main { font-size: 2.3rem; }
  .hero-title-sub { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }

  .booking-btns { flex-direction: column; align-items: center; }

  .contact-card { padding: 18px; }

  /* Pricing banner mobile */
  .pricing-tiers {
    gap: 0.6rem;
  }
  .pricing-tier {
    padding: 0.8rem 1.2rem;
    min-width: 100px;
  }
  .tier-price {
    font-size: 1.4rem;
  }
}
