/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 84px; }

:root {
  --color-bg: #fcfbfa;          /* soft luxurious off-white */
  --color-bg-alt: #f4efe6;      /* warm neutral for alternating sections */
  --color-charcoal: #2c2a29;    /* deep charcoal text */
  --color-charcoal-light: #55524e;
  --color-gold: #c5a059;        /* deep refined gold */
  --color-gold-dark: #a9823f;
  --color-clay: #a97b5a;        /* muted clay / earth tone */
  --color-text-light: #78746e;
  --color-white: #ffffff;
  --shadow: 0 10px 34px rgba(44, 42, 41, 0.08);
  --shadow-lg: 0 20px 50px rgba(44, 42, 41, 0.12);
  --radius: 14px;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--color-charcoal);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  color: var(--color-charcoal);
  line-height: 1.25;
  font-weight: 600;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--color-bg-alt); }

/* ---------- Thai pattern texture ---------- */
.thai-pattern-bg { position: relative; }
.thai-pattern-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("../images/thai-pattern.png");
  background-size: 220px 354px;
  background-repeat: repeat;
}
.thai-pattern-bg > .container { position: relative; z-index: 1; }

/* ---------- Ornament divider ---------- */
.ornament { display: flex; justify-content: center; margin-bottom: 22px; }
.ornament svg { width: 58px; height: 38px; }
.ornament img {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 3px 8px rgba(197, 160, 89, 0.35));
}

.section-header { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-header .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  color: var(--color-clay);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-header h2 { font-size: 2.35rem; margin-bottom: 16px; }
.section-header p { color: var(--color-text-light); font-size: 1.02rem; }

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-gold { background: var(--color-gold); color: var(--color-white); }
.btn-gold:hover { background: var(--color-gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-charcoal { background: var(--color-charcoal); color: var(--color-white); }
.btn-charcoal:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { border-color: rgba(255,255,255,0.6); color: var(--color-white); }
.btn-outline:hover { background: var(--color-white); color: var(--color-charcoal); border-color: var(--color-white); }
.btn-outline-dark { border-color: var(--color-charcoal); color: var(--color-charcoal); }
.btn-outline-dark:hover { background: var(--color-charcoal); color: var(--color-white); }

.btn-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 42, 41, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--color-charcoal);
  white-space: nowrap;
}
.logo .gold { color: var(--color-gold); }
.logo-icon { width: 34px; height: 34px; object-fit: contain; flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 19px;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
  padding: 6px 0;
  color: var(--color-charcoal-light);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--color-gold);
  transition: width 0.25s ease;
}
.nav-links a.active,
.nav-links a:hover { color: var(--color-charcoal); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.7rem; letter-spacing: 0.5px; }

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border: 1.5px solid var(--color-gold);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-charcoal);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.lang-btn:hover { background: var(--color-gold); color: var(--color-white); }
.lang-btn .caret { font-size: 0.6rem; }

.mobile-book-btn { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background: linear-gradient(135deg, #23211f 0%, #322c27 45%, #55442f 100%);
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-bg-wrap {
  position: absolute;
  top: -12%; left: 0;
  width: 100%; height: 124%;
  z-index: 0;
  will-change: transform;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide-bg.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(30, 27, 24, 0.82) 0%, rgba(35, 33, 31, 0.72) 45%, rgba(60, 48, 34, 0.78) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  transition: opacity 0.4s ease;
}
.hero-inner.fade-out { opacity: 0; }

/* ---------- Hero carousel controls ---------- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(197, 160, 89, 0.5);
  background: rgba(44, 42, 41, 0.3);
  color: var(--color-gold);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-arrow:hover { background: rgba(197, 160, 89, 0.25); border-color: var(--color-gold); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.hero-dots button.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.2);
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.82rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-block;
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero h1 .accent-gold { color: var(--color-gold); font-style: italic; }
.hero h2 {
  color: var(--color-gold);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  font-style: italic;
  margin: 0 auto 22px;
  max-width: 600px;
}
.hero p.tagline {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  margin: 0 auto 40px;
  max-width: 560px;
  line-height: 1.9;
}
.hero .btn-row { justify-content: center; }

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15), transparent 55%),
    linear-gradient(135deg, #23211f 0%, #322c27 45%, #55442f 100%);
  color: var(--color-white);
  padding: 110px 0 78px;
  text-align: center;
}
.page-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
}
.page-hero h1 { color: var(--color-white); font-size: 2.5rem; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto; }

/* ---------- Icon badges ---------- */
.icon-badge {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--color-clay);
  margin-bottom: 20px;
}
.icon-badge svg { width: 28px; height: 28px; }

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 32px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 38px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ---------- Highlights strip (home) ---------- */
.highlights {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px 40px;
  margin-top: -64px;
  position: relative;
  z-index: 2;
}
.highlight-item { display: flex; align-items: center; gap: 16px; flex: 1 1 220px; }
.highlight-item .icon-badge { margin-bottom: 0; flex-shrink: 0; width: 52px; height: 52px; font-size: 1.3rem; }
.highlight-item h4 { font-size: 0.98rem; margin-bottom: 2px; }
.highlight-item p { font-size: 0.86rem; color: var(--color-text-light); margin: 0; }

/* ---------- Philosophy ---------- */
.philosophy-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-inner p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.95;
  margin-bottom: 26px;
}
.philosophy-inner p:last-child { margin-bottom: 0; }

/* ---------- Appointment card ---------- */
.appointment-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-white);
  border-radius: 20px;
  border-top: 4px solid var(--color-gold);
  box-shadow: var(--shadow-lg);
  padding: 56px 48px;
}
.appointment-card .icon-badge { margin: 0 auto 22px; width: 72px; height: 72px; font-size: 1.9rem; background: var(--color-bg-alt); }
.appointment-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.appointment-card p { color: var(--color-text-light); margin-bottom: 8px; }
.phone-link {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 22px 0 10px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
.phone-link:hover { color: var(--color-gold); }
.appointment-note { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 24px; }

/* ---------- Service list ---------- */
.service-block {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 36px;
  margin-bottom: 28px;
}
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-bg-alt);
  gap: 20px;
}
.service-row:last-child { border-bottom: none; }
.service-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.service-info p { color: var(--color-text-light); font-size: 0.92rem; }
.service-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--color-gold-dark);
  font-size: 1.1rem;
  white-space: nowrap;
}
.price-note {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-top: -8px;
  margin-bottom: 40px;
}

/* ---------- Duration pricing grid ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.price-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 20px;
  text-align: center;
  transition: transform 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card .duration {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 10px;
}
.price-card .price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-charcoal);
}
.price-card.popular {
  border: 2px solid var(--color-gold);
  transform: scale(1.05);
}
.price-card.popular:hover { transform: scale(1.05) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ---------- Special package promo ---------- */
.special-package {
  margin-top: 44px;
  background: linear-gradient(135deg, #23211f 0%, #322c27 45%, #55442f 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}
.special-package-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.special-package h3 { color: var(--color-white); font-size: 1.6rem; margin-bottom: 8px; }
.special-package-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 26px;
}
.special-package .feature-list {
  max-width: 380px;
  margin: 0 auto 30px;
}
.special-package .feature-list li { color: rgba(255, 255, 255, 0.85); }
.special-package .feature-check { background: rgba(197, 160, 89, 0.2); color: var(--color-gold); }

/* ---------- About page ---------- */
.about-flex {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
}
.about-flex > div { flex: 1 1 400px; }
.about-visual {
  border-radius: var(--radius);
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.values-grid { margin-top: 64px; }

/* ---------- Gift cards ---------- */
.giftcard-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.giftcard-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin: 4px 0 28px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-charcoal-light);
  font-size: 0.95rem;
  line-height: 1.6;
}
.feature-list .feature-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}
.cert-badge img { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; }
.cert-badge .cert-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--color-charcoal); }
.cert-badge .cert-sub { font-size: 0.8rem; color: var(--color-text-light); }

/* ---------- Service card photos ---------- */
.card-photo {
  margin: -38px -30px 24px;
  height: 190px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.card:hover .card-photo img { transform: scale(1.06); }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 34px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stars { color: var(--color-gold); letter-spacing: 3px; margin-bottom: 18px; font-size: 1rem; }
.testimonial-card blockquote {
  font-size: 1.02rem;
  color: var(--color-charcoal-light);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-name { font-weight: 700; font-family: 'Poppins', sans-serif; font-size: 0.92rem; }
.testimonial-role { font-size: 0.82rem; color: var(--color-text-light); }
.testimonial-note {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin-top: 44px;
}

/* ---------- Google reviews widget placeholder ---------- */
.reviews-widget-slot {
  max-width: 900px;
  margin: 0 auto 8px;
}
.reviews-widget-slot:empty { display: none; }

/* ---------- Review carousel (CSS fallback) ---------- */
.carousel-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.review-carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 4px 28px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.review-carousel::-webkit-scrollbar { display: none; }

.review-card {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: min(400px, 82vw);
  background: var(--color-white);
  border-radius: 18px;
  border-top: 3px solid var(--color-gold);
  box-shadow: var(--shadow);
  padding: 40px 34px 32px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-quote-mark {
  font-family: 'Poppins', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.5;
  margin-bottom: 4px;
}
.review-card .stars { justify-content: center; display: flex; }
.review-card blockquote {
  font-size: 1rem;
  color: var(--color-charcoal-light);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 20px;
}
.review-divider {
  color: var(--color-clay);
  font-size: 0.85rem;
  letter-spacing: 4px;
  margin: 0 auto 16px;
}
.review-name { font-weight: 700; font-family: 'Poppins', sans-serif; font-size: 0.94rem; }
.review-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--color-bg-alt);
  color: var(--color-clay);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid rgba(44,42,41,0.1);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-charcoal);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}
.carousel-arrow:hover { background: var(--color-gold); color: var(--color-white); }
.carousel-arrow.prev { left: -23px; }
.carousel-arrow.next { right: -23px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--color-bg-alt);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dots button.active { background: var(--color-gold); transform: scale(1.2); }

/* ---------- Contact / Booking page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}
.contact-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--color-text-light); font-size: 0.95rem; }
.contact-item a:hover { color: var(--color-gold-dark); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 0; border-bottom: 1px solid var(--color-bg-alt); font-size: 0.95rem; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--color-charcoal); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 68px 0;
  text-align: center;
}
.cta-band h2 { color: var(--color-white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid rgba(44, 42, 41, 0.08);
  padding: 64px 0 28px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-charcoal);
}
.footer-logo .gold { color: var(--color-gold); }
.footer-logo .logo-icon { width: 32px; height: 32px; }
.footer-address { color: var(--color-text-light); font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--color-charcoal-light);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--color-gold-dark); }
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  padding-top: 26px;
  margin-top: 8px;
  border-top: 1px solid rgba(44, 42, 41, 0.08);
  width: 100%;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 4px 28px;
  margin-bottom: 16px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-charcoal);
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-gold);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--color-text-light);
  line-height: 1.8;
  padding-bottom: 22px;
  font-size: 0.95rem;
}

/* ---------- Custom cursor (desktop only) ---------- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  background: radial-gradient(circle, rgba(197, 160, 89, 0.28) 0%, rgba(197, 160, 89, 0) 70%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.18s ease, background 0.2s ease;
}
.cursor-glow.visible { opacity: 1; }
.cursor-glow.active {
  transform: scale(1.7);
  background: radial-gradient(circle, rgba(197, 160, 89, 0.4) 0%, rgba(197, 160, 89, 0) 70%);
}
@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1140px) {
  .nav-links, .nav-cta .btn-gold { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 22px 24px;
    gap: 18px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(44,42,41,0.08);
  }
  .nav.open .nav-cta { display: flex; }
  .nav.open .nav-links .mobile-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-white);
    font-weight: 600;
    padding: 13px 0;
    border-radius: 50px;
    margin-top: 6px;
    width: 100%;
  }
  .nav.open .nav-links .mobile-book-btn::after { display: none; }
}

@media (min-width: 1141px) {
  .nav.open .nav-links { display: flex; }
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-flex { flex-direction: column; }
  .hero h1 { font-size: 2.3rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-4px); }
  .appointment-card { padding: 40px 28px; }
  .phone-link { font-size: 1.6rem; }
}

@media (max-width: 720px) {
  .highlights { margin-top: 30px; flex-direction: column; }
  .hero { padding: 110px 0 90px; text-align: center; }
  .btn-row { justify-content: center; }
  .section { padding: 72px 0; }
  .nav { padding: 16px 16px; gap: 10px; }
  .logo { font-size: 0.92rem; gap: 6px; }
  .logo-icon { width: 26px; height: 26px; }
  .lang-btn { padding: 6px 12px; font-size: 0.62rem; gap: 4px; }
  .nav-cta { gap: 8px; }
  .carousel-arrow { display: none; }
  .review-card { width: 88vw; padding: 34px 24px 26px; }
  .hero-arrow { width: 38px; height: 38px; font-size: 1.05rem; }
  .hero-arrow.prev { left: 10px; }
  .hero-arrow.next { right: 10px; }
  .hero-dots { bottom: 18px; }
}
