/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary) !important;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.brand-diamond {
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}
.brand-diamond.large { font-size: 32px; }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  color: var(--text-secondary);
  font-size: 13px;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link-active { color: var(--gold) !important; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.btn-nav-login {
  padding: 7px 18px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  color: var(--gold);
  font-size: 13px;
  transition: background var(--transition), color var(--transition);
}
.btn-nav-login:hover {
  background: var(--gold);
  color: #111;
}

/* ============================================================
   HERO BANNER (Home)
   ============================================================ */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.hero-images {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  height: 100%;
  gap: 3px;
}
.hero-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Placeholder panels when no real images */
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-img-scene {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.hero-img-scene svg {
  flex: 1;
  max-height: 200px;
  filter: drop-shadow(0 4px 16px rgba(201,169,110,0.15));
}
.hero-img-label {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-align: center;
  padding: 8px 0 4px;
  font-family: 'Playfair Display', serif;
  opacity: 0.8;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 60px;
  text-align: center;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 500px;
}
.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}


/* ============================================================
   HOME PAGE
   ============================================================ */
.featured-section {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 24px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--h2-color);
}
.section-link { font-size: 13px; color: var(--gold); }
.section-link:hover { color: var(--gold-light); }

/* Why Us grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 24px;
}
@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.why-icon { font-size: 32px; margin-bottom: 12px; color: var(--gold); }
.why-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.why-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* Reviews */
.reviews-section {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 24px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 991px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.review-stars { margin-bottom: 10px; }
.review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.review-name { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.review-date { font-size: 11px; color: var(--text-muted); }

/* Reviews Ticker (continuous scroll) */
.reviews-ticker { overflow: hidden; position: relative; }
.reviews-ticker::before,
.reviews-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}
.reviews-ticker::before { left: 0;  background: linear-gradient(to right, var(--bg-primary), transparent); }
.reviews-ticker::after  { right: 0; background: linear-gradient(to left,  var(--bg-primary), transparent); }
.reviews-ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.reviews-ticker:hover .reviews-ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-ticker-card {
  width: 300px;
  min-width: 300px;
  flex-shrink: 0;
}

/* ============================================================
   HOME — Gallery (บรรยากาศในร้าน)
   ============================================================ */
.gallery-section {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery-item:first-child { grid-row: span 1; }
}
@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-card-hover);
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.65);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(5,5,5,0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-over-dark);
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-lg);
}
.gallery-placeholder-icon { font-size: 28px; }

/* ============================================================
   HOME — Stats Bar
   ============================================================ */
.stats-bar-wrap {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 767px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 399px) { .stats-bar { grid-template-columns: 1fr; } }
.stats-item {
  background: var(--bg-card);
  padding: 24px 16px;
  text-align: center;
}
.stats-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stats-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ============================================================
   HOME — Staff Showcase
   ============================================================ */
.staff-section {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 24px;
}
.staff-carousel {
  overflow: hidden;
  margin-top: 16px;
  cursor: grab;
}
.staff-carousel:active { cursor: grabbing; }
.staff-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.staff-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 280px;
  min-width: 280px;
  flex-shrink: 0;
}
.staff-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,169,110,0.12);
}
.staff-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.staff-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.staff-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}
.staff-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
}
.staff-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.staff-specialty {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.staff-rating {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ============================================================
   HOME — Loyalty Teaser
   ============================================================ */
.loyalty-teaser {
  max-width: 1280px;
  margin: 40px auto 24px;
  padding: 0 24px;
}
.loyalty-teaser-inner {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .loyalty-teaser-inner { flex-direction: column; align-items: flex-start; padding: 20px; }
}
.loyalty-teaser-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.loyalty-teaser-text p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   HOME — LINE OA Banner
   ============================================================ */
.line-oa-banner {
  max-width: 1280px;
  margin: 0 auto 24px;
  padding: 0 24px;
}
.line-oa-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .line-oa-inner { flex-direction: column; align-items: flex-start; padding: 16px; }
}
.line-oa-text { font-size: 14px; color: var(--text-primary); }
.line-oa-text strong { color: var(--green); }

/* ============================================================
   HOME — Info Bar
   ============================================================ */
.info-bar {
  max-width: 1280px;
  margin: 0 auto 0;
  padding: 0 24px;
}
.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 767px) { .info-bar-inner { grid-template-columns: 1fr; } }
.info-item {
  background: var(--bg-card);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-item-icon { font-size: 20px; color: var(--gold); }
.info-item-label { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.info-item-value { font-size: 13px; color: var(--text-primary); font-weight: 500; }

/* ============================================================
   FOOTER — Luxury 4-column
   ============================================================ */
.footer {
  background: var(--bg-card);
  margin-top: 60px;
}

/* CTA Strip ด้านบน footer */
.footer-cta-strip {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.footer-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.footer-cta-sub { font-size: 13px; color: var(--text-muted); }

/* Main columns */
.footer-main { padding: 48px 0 36px; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

/* Brand column */
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--text-primary);
}
.footer-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--transition);
  color: var(--text-secondary);
}
.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Contact column */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-icon { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* Copyright bar */
.footer-copy {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-back-top {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.footer-back-top:hover { color: var(--gold); }


/* ============================================================
   LANDING PAGE — templates/frontend/booking/index.html
   สกรีนด้วย body.page-landing เพื่อกันชนกับ booking wizard styles
   ============================================================ */

/* Bootstrap utility → project theme */
.page-landing a { color: var(--text-secondary); text-decoration: none; transition: .3s; }
.page-landing a:hover { color: var(--gold); }
.page-landing .text-primary   { color: var(--gold) !important; }
.page-landing .text-secondary { color: var(--text-secondary) !important; }
.page-landing .text-muted     { color: var(--text-muted) !important; }
.page-landing .bg-primary     { background: var(--gold) !important; }
.page-landing .bg-secondary   { background: var(--bg-card) !important; }
.page-landing .bg-light       { background: var(--bg-card) !important; }
.page-landing .bg-dark        { background: var(--bg-primary) !important; }
.page-landing .border-primary { border-color: var(--gold) !important; }

/* Spinner */
#spinner { opacity: 0; visibility: hidden; transition: opacity .8s ease-out, visibility 0s linear .5s; z-index: 99999; }
#spinner.show { transition: opacity .8s ease-out, visibility 0s linear 0s; visibility: visible; opacity: 1; }

.btn-primary-outline-0 { outline: 0; }
.btn-square    { width: 32px; height: 32px; padding: 0; display: flex; align-items: center; justify-content: center; }
.btn-sm-square { width: 34px; height: 34px; padding: 0; display: flex; align-items: center; justify-content: center; }
.btn-md-square { width: 44px; height: 44px; padding: 0; display: flex; align-items: center; justify-content: center; }
.btn-lg-square { width: 56px; height: 56px; padding: 0; display: flex; align-items: center; justify-content: center; }

/* Topbar */
.topbar { background: var(--bg-topbar, #111111); border-bottom: 1px solid var(--border); padding: 10px 0; }
.topbar a { color: var(--text-secondary); font-size: 13px; }
.topbar a:hover { color: var(--gold); }
.nav-fill { color: var(--text-secondary); }
.nav-fill:hover { color: var(--gold); }

/* Navbar overrides (scoped) */
.page-landing .navbar { background: var(--bg-card) !important; border-bottom: 1px solid var(--border); }
.page-landing .navbar-brand h1 { color: var(--gold); font-size: 1.8rem; margin: 0; }
.page-landing .navbar-light .navbar-nav .nav-link { color: var(--text-secondary) !important; font-weight: 500; padding: 8px 16px; }
.page-landing .navbar-light .navbar-nav .nav-link:hover,
.page-landing .navbar-light .navbar-nav .nav-link.active { color: var(--gold) !important; }
.page-landing .navbar-light .navbar-toggler-icon { filter: invert(1); }
.page-landing .dropdown-menu { background: var(--bg-card); border: 1px solid var(--border); }
.page-landing .dropdown-item { color: var(--text-secondary); }
.page-landing .dropdown-item:hover { background: var(--bg-card-hover); color: var(--gold); }
.btn-search { color: var(--text-muted); background: var(--bg-primary); border: 1px solid var(--border); }
.btn-search:hover { color: var(--gold); }

/* ── Mobile nav menu ── */
#mobileNavMenu {
  width: 100%;
  /* ensure collapse container is never clipped */
  overflow: hidden;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: .65rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: color .15s, background .15s;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: var(--gold);
  background: rgba(201, 169, 110, .07);
  outline: none;
}
.mobile-nav-link.active {
  color: var(--gold);
  background: rgba(201, 169, 110, .1);
  font-weight: 600;
}
/* gold left-border accent on active item */
.mobile-nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--gold);
  border-radius: 0 3px 3px 0;
}
/* needs relative positioning on the link for the ::before to work */
.mobile-nav-link { position: relative; }

/* Hero Carousel */
.carousel-header { position: relative; }
.carousel-header img { width: 100%; height: 560px; object-fit: cover; filter: brightness(.45); }
.carousel-caption { top: 0; bottom: 0; display: flex; align-items: center; justify-content: center; }
.carousel-caption > div { text-align: center; }
.carousel-caption h4 { color: var(--gold); letter-spacing: 3px; font-family: 'Inter', sans-serif; font-weight: 500; }
.carousel-caption h1 { color: var(--text-primary); font-size: clamp(2rem,5vw,3.5rem); }
.carousel-caption p { color: var(--text-secondary); }
.carousel-control-prev-icon, .carousel-control-next-icon { filter: invert(0.7) sepia(1) saturate(2) hue-rotate(5deg); }
.page-landing .carousel-indicators button { background: var(--gold); }

/* Section Label */
.section-label { color: var(--gold); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* Services */
.services { background: var(--bg-primary); }
.services-item { background: var(--bg-card); border: 1px solid var(--border) !important; border-radius: 12px; transition: .3s; }
.services-item:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(197,168,109,.12); }
.services-item h3 { color: var(--text-primary); }
.services-item p { color: var(--text-secondary); }
.services-img { background: var(--bg-primary); border-radius: 8px; overflow: hidden; }
.services-img img { transition: .3s; }
.services-item:hover .services-img img { transform: scale(1.04); }

/* About */
.about { background: var(--bg-card); }
.about h1 { color: var(--text-primary); }
.about p { color: var(--text-secondary); }
.btn-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; background: rgba(197,168,109,.85); border: 3px solid var(--gold); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .3s; }
.btn-play:hover { background: var(--gold); transform: translate(-50%,-50%) scale(1.1); }
.btn-play::after { content: ''; border-left: 22px solid #111; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 4px; }

/* Appointment */
.appointment { background: linear-gradient(135deg, #0a0a0a 0%, var(--bg-card) 100%); }
.appointment-form { background: rgba(197,168,109,.06); border: 1px solid rgba(197,168,109,.2); border-radius: 16px; }
.appointment-form .form-control,
.appointment-form .form-select { background: rgba(255,255,255,.05); color: var(--text-primary); border-color: rgba(255,255,255,.2); }
.appointment-form .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(197,168,109,.15); }
.appointment-form ::placeholder { color: var(--text-muted); }
.appointment-form .form-select option { background: var(--bg-card); color: var(--text-primary); }
.appointment-time { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 16px; }
.appointment-time h1 { color: var(--text-primary); }
.appointment-time p { color: var(--text-secondary); }

/* Gallery */
.gallery { background: var(--bg-primary); }
.gallery .nav-pills .nav-link { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); border-radius: 30px !important; }
.gallery .nav-pills .nav-link.active { background: var(--gold); color: #111; border-color: var(--gold); }
.gallery-img { position: relative; overflow: hidden; border-radius: 10px; }
.gallery-img .gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); opacity: 0; transition: .3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-img .gallery-overlay h4 { color: var(--gold); margin: 0; font-size: 15px; }
.gallery-img:hover .gallery-overlay { opacity: 1; }

/* Team */
.team { background: var(--bg-primary); }
.team-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: .3s; }
.team-item:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(197,168,109,.12); }
.team-img { overflow: hidden; }
.team-text { background: linear-gradient(135deg, var(--bg-card), rgba(197,168,109,.08)); }
.team-text h3 { color: var(--text-primary); font-size: 16px; }
.team-text p { color: var(--text-muted); font-size: 12px; }
.team-social { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0; transition: .3s; }
.team-item:hover .team-social { opacity: 1; }

/* Testimonial */
.testimonial { background: var(--bg-card); }
.testimonial-item { background: var(--bg-primary); border: 1px solid var(--border); border-radius: 12px; }
.testimonial-item p { color: var(--text-secondary); }
.testimonial-item h4 { color: var(--gold); }
#testimonialCarousel .carousel-indicators { position: static; margin: 24px 0 0; }
#testimonialCarousel .carousel-indicators button { width: 10px; height: 10px; border-radius: 50%; border: none; opacity: .4; }
#testimonialCarousel .carousel-indicators button.active { opacity: 1; }

/* Contact */
.contact-info-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; }
.contact-info-item h4 { color: var(--text-primary); }
.contact-info-item p { color: var(--text-secondary); }
.contact-info-item i { color: var(--gold); }
.contact-social { background: linear-gradient(135deg, var(--bg-card), rgba(197,168,109,.08)); border-radius: 0 0 10px 10px; }

/* Footer inner grid — responsive */
@media (max-width: 991px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* Footer (scoped) */
.page-landing .footer { background: var(--bg-card); border-top: 1px solid var(--border); margin-top: 0; }
.page-landing .footer h4 { color: var(--gold); font-size: 16px; margin-bottom: 20px; }
.page-landing .footer p,
.page-landing .footer a { color: var(--text-secondary); font-size: 13px; }
.page-landing .footer a:hover { color: var(--gold); }
.page-landing .footer .form-control { background: var(--bg-primary); border-color: var(--border); color: var(--text-primary); }
.page-landing .footer .form-control::placeholder { color: var(--text-muted); }
.page-landing .footer .form-control:focus { border-color: var(--gold); box-shadow: none; }
.footer-item a { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }

/* Copyright */
.copyright { background: var(--bg-primary); border-top: 1px solid var(--border); }
.copyright a, .copyright span { color: var(--text-muted); font-size: 12px; }
.copyright a:hover { color: var(--gold); }

/* Back to Top */
.back-to-top { position: fixed; right: 24px; bottom: 24px; width: 44px; height: 44px; background: var(--gold); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #111; z-index: 99; box-shadow: 0 4px 16px rgba(197,168,109,.4); transition: .3s; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* Search Modal */
#searchModal .modal-content { background: var(--bg-card); }
#searchModal .modal-header { border-color: var(--border); }
#searchModal .modal-title { color: var(--text-primary); }
#searchModal .btn-close { filter: invert(1); }
#searchModal .form-control { background: var(--bg-primary); border-color: var(--border); color: var(--text-primary); }
#searchModal .input-group-text { background: var(--gold); border-color: var(--gold); color: #111; }

/* Responsive */
@media (max-width: 991px) { .carousel-header img { height: 360px; } }
@media (max-width: 575px) { .carousel-header img { height: 280px; } .carousel-caption h1 { font-size: 1.6rem; } }

/* ── hero (old .hero block) ── */
@media (max-width: 767px) {
  .hero { height: 260px; }
  .hero-images { grid-template-columns: 1fr; }
  .hero-images img:not(:first-child) { display: none; }
  .hero-overlay { padding: 24px 20px; }
  .hero-title { font-size: 26px; }
}
@media (max-width: 575px) {
  .hero-overlay { padding: 16px 12px; }
  .hero-title { font-size: 22px; }
}

/* ============================================================
   HOMEPAGE SECTIONS — moved from booking/index.html inline block
   ============================================================ */

/* Design Tokens */
[data-theme="dark"]  { --hp-hero-ov: rgba(0,0,0,.56); --hp-cta-ov: rgba(0,0,0,.72); --hp-map-filter: invert(88%) hue-rotate(180deg); }
[data-theme="light"] { --hp-hero-ov: rgba(8,6,4,.40);  --hp-cta-ov: rgba(8,6,4,.62); --hp-map-filter: none; }

/* HERO */
.hp-hero {
    position: relative; min-height: 100svh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--bg-primary);
}
.hp-hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1600&h=900&q=80&auto=format&fit=crop') center/cover no-repeat;
    opacity: .18;
    filter: saturate(0.6);
}
.hp-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(201,169,110,.07) 0%, transparent 65%);
}
.hp-hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 760px;
}
.hp-hero-eyebrow {
    font-size: .7rem; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.hp-hero-eyebrow::before,.hp-hero-eyebrow::after {
    content: ''; display: block;
    width: 28px; height: 1px; background: var(--gold); opacity: .5;
}
.hp-hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 600; line-height: 1.05;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}
.hp-hero-h1 em { font-style: italic; font-weight: 300; color: var(--gold); }
.hp-hero-h1 .hook-line {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-family: 'Inter', sans-serif;
    font-weight: 300; letter-spacing: 6px;
    text-transform: uppercase; color: var(--text-secondary);
    margin-top: .6rem;
}
.hp-hero-desc {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary); line-height: 1.75;
    max-width: 480px; margin: 0 auto 2rem;
}
/* มือถือ — ลดขนาด h1 ไม่ให้ตกขอบ (clamp min 3.2rem ใหญ่เกินจอแคบ) */
@media (max-width: 575px) {
    .hp-hero-content { padding: 2rem 1.25rem; }
    .hp-hero-h1 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
        letter-spacing: -.5px;
        overflow-wrap: break-word;
    }
}
.hp-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 6px; z-index: 2;
}
.hp-scroll span {
    font-size: .6rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-muted);
}
.hp-scroll::after {
    content: ''; display: block;
    width: 1px; height: 40px; background: var(--gold); opacity: .4;
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%,100% { transform: scaleY(1); opacity: .4; }
    50% { transform: scaleY(.4); opacity: .1; }
}
.hp-social {
    position: absolute; left: 1.75rem; top: 50%; transform: translateY(-50%);
    flex-direction: column; gap: 16px; z-index: 2;
}
.hp-social a { font-size: 1rem; color: var(--text-muted); transition: color .2s; }
.hp-social a:hover { color: var(--gold); }
/* STATS */
.hp-stats { background: var(--bg-card); border-bottom: 1px solid var(--border); }

/* STAT helpers — still used in HOURS section */
.hp-stat-n {
    font-family:'Cormorant Garamond',serif;
    font-size: 2.5rem; line-height: 1; color: var(--gold);
}
.hp-stat-l { font-size:.85rem; color:var(--text-muted); margin-top:3px; }

/* SECTION LABELS */
.section-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 10.5px; font-weight: 600; letter-spacing: 3.5px;
    text-transform: uppercase; color: var(--gold); margin-bottom: .85rem;
}
.section-eyebrow::before, .section-eyebrow::after {
    content:''; flex:1; max-width:50px; height:1px;
    background:linear-gradient(to right,transparent,var(--gold),transparent);
}
.section-eyebrow.left::before { display:none; }
.section-eyebrow.left::after  { max-width:70px; }
.section-h2 {
    font-family:'Cormorant Garamond',serif;
    font-size: clamp(1.9rem,5.5vw,2.8rem);
    font-weight: 600; line-height: 1.15;
    color: var(--text-primary);
}
.section-sub {
    font-size: 1rem; color: var(--text-secondary);
    max-width: 480px; margin: 0 auto; line-height: 1.7;
}

/* SERVICE CARDS */
.svc-card {
    position:relative;
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:14px; overflow:hidden;
    display:flex; align-items:stretch; min-height:130px;
    transition:transform .25s, box-shadow .25s;
    cursor:pointer;
}
.svc-card:hover { transform:translateY(-3px); box-shadow:0 10px 32px rgba(0,0,0,.15); }

/* ปุ่มลบ (ถังขยะ) บนการ์ด — ซ่อนทุกที่ ยกเว้นการ์ดที่อยู่ในตะกร้าใน Booking Step 1 */
.svc-card-remove {
    position:absolute; top:10px; right:10px; z-index:5;
    width:38px; height:38px; border-radius:50%;
    display:none; align-items:center; justify-content:center;
    background:rgba(15,15,15,.72); color:#fff;
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(4px); cursor:pointer;
    font-size:16px; line-height:1; padding:0;
    transition:background .18s, transform .15s, border-color .18s;
}
.svc-card-remove:hover { background:var(--red); border-color:var(--red); transform:scale(1.06); }
.booking-layout .svc-card.selected .svc-card-remove { display:flex; }
.svc-img { width:110px; min-width:110px; object-fit:cover; }
@media (max-width: 399px) {
  .svc-img { width: 80px; min-width: 80px; }
}
.svc-body { padding:.85rem 1rem; display:flex; flex-direction:column; justify-content:space-between; flex:1; min-width:0; }

/* Stacked variant — รูปด้านบน ตัวหนังสือด้านล่าง (หน้า public services) */
.svc-card--stacked { flex-direction:column; align-items:stretch; min-height:0; }
.svc-card.svc-card--stacked .svc-img { width:100%; min-width:0; height:200px; }
/* มือถือ 1 คอลัมน์ — รูปเต็มความกว้าง สูงเด่น */
@media (max-width:575.98px) {
  .svc-card.svc-card--stacked .svc-img { width:100%; min-width:0; height:240px; }
}
@media (min-width:992px) {
  .svc-card.svc-card--stacked .svc-img { width:100%; min-width:0; height:210px; }
}

/* Unified card content — ใช้ร่วมกันทุกหน้า */
.svc-name { font-size:.95rem; font-weight:600; color:var(--text-primary); line-height:1.35; margin-bottom:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.svc-name-en { font-size:.75rem; color:var(--text-muted); margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; font-style:italic; }
.svc-short { font-size:.8rem; color:var(--text-secondary); line-height:1.45; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.svc-info-meta { display:flex; align-items:center; gap:8px; margin-top:7px; flex-wrap:wrap; }
.svc-info-dur { font-size:.75rem; color:var(--text-secondary); display:flex; align-items:center; gap:3px; }
.svc-info-dur i { color:var(--gold); font-size:.75rem; }
.svc-info-price { font-size:.85rem; color:var(--gold); font-weight:700; margin-left:auto; }
.svc-info-dur--badges { gap:4px; flex-wrap:wrap; }
.svc-dur-badge { font-size:.72rem; padding:2px 6px; }
.svc-dur-unit { font-size:.72rem; color:var(--text-secondary); }

/* legacy (keep for backward compat) */
.svc-title { font-size:1rem; font-weight:600; margin-bottom:.3rem; }
.svc-desc  { font-size:.875rem; color:var(--text-secondary); line-height:1.5; }

/* ABOUT */
.about-frame { position:relative; padding-bottom:22px; padding-right:22px; }
.about-frame::after {
    content:''; position:absolute; bottom:0; right:0;
    width:62%; height:62%;
    border:2px solid var(--gold); border-radius:12px;
}
.about-frame > img { position:relative; z-index:1; }
.feat-icon {
    width:44px; height:44px; flex-shrink:0;
    background:rgba(201,169,110,.09);
    border:1px solid rgba(201,169,110,.22);
    border-radius:10px;
    display:flex; align-items:center; justify-content:center;
}

/* PACKAGE CARDS */
.pkg-card {
    position:relative; border-radius:14px;
    overflow:hidden; height:300px;
    cursor:pointer; transition:transform .25s;
}
.pkg-card:hover { transform:translateY(-4px); }
.pkg-card > img {
    position:absolute; inset:0;
    width:100%; height:100%; object-fit:cover;
    filter:brightness(.42); transition:transform .5s, filter .5s;
}
.pkg-card:hover > img { transform:scale(1.05); filter:brightness(.52); }
.pkg-body {
    position:absolute; bottom:0; left:0; right:0; padding:1.1rem;
    background:linear-gradient(transparent,rgba(0,0,0,.88));
}
.pkg-badge {
    display:inline-block; font-size:10px; font-weight:700; letter-spacing:1.5px;
    text-transform:uppercase; background:var(--gold); color:#111;
    padding:2px 8px; border-radius:20px; margin-bottom:6px;
}
.pkg-name { font-size:.95rem; font-weight:600; color:#fff; margin-bottom:.2rem; }
.pkg-desc { font-size:.8rem; color:rgba(255,255,255,.58); margin-bottom:.6rem; }

/* CTA */
.hp-cta { position:relative; overflow:hidden; padding:5rem 0; }
.hp-cta-bg {
    position:absolute; inset:0;
    background:url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=1600&q=80&auto=format&fit=crop") center/cover;
}
.hp-cta-bg::after { content:''; position:absolute; inset:0; background:var(--hp-cta-ov); }
.hp-cta-body { position:relative; z-index:1; }

/* PRODUCTS */
.prod-card {
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:14px; overflow:hidden;
    transition:transform .25s, box-shadow .25s;
}
.prod-card:hover { transform:translateY(-3px); box-shadow:0 8px 28px rgba(0,0,0,.12); }
.prod-img { height:200px; overflow:hidden; }
.prod-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.prod-card:hover .prod-img img { transform:scale(1.05); }

/* TESTIMONIAL */
.testi-card {
    background:var(--bg-card); border:1px solid var(--border);
    border-radius:18px; padding:2rem 2rem 1.75rem;
}
.testi-q { font-family:'Cormorant Garamond',serif; font-size:5rem; line-height:.55; color:var(--gold); opacity:.25; }
.testi-t { font-size:1.05rem; font-style:italic; color:var(--text-secondary); line-height:1.75; margin:.7rem 0 1.2rem; }

/* GALLERY */
.g-wrap { position:relative; border-radius:12px; overflow:hidden; }
.g-wrap img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s; }
.g-wrap:hover img { transform:scale(1.04); }
.g-lbl {
    position:absolute; bottom:0; left:0; right:0; padding:.6rem .75rem;
    background:linear-gradient(transparent,rgba(0,0,0,.58));
    font-size:.875rem; font-weight:600; color:var(--gold);
}

/* RESPONSIVE */
@media (max-width:575.98px) {
    .hp-social { display:none; }
    .pkg-card  { height:260px; }
    .testi-card{ padding:1.4rem 1.1rem; }
}
@media (min-width:992px) {
    .svc-img { width:160px; min-width:160px; }
}

/* ============================================================
   HERO FULLBLEED (homepage index)
   ============================================================ */
.hero-fullbleed {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-fb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fb-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-fb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.38) 0%,
    rgba(0,0,0,.55) 55%,
    rgba(0,0,0,.78) 100%
  );
}
.hero-fb-content {
  position: relative; z-index: 2;
  padding-top: 7rem; padding-bottom: 6rem;
}
.hero-fb-eyebrow {
  display: block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.hero-fb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700; line-height: 1; letter-spacing: -1px;
  color: #fff; margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.7), 0 6px 48px rgba(0,0,0,.5);
}
.hero-fb-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.9);
  line-height: 1.7; max-width: 520px; margin-bottom: 2.5rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
}
.hero-fb-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* ── Site Stats Bar (shared: index + about) ── */
.site-stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.site-stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.04) 0%, transparent 60%);
  pointer-events: none;
}
.site-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.site-stat-item {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "icon num"
    "icon label";
  align-items: center;
  justify-content: center;
  column-gap: .85rem;
  text-align: left;
  padding: 1rem 1.25rem;
  position: relative;
}
.site-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--border-light);
}
.site-stat-icon {
  grid-area: icon;
  font-size: 2.1rem;
  color: var(--gold);
  line-height: 1;
}
.site-stat-num {
  grid-area: num;
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.5px;
}
.site-stat-num sup {
  font-size: .5em;
  vertical-align: super;
}
.site-stat-num .bi {
  font-size: .55em;
  margin-left: 2px;
  vertical-align: middle;
}
.site-stat-label {
  grid-area: label;
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: .3rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  /* ภาพ hero เป็นภาพคู่ (มือนวด|ห้องสปา) — บนมือถือ crop โชว์ฝั่งห้องสปา
     แทน default center ที่ค้างอยู่รอยต่อ 2 รูป ทำให้ภาพดูสมูทขึ้น */
  .hero-fb-img { object-position: 75% center; }
  .hero-fb-content { text-align: center; }
  .hero-fb-subtitle { margin-left: auto; margin-right: auto; }
  .hero-fb-actions { justify-content: center; }
  .site-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .site-stat-item:nth-child(2)::after { display: none; }
  .site-stat-item:nth-child(4)::after { display: none; }
  .site-stat-item:nth-child(1),
  .site-stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border-light);
  }
}

/* ============================================================
   PREMIUM SERVICE DETAIL MODAL — shared by public + booking
   ============================================================ */

/* Wrapper card */
.svc-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 110px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 56px);
}
#svcDetailModal .modal-dialog { max-width: 560px; }
#svcDetailModal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}
/* Soft entrance — premium, unhurried */
#svcDetailModal.fade .modal-dialog {
  transform: translateY(18px) scale(.985);
  transition: transform .42s cubic-bezier(.16,.84,.34,1);
}
#svcDetailModal.show .modal-dialog { transform: none; }

/* ── Hero image ── */
.svc-detail-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-detail-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.svc-detail-card:hover .svc-detail-hero-img { transform: scale(1.08); }
.svc-detail-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.02) 0%,
    rgba(0,0,0,.08) 45%,
    rgba(0,0,0,.55) 82%,
    rgba(0,0,0,.82) 100%);
  pointer-events: none;
}
.svc-detail-hero-foot {
  position: absolute;
  bottom: 18px;
  left: 26px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Rating badge (right side of hero foot) */
.svc-detail-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: .72rem;
  color: #fff;
  white-space: nowrap;
}
.svc-detail-rating .bi-star-fill { color: #fbbf24; font-size: .68rem; }
.svc-detail-rating-count { color: rgba(255,255,255,.65); }
.svc-detail-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201,169,110,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,110,.45);
  color: #e8ca7a;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
}

/* No-image fallback hero */
.svc-detail-no-img {
  height: 140px;
  background: linear-gradient(135deg,
    rgba(201,169,110,.06) 0%,
    rgba(201,169,110,.02) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ── Close button ── */
.svc-detail-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  z-index: 10;
  flex-shrink: 0;
}
.svc-detail-close:hover {
  background: rgba(201,169,110,.55);
  border-color: rgba(201,169,110,.7);
  transform: scale(1.08);
}
.svc-detail-close--dark {
  background: rgba(201,169,110,.1);
  border-color: rgba(201,169,110,.25);
  color: var(--gold);
}
.svc-detail-close--dark:hover {
  background: rgba(201,169,110,.2);
  color: var(--gold);
}

/* ── Body ── */
.svc-detail-body { padding: 28px 30px 0; overflow-y: auto; flex: 1; }

/* 1 · Identity */
.svc-detail-head { margin-bottom: 22px; }
.svc-detail-name-th {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.svc-detail-name-en {
  font-size: .9rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: .03em;
  margin-bottom: 0;
}

/* Gold rule */
.svc-detail-rule {
  height: 1px;
  background: linear-gradient(90deg,
    var(--gold) 0%,
    rgba(201,169,110,.25) 60%,
    transparent 100%);
  margin: 16px 0;
}

/* ── 3 · Value block (price focal point) ── */
.svc-detail-offer {
  background: linear-gradient(160deg, rgba(201,169,110,.05), rgba(201,169,110,.015));
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 16px;
  padding: 18px 18px 16px;
  margin-bottom: 24px;
}

/* ── Info pills ── */
.svc-detail-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
/* Multi-variant: the duration selector owns the price → hide single-variant pills */
.svc-detail-offer:has(#modalDurationSelector:not([style*="display: none"])) .svc-detail-pills {
  display: none;
}
.svc-detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .84rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.svc-detail-pill i { color: var(--gold); font-size: .78rem; }
.svc-detail-pill--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  padding: 8px 20px;
  margin-left: auto;
}
.svc-detail-pill--gold i { color: #1a1a1a; opacity: .8; }
.svc-detail-pill--weekend {
  background: rgba(255,200,100,.06);
  border-color: rgba(255,200,100,.2);
  color: var(--text-secondary);
  font-size: .8rem;
}

/* ── 4 · About / detail group ── */
.svc-detail-about { margin-bottom: 4px; }
.svc-detail-about-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* ── Description box ── */
.svc-detail-desc-box {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  min-height: 0;
}
.svc-detail-desc {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin: 0;
  white-space: pre-line;
}
.svc-detail-desc-empty {
  font-size: .88rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* ── Clinical meta blocks (cause / aftercare / contra) ── */
.svc-detail-meta-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.svc-detail-meta-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.svc-detail-meta-head i { color: var(--gold); font-size: .82rem; }
.svc-detail-meta-text {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  white-space: pre-line;
}

/* ── Duration selector (rows) ── */
.svc-dur-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-dur-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(176,141,87,.3), transparent);
}
.svc-dur-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.svc-dur-row {
  display: flex;
  align-items: center;
  padding: 13px 15px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: background .18s, border-color .18s, box-shadow .18s;
  position: relative;
  overflow: hidden;
}
.svc-dur-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .18s;
  border-radius: 0 2px 2px 0;
}
.svc-dur-row:hover {
  background: var(--bg-card-hover);
  border-color: rgba(176,141,87,.2);
}
.svc-dur-row.active {
  background: rgba(176,141,87,.08);
  border-color: rgba(176,141,87,.45);
  box-shadow: 0 0 0 1px rgba(176,141,87,.1) inset;
}
.svc-dur-row.active::before { opacity: 1; }

.svc-dur-row-icon {
  font-size: .9rem;
  margin-right: 10px;
  opacity: .7;
  flex-shrink: 0;
  color: var(--gold);
}
.svc-dur-row-text {
  flex: 1;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-primary);
}
.svc-dur-row-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-light) 0, var(--border-light) 3px, transparent 3px, transparent 8px);
  margin: 0 12px;
  max-width: 70px;
}
.svc-dur-row-price {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold-light, #d4aa6e);
  white-space: nowrap;
}
.svc-dur-row-check {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  margin-left: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .18s, border-color .18s;
}
.svc-dur-row.active .svc-dur-row-check {
  background: var(--gold);
  border-color: var(--gold);
}
.svc-dur-row-check-dot {
  width: 5px; height: 5px;
  background: var(--bg-primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .18s;
}
.svc-dur-row.active .svc-dur-row-check-dot { opacity: 1; }

/* Price summary box — the focal price for multi-variant */
.svc-price-summary {
  margin-top: 14px;
  padding: 15px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(176,141,87,.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-price-summary-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.svc-price-summary-dur {
  font-size: .82rem;
  color: var(--text-secondary);
  margin-top: 3px;
}
.svc-price-summary-amount {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--gold);
  transition: transform .15s ease, color .15s;
}
.svc-price-summary-amount.flash { transform: scale(1.08); }

/* ── Footer ── */
.svc-detail-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.svc-detail-book-btn {
  padding: 10px 28px;
  font-size: .95rem;
  letter-spacing: .02em;
}

/* Light theme tweaks */
[data-theme="light"] .svc-detail-desc-box { box-shadow: inset 0 1px 4px rgba(0,0,0,.04); }

/* Mobile */
@media (max-width: 600px) {
  #svcDetailModal .modal-dialog { margin: 8px; max-width: 100%; }
  .svc-detail-card { max-height: calc(100dvh - 16px); border-radius: 18px; }
  .svc-detail-hero { height: 210px; flex-shrink: 0; }
  .svc-detail-hero-foot { left: 18px; right: 56px; }
  .svc-detail-body { padding: 20px 18px 0; }
  .svc-detail-name-th { font-size: 1.5rem; }
  .svc-detail-offer { padding: 15px 14px 14px; }
  .svc-detail-pill--gold { font-size: 1.05rem; }
  .svc-detail-book-btn { padding: 10px 20px; }
}

/* ── 2 · Benefit bullets (essence) ── */
.svc-detail-benefits {
  margin-bottom: 24px;
}
.svc-detail-benefits-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.svc-detail-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-detail-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.svc-detail-benefit-item .bi-check-circle-fill {
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Weekend price comparison (anchoring) ── */
.svc-detail-price-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 14px 0 0;
  text-align: center;
}
/* When the offer holds a multi-variant selector, keep its own rhythm */
#modalDurationSelector[style*="display: none"] + .svc-detail-price-compare { margin-top: 14px; }
.svc-detail-price-compare-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,169,110,.25);
}
.svc-detail-price-compare-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.svc-detail-price-compare-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}
.svc-detail-price-compare-value--wk { color: var(--gold); }
.svc-detail-price-compare-note {
  font-size: .68rem;
  color: var(--green, #4ade80);
  margin-top: 3px;
  font-weight: 500;
}

/* ── Description collapse ── */
.svc-detail-desc-box--collapsible { position: relative; }
.svc-detail-desc-box--collapsible.collapsed {
  max-height: 80px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}
.svc-detail-expand-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity .2s;
}
.svc-detail-expand-btn:hover { opacity: .75; }
.svc-detail-expand-btn .bi { transition: transform .3s; }
.svc-detail-expand-btn.expanded .bi { transform: rotate(180deg); }

/* ── CTA footer — sales hierarchy ── */
.svc-detail-footer--sales {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}
.svc-detail-close-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: .82rem;
  cursor: pointer;
  padding: 4px 0;
  transition: color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-detail-close-link:hover { color: var(--text-secondary); }
.svc-detail-book-btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 99px;
}
/* ราคาบนปุ่มจอง — คั่นด้วยจุด */
.svc-book-price {
  font-weight: 800;
  display: inline-block;
}
.svc-book-price:not(:empty)::before {
  content: "·";
  margin: 0 7px;
  opacity: .55;
  font-weight: 400;
}
.svc-book-price.flash { animation: bookPriceFlash .3s ease; }
@keyframes bookPriceFlash {
  0%, 100% { transform: scale(1); }
  45%      { transform: scale(1.13); }
}

/* ── Sticky CTA zone (sales closing) ── */
.svc-detail-cta-zone {
  position: sticky;
  bottom: 0;
  margin: 22px -30px 0;
  padding: 16px 30px calc(18px + env(safe-area-inset-bottom));
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -14px 28px -12px rgba(0,0,0,.28);
  z-index: 3;
}
.svc-detail-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-bottom: 12px;
}
.svc-detail-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.svc-detail-trust-item i { color: var(--gold); font-size: .82rem; }
.svc-detail-cta-micro {
  text-align: center;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 9px;
}
.svc-detail-cta-zone .svc-detail-close-link {
  display: block;
  margin: 10px auto 0;
  text-align: center;
}
@media (max-width: 600px) {
  .svc-detail-cta-zone { margin: 16px -18px 0; padding: 14px 18px calc(14px + env(safe-area-inset-bottom)); }
  .svc-detail-trust { gap: 5px 12px; }
  .svc-detail-trust-item { font-size: .7rem; }
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .svc-detail-price-compare { padding: 12px 14px; }
  .svc-detail-price-compare-value { font-size: 1rem; }
}

/* Category tabs (services page) */
.cat-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cat-tab {
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: transparent;
  color: var(--text-secondary);
  font-size: .85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cat-tab:hover { border-color: var(--gold); color: var(--gold); }
.cat-tab.active { background: var(--gold); color: #111; border-color: var(--gold); font-weight: 600; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-method-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  height: 100%; transition: border-color var(--transition), transform var(--transition);
}
.contact-method-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.contact-method-card--featured {
  border-color: rgba(201,169,110,.4);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,169,110,.06) 100%);
}
.contact-method-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(201,169,110,.12); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 1.25rem;
}
.contact-method-title { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: .5rem; }
.contact-method-desc { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: .5rem; }
.contact-method-meta { font-size: .875rem; font-weight: 600; color: var(--gold); margin-bottom: 1rem; }

.contact-form-card {
  background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--text-primary); margin-bottom: .35rem; }
.contact-form-sub { font-size: .9rem; color: var(--text-secondary); }
.contact-form-label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: .4rem; }
.contact-form-input {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: .65rem 1rem;
  color: var(--text-primary); font-size: .925rem;
  transition: border-color var(--transition);
  outline: none; resize: none;
}
.contact-form-input:focus { border-color: var(--gold); }
.contact-form-input::placeholder { color: var(--text-muted); }

.contact-info-card {
  background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; height: 100%;
}
.contact-info-block {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.contact-info-block:first-child { padding-top: 0; }
.contact-info-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(201,169,110,.1); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: .2rem; }
.contact-info-value { font-size: .925rem; color: var(--text-primary); line-height: 1.5; }
.contact-info-guarantee {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 1.25rem; padding: 1rem; border-radius: var(--radius-md);
  background: rgba(201,169,110,.08); font-size: .85rem; color: var(--text-secondary);
}
.contact-branch-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--text-secondary); margin-bottom: .4rem;
}
.contact-branch-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.contact-map-wrap { height: 340px; }
.contact-map { width: 100%; height: 100%; border: none; display: block; filter: var(--hp-map-filter, none); }
@media (max-width: 575px) { .contact-map-wrap { height: 240px; } }

/* FAQ Section — 2-column card grid */
.faq-section { background: var(--bg-secondary); }
.section-padding { padding: 3rem 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-card.open { border-color: var(--gold); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-chevron {
  color: var(--gold);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-card.open .faq-chevron { transform: rotate(180deg); }
.faq-card.open .faq-q { color: var(--gold); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
}
.faq-card.open .faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-a p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ============================================================
   ABOUT PAGE — Redesign (corporate storytelling)
   ============================================================ */

/* ── About Hero ── */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center;
  animation: aboutHeroZoom 18s ease-in-out infinite alternate;
}
@keyframes aboutHeroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.65) 100%
  );
}
.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 7rem 1.5rem 8rem;
}
.about-hero-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: .9;
}
.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.about-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
/* Scroll cue */
.about-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.about-hero-scroll span {
  font-size: .6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.about-hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: var(--gold);
  opacity: .5;
  animation: aboutScrollLine 2s ease-in-out infinite;
}
@keyframes aboutScrollLine {
  0%,100% { transform: scaleY(1); opacity: .5; }
  50%      { transform: scaleY(.3); opacity: .15; }
}

/* .about-stats-bar replaced by .site-stats-bar (shared component) */

/* ── Story Section ── */
.about-story-section { background: var(--bg-primary); }
.about-story-img-wrap {
  position: relative;
  padding-bottom: 1.5rem;
  padding-right: 1.5rem;
}
.about-story-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 65%; height: 65%;
  border: 2px solid var(--gold);
  border-radius: 16px;
  z-index: 0;
}
.about-story-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  transition: transform .5s ease;
}
.about-story-img-wrap:hover .about-story-img { transform: scale(1.01); }
.about-story-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.25rem;
  z-index: 2;
  background: var(--gold);
  color: #111;
  border-radius: 12px;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.about-story-badge .bi { font-size: 1.1rem; }
.about-story-body {
  font-size: 1.025rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* Feature list */
.about-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.about-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-feat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
}
.about-feat-list strong {
  display: block;
  font-size: .97rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .2rem;
}
.about-feat-list p {
  margin: 0;
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Values / Why Us ── */
.about-values-section { background: var(--bg-card); }
.about-value-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  height: 100%;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.about-value-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
}
.about-value-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background .25s;
}
.about-value-card:hover .about-value-icon {
  background: rgba(201,169,110,.18);
}
.about-value-icon .bi {
  font-size: 1.8rem;
  color: var(--gold);
}
.about-value-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .6rem;
}
.about-value-card p {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ── Team Section ── */
.about-team-section { background: var(--bg-primary); }
.about-team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.25rem 1.5rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  height: 100%;
}
.about-team-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.about-team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto;
  display: block;
  transition: transform .3s;
}
.about-team-card:hover .about-team-photo { transform: scale(1.04); }
.about-team-photo-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.about-team-photo-placeholder .bi {
  font-size: 2.75rem;
  color: var(--text-muted);
}
.about-team-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .2rem;
}
.about-team-role {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.about-team-rating {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── CTA Section ── */
.about-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
  text-align: center;
}
.about-cta-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=1600&q=75&auto=format&fit=crop')
    center/cover no-repeat;
  filter: brightness(.25) saturate(.6);
  z-index: 0;
}
.about-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,12,2,.88) 0%, rgba(10,8,2,.75) 100%);
}
.about-cta-body {
  position: relative;
  z-index: 1;
}
.about-cta-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: .7;
}
.about-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.about-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.about-cta-btn {
  padding: .85rem 2.5rem;
  font-size: 1rem;
  letter-spacing: .5px;
  box-shadow: 0 8px 32px rgba(201,169,110,.35);
}
.about-cta-btn:hover {
  box-shadow: 0 12px 40px rgba(201,169,110,.45);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .about-story-badge { left: .5rem; bottom: 2.5rem; }
  .about-hero { min-height: 60vh; }
}

/* ============================================================
   COMING SOON
   ============================================================ */
.coming-soon-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}
.coming-soon-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: coming-soon-pulse 2s infinite;
}
@keyframes coming-soon-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.1); }
}
.coming-soon-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.coming-soon-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.coming-soon-sub2 {
  color: var(--text-secondary);
  font-size: .95rem;
  opacity: .75;
}

/* ============================================================
   SERVICE DETAIL MODAL — Extra Sections (cause / aftercare / contra)
   ============================================================ */

/* Generic content section inside modal body */
.svc-detail-section {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--border);
  margin-bottom: 4px;
}

/* Section label — small uppercase gold heading */
.svc-detail-section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.svc-detail-section-label .bi {
  font-size: .78rem;
  color: var(--gold);
}

/* Body text for these sections */
.svc-detail-section-text {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  white-space: pre-line;
}

/* Contraindications warning box */
.svc-detail-contra-box {
  margin-top: 14px;
  margin-bottom: 4px;
  padding: 14px 16px;
  background: rgba(201,150,50,.07);
  border: 1px solid rgba(201,150,50,.28);
  border-left: 3px solid rgba(201,150,50,.7);
  border-radius: 10px;
}
[data-theme="light"] .svc-detail-contra-box {
  background: rgba(180,100,10,.06);
  border-color: rgba(180,100,10,.22);
  border-left-color: rgba(180,100,10,.55);
}
.svc-detail-contra-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.svc-detail-contra-icon {
  font-size: .95rem;
  color: var(--gold);
  flex-shrink: 0;
}
[data-theme="light"] .svc-detail-contra-icon {
  color: var(--gold-dark);
}

/* Duration row — weekend price label */
.svc-dur-row-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.svc-dur-row-weekend {
  font-size: .72rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.svc-dur-row-weekend::before {
  content: 'wknd: ';
  font-size: .65rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Mobile tweaks for new sections */
@media (max-width: 600px) {
  .svc-detail-section { padding-top: 12px; margin-top: 12px; }
  .svc-detail-contra-box { padding: 12px 14px; }
}

/* ════════════════════════════════════════════════════════════════════
   Home v3 (BeautyZone) — navbar / topbar / vertical CTA tab
   ────────────────────────────────────────────────────────────────────
   ย้ายมาจาก inline <style> ของ templates/frontend/public/index_v3.html
   ทุก rule scope ใต้ .home-v3 (อยู่ที่ <body class="home-v3">) เพื่อกัน
   class ชนกับ .topbar / .nav-link ฯลฯ ของหน้าอื่นที่โหลด public.css เดียวกัน.
   สี: ใช้ --topbar-bg (จาก design-system + _tenant_theme) ห้าม hardcode hex.
   ════════════════════════════════════════════════════════════════════ */

/* ── TOPBAR (BeautyZone: solid brand-tinted bar; --topbar-bg มาจาก tenant) ── */
.home-v3 .topbar { background: var(--topbar-bg); color: #fff; font-size: .82rem; }
.home-v3 .topbar .container { display: flex; justify-content: space-between; align-items: center; height: 42px; flex-wrap: wrap; gap: .5rem; }
.home-v3 .topbar a { color: #fff; opacity: .92; }
.home-v3 .topbar a:hover { opacity: 1; }
.home-v3 .topbar .info { display: flex; align-items: center; flex-wrap: wrap; gap: .3rem 1.3rem; }
.home-v3 .topbar .info span { display: inline-flex; align-items: center; gap: .4rem; }
.home-v3 .topbar .info i { font-size: .95rem; }
.home-v3 .topbar .socials { display: flex; align-items: center; gap: .9rem; }
.home-v3 .topbar .socials a { display: inline-grid; place-items: center; font-size: .95rem; }

/* ── NAV (BeautyZone: centered logo, split menu left/right) ── */
.home-v3 .nav { position: sticky; top: 0; z-index: 50; background: var(--surface); border-bottom: 1px solid var(--border); box-shadow: 0 4px 22px -12px rgba(0,0,0,.18); transition: .3s; }
.home-v3 .nav.shrink { box-shadow: 0 6px 24px -10px rgba(0,0,0,.22); }
/* 3-zone grid: menu-wrap (split halves) | centered brand | nav utilities */
.home-v3 .nav .container { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 90px; transition: .3s; gap: 1rem; }
.home-v3 .nav.shrink .container { height: 72px; }
.home-v3 .menu-wrap { display: contents; }
.home-v3 .brand { display: flex; flex-direction: column; align-items: center; gap: .25rem; justify-self: center; text-align: center; grid-column: 2; }
.home-v3 .brand .mark { width: 48px; height: 48px; display: grid; place-items: center; flex-shrink: 0; }
.home-v3 .brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.home-v3 .brand b { font-family: var(--serif); font-size: 1.3rem; letter-spacing: .04em; display: block; line-height: 1; color: var(--ink); }
.home-v3 .brand small { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.home-v3 .menu { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.home-v3 .menu.menu-left { grid-column: 1; justify-content: center; }
.home-v3 .menu.menu-right { grid-column: 3; justify-content: center; }
.home-v3 .menu a { font-size: .86rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; position: relative; color: var(--ink); white-space: nowrap; }
.home-v3 .menu a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: .25s; }
.home-v3 .menu a:hover { color: var(--gold); }
.home-v3 .menu a:hover::after { width: 100%; }
.home-v3 .menu-book { display: none; }
/* nav utilities pinned to far right edge so they don't unbalance the centered brand */
.home-v3 .nav-right { display: flex; align-items: center; gap: .6rem; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
.home-v3 .theme-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gold); background: var(--bg-primary); color: var(--gold); display: grid; place-items: center; cursor: pointer; font-size: 1rem; transition: .2s; }
.home-v3 .theme-btn:hover { background: rgba(201,169,110,.12); }
.home-v3 .burger { display: none; font-size: 1.7rem; color: var(--ink); background: none; border: 0; cursor: pointer; }

/* ── VERTICAL CTA TAB (BeautyZone: fixed right-edge "Bestill time") ── */
.home-v3 .cta-tab { position: fixed; top: 50%; right: 0; transform: translateY(-50%); z-index: 55;
  background: var(--gold); color: #fff; writing-mode: vertical-rl;
  padding: 1.2rem .55rem; border-radius: 10px 0 0 10px; font-family: var(--sans); font-weight: 600;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; display: flex; align-items: center; gap: .6rem;
  box-shadow: -6px 0 22px -10px rgba(0,0,0,.4); transition: .25s; }
.home-v3 .cta-tab i { writing-mode: horizontal-tb; font-size: 1rem; }
.home-v3 .cta-tab:hover { background: var(--gold-dark); padding-right: .8rem; color: #fff; }

/* ── RESPONSIVE: navbar / topbar / cta-tab ── */
@media (max-width: 1100px) {
  .home-v3 .menu { gap: 1.4rem; }
  .home-v3 .menu a { font-size: .8rem; }
  .home-v3 .nav .container { gap: .6rem; }
}
@media (max-width: 1024px) {
  .home-v3 .topbar { font-size: .8rem; }
  .home-v3 .topbar .container { flex-wrap: wrap; }
  .home-v3 .topbar .info { gap: .3rem 1rem; }
}
@media (max-width: 860px) {
  /* nav collapses: brand left, hamburger right, both menu halves stack inside ONE drawer */
  .home-v3 .nav .container { grid-template-columns: auto 1fr; height: 72px; }
  .home-v3 .nav.shrink .container { height: 64px; }
  .home-v3 .brand { grid-column: 1; justify-self: start; flex-direction: row; gap: .6rem; }
  .home-v3 .nav-right { position: static; grid-column: 2; justify-self: end; transform: none; }
  .home-v3 .menu-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: fixed; inset: 0 0 0 auto; width: 80%; max-width: 320px; background: var(--surface);
    padding: 84px 30px 40px; transform: translateX(100%); transition: .32s;
    box-shadow: -10px 0 40px -20px rgba(0,0,0,.4); z-index: 60; overflow-y: auto; }
  .home-v3 .menu-wrap.open { transform: translateX(0); }
  .home-v3 .menu { flex-direction: column; align-items: flex-start; gap: 1.3rem; width: 100%; }
  .home-v3 .menu.menu-left { margin-bottom: 1.3rem; }
  .home-v3 .menu a { font-size: 1rem; }
  .home-v3 .menu-book { display: inline-flex; margin-top: 1.8rem; }
  .home-v3 .burger { display: block; }
}
@media (max-width: 760px) {
  .home-v3 .cta-tab { display: none; }
  .home-v3 .topbar .container { height: auto; padding: 8px 14px; flex-direction: column; justify-content: center; align-items: center; gap: .4rem .9rem; }
  .home-v3 .topbar .info, .home-v3 .topbar .socials { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .3rem .9rem; width: 100%; }
  .home-v3 .topbar .info span, .home-v3 .topbar .socials > span { margin-right: 0; }
  .home-v3 .topbar .socials a { margin-left: 0; }
  .home-v3 .brand small { display: none; }
  .home-v3 .brand b { font-size: 1.2rem; }
}
@media (max-width: 380px) {
  .home-v3 .topbar { font-size: .74rem; }
  .home-v3 .topbar .info, .home-v3 .topbar .socials { gap: .25rem .7rem; }
  .home-v3 .topbar .info span, .home-v3 .topbar .socials > span { text-align: center; }
}

/* ════════════════════════════════════════════════════════════════════
   Home v3 (BeautyZone PINK) — design tokens + section styles
   ────────────────────────────────────────────────────────────────────
   ย้ายมาจาก inline <style> ของ index_v3.html (home3 redesign).
   ทุก rule scope ใต้ .home-v3. สีทั้งหมดอ้าง --pk-* / var() — ห้าม hardcode.
   --pk-* = pink palette กลาง; --gold/--gold-dark/... ถูก redefine ให้เป็น
   โทนชมพูใต้ .home-v3 (ดู block "globals remap") เพื่อให้ nav/topbar/cta-tab
   ของ public.css เดิม reskin ตามไปด้วย และ tenant.primary_color override ได้
   ผ่าน _tenant_theme.html (.home-v3 { --topbar-bg: var(--gold); }).
   ════════════════════════════════════════════════════════════════════ */

/* ── Pink design tokens (single source) ── */
.home-v3 {
  --pk-pink:#E1457C;          /* primary brand pink (CTA/links) */
  --pk-pink-deep:#C9326A;     /* hover/darker pink */
  --pk-rose:#F06292;          /* lighter rose accent */
  --pk-blush:#FCE7EF;         /* pale blush panels */
  --pk-blush-soft:#FDF1F6;    /* very pale wash */
  --pk-cream:#FFF7FA;         /* page background tint */
  --pk-paper:#FFFFFF;
  --pk-teal:#3BC6C6;          /* teal accent (secondary buttons) */
  --pk-teal-dark:#2AA9A9;
  --pk-dark:#2A222A;          /* dark section / footer base */
  --pk-dark-2:#221B22;
  --pk-ink:#332A30;           /* heading ink */
  --pk-body:#6E6168;          /* body text */
  --pk-muted:#9B8E96;         /* muted text */
  --pk-line:#F0DCE6;          /* hairline borders (pinkish) */
  --pk-star:#F5B301;          /* review stars */
  --pk-serif:'Playfair Display',serif;
  --pk-sans:'Jost',sans-serif;
  --pk-radius:14px;
  --pk-shadow:0 24px 54px -30px rgba(201,50,106,.30);
  --pk-shadow-soft:0 16px 36px -24px rgba(201,50,106,.22);

  /* globals remap → nav/topbar/cta-tab (public.css เดิม) ใช้โทนชมพู.
     NOTE: --topbar-bg อาจถูก tenant.primary_color override จาก _tenant_theme.html */
  --gold:var(--pk-pink); --gold-light:var(--pk-rose); --gold-dark:var(--pk-pink-deep);
  --ink:var(--pk-ink); --muted:var(--pk-muted); --line:var(--pk-line);
  --surface:var(--pk-paper); --border:var(--pk-line);
  --bg-primary:var(--pk-cream); --bg-card:var(--pk-paper); --bg-card-hover:var(--pk-blush);
  --text-primary:var(--pk-ink); --text-secondary:var(--pk-body); --text-muted:var(--pk-muted);
  --topbar-bg:var(--pk-pink);
  --serif:var(--pk-serif); --sans:var(--pk-sans);
}

/* ── Base ── */
.home-v3 { font-family:var(--pk-sans); color:var(--pk-body); background:var(--pk-cream); line-height:1.7; -webkit-font-smoothing:antialiased; }
.home-v3 img { max-width:100%; display:block; }
.home-v3 a { text-decoration:none; color:inherit; }
.home-v3 ul { list-style:none; margin:0; padding:0; }
.home-v3 .container { max-width:1200px; margin:0 auto; padding:0 24px; }
.home-v3 .serif { font-family:var(--pk-serif); }
.home-v3 section { position:relative; }

/* ── Buttons ── */
.home-v3 .btn { display:inline-flex; align-items:center; gap:8px; font-family:var(--pk-sans); font-weight:500;
  font-size:13px; letter-spacing:.5px; padding:13px 28px; border-radius:6px; border:none; cursor:pointer;
  transition:.25s; text-transform:capitalize; }
.home-v3 .btn-fill { background:var(--pk-pink); color:#fff; box-shadow:0 16px 30px -16px rgba(225,69,124,.7); }
.home-v3 .btn-fill:hover { background:var(--pk-pink-deep); transform:translateY(-2px); }
.home-v3 .btn-teal { background:var(--pk-teal); color:#fff; }
.home-v3 .btn-teal:hover { background:var(--pk-teal-dark); transform:translateY(-2px); }
.home-v3 .btn-out { background:transparent; color:var(--pk-pink); border:2px solid var(--pk-pink); }
.home-v3 .btn-out:hover { background:var(--pk-pink); color:#fff; }

/* ── Section heading ── */
.home-v3 .sec-head { text-align:center; margin-bottom:50px; }
.home-v3 .sec-head h2 { font-family:var(--pk-serif); color:var(--pk-pink); font-size:clamp(2rem,4vw,42px); font-weight:700; line-height:1.1; }
.home-v3 .sec-head .deco { display:inline-flex; align-items:center; gap:8px; color:var(--pk-pink); margin:8px 0 14px; }
.home-v3 .sec-head .deco::before, .home-v3 .sec-head .deco::after { content:""; width:46px; height:1px; background:var(--pk-pink); opacity:.5; }
.home-v3 .sec-head p { max-width:620px; margin:0 auto; color:var(--pk-muted); font-size:14px; }

/* ── Dots (decorative) ── */
.home-v3 .dots { display:flex; justify-content:center; gap:8px; margin:36px 0 32px; }
.home-v3 .dots span { width:9px; height:9px; border-radius:50%; background:var(--pk-blush); }
.home-v3 .dots span.on { background:var(--pk-pink); width:24px; border-radius:6px; }

/* ══ HERO ══ */
.home-v3 .hero { background:var(--pk-blush-soft); position:relative; overflow:hidden; }
.home-v3 .hero .container { display:grid; grid-template-columns:1.05fr .95fr; align-items:center; gap:40px;
  padding-top:60px; padding-bottom:60px; position:relative; z-index:2; }
.home-v3 .hero-text h1 { font-family:var(--pk-serif); font-size:clamp(2.6rem,5.5vw,60px); font-weight:700; line-height:1.08; color:var(--pk-pink); }
.home-v3 .hero-text h1 .blk { color:var(--pk-ink); }
.home-v3 .hero-text .hdash { display:inline-block; width:50px; height:3px; background:var(--pk-pink); vertical-align:middle; margin-right:14px; margin-bottom:10px; }
.home-v3 .hero-text p { color:var(--pk-body); margin:22px 0 30px; max-width:480px; font-size:14.5px; }
.home-v3 .hero-btns { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.home-v3 .hero-phone { display:inline-flex; align-items:center; gap:.55rem; font-weight:600; color:var(--pk-ink); font-size:.95rem; }
.home-v3 .hero-phone .dot { width:9px; height:9px; border-radius:50%; background:var(--pk-pink); display:inline-block; flex-shrink:0; box-shadow:0 0 0 4px rgba(225,69,124,.18); }
.home-v3 .hero-phone small { display:block; font-weight:500; color:var(--pk-muted); font-size:.7rem; letter-spacing:.04em; text-transform:uppercase; }
.home-v3 .hero-img { position:relative; }
.home-v3 .hero-img img { border-radius:50% 50% 12px 12px; box-shadow:var(--pk-shadow); object-fit:cover; width:100%; aspect-ratio:4/4.6; border:6px solid var(--pk-paper); }
.home-v3 .hero-blob { position:absolute; width:120px; height:120px; border:2px dashed rgba(225,69,124,.35); border-radius:50%; top:-20px; right:-10px; z-index:-1; }

/* ══ SERVICES (circle cards) ══ */
.home-v3 .services { padding:90px 0 80px; background:var(--pk-paper); }
.home-v3 .svc-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.home-v3 .svc-card { text-align:center; }
.home-v3 .svc-circle { width:170px; height:170px; border-radius:50%; margin:0 auto 22px; position:relative; padding:8px;
  background:linear-gradient(135deg,var(--pk-blush),var(--pk-paper)); }
.home-v3 .svc-circle img { width:100%; height:100%; border-radius:50%; object-fit:cover; }
.home-v3 .svc-icon { position:absolute; bottom:6px; left:50%; transform:translateX(-50%); width:46px; height:46px;
  background:var(--pk-paper); border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 16px rgba(225,69,124,.25); color:var(--pk-pink); font-size:20px; }
.home-v3 .svc-card h3 { font-family:var(--pk-sans); text-transform:uppercase; letter-spacing:1px; color:var(--pk-pink); font-size:14px; font-weight:600; margin-bottom:10px; }
.home-v3 .svc-card .svc-price { color:var(--pk-pink); font-family:var(--pk-serif); font-weight:600; font-size:1.05rem; margin-bottom:6px; }
.home-v3 .svc-card p { color:var(--pk-muted); font-size:13px; max-width:230px; margin:0 auto; }
.home-v3 .svc-cta { text-align:center; }

/* ══ FEATURE BAND ══ */
.home-v3 .features { background:linear-gradient(160deg,var(--pk-blush) 0%,var(--pk-blush-soft) 60%,var(--pk-cream) 100%); padding:80px 0; position:relative; overflow:hidden; }
.home-v3 .feat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; z-index:2; }
.home-v3 .feat-card { background:var(--pk-paper); border-radius:12px; padding:34px 24px; text-align:center; box-shadow:var(--pk-shadow-soft); transition:.3s; }
.home-v3 .feat-card:hover { transform:translateY(-8px); box-shadow:var(--pk-shadow); }
.home-v3 .feat-card .fi { font-size:40px; color:var(--pk-pink); margin-bottom:16px; }
.home-v3 .feat-card h4 { font-family:var(--pk-sans); font-weight:600; font-size:16px; margin-bottom:10px; color:var(--pk-ink); }
.home-v3 .feat-card p { color:var(--pk-muted); font-size:13px; }

/* ══ PORTFOLIO / GALLERY ══ */
.home-v3 .portfolio { padding:90px 0 70px; background:var(--pk-paper); position:relative; }
.home-v3 .filters { display:flex; justify-content:center; gap:8px; margin:-20px 0 36px; flex-wrap:wrap; }
.home-v3 .filters button { background:none; border:none; font-size:13px; letter-spacing:1px; color:var(--pk-muted); padding:8px 18px; border-radius:20px; cursor:pointer; text-transform:uppercase; font-weight:500; transition:.2s; }
.home-v3 .filters button.on, .home-v3 .filters button:hover { background:var(--pk-pink); color:#fff; }
.home-v3 .gallery { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:14px; }
.home-v3 .gallery .g { overflow:hidden; border-radius:10px; position:relative; }
.home-v3 .gallery .g img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.home-v3 .gallery .g:hover img { transform:scale(1.08); }
.home-v3 .gallery .g .g-ov { position:absolute; inset:0; background:rgba(225,69,124,.55); color:#fff; font-size:26px; display:flex; align-items:center; justify-content:center; opacity:0; transition:.3s; }
.home-v3 .gallery .g:hover .g-ov { opacity:1; }
.home-v3 .gallery .big { grid-row:span 2; grid-column:span 2; }
.home-v3 .hide { display:none!important; }

/* ══ VIDEO (parallax dark band) ══ */
.home-v3 .video { position:relative; min-height:480px; display:flex; align-items:center; justify-content:center; text-align:center; color:#fff;
  background:linear-gradient(rgba(42,34,42,.62),rgba(42,34,42,.62)),var(--pk-video-bg,linear-gradient(135deg,var(--pk-pink-deep),var(--pk-dark))) center/cover fixed; }
.home-v3 .video-inner { position:relative; z-index:2; max-width:620px; padding:60px 20px; }
.home-v3 .video-inner h2 { font-family:var(--pk-serif); font-size:clamp(2rem,4vw,44px); font-weight:700; margin-bottom:14px; color:#fff; }
.home-v3 .video-inner p { font-size:14px; opacity:.9; margin-bottom:30px; }
.home-v3 .play { width:78px; height:78px; border-radius:50%; background:rgba(255,255,255,.25); border:2px solid #fff; color:#fff; font-size:28px;
  display:flex; align-items:center; justify-content:center; margin:0 auto; cursor:pointer; transition:.3s; animation:pkPulse 2.2s infinite; }
.home-v3 .play:hover { background:var(--pk-pink); border-color:var(--pk-pink); }
@keyframes pkPulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.4);} 70%{box-shadow:0 0 0 22px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }

/* ══ TEAM ══ */
.home-v3 .team { padding:90px 0 80px; background:var(--pk-paper); position:relative; overflow:hidden; }
.home-v3 .team-carousel { display:flex; align-items:center; justify-content:center; gap:18px; position:relative; }
.home-v3 .team-track { display:flex; align-items:center; gap:18px; justify-content:center; }
.home-v3 .tm { text-align:center; filter:grayscale(100%); opacity:.55; transform:scale(.85); transition:.4s; }
.home-v3 .tm img { width:150px; height:190px; object-fit:cover; border-radius:8px; margin:0 auto; }
.home-v3 .tm.center { filter:none; opacity:1; transform:scale(1.05); }
.home-v3 .team-center-meta { text-align:center; margin-top:22px; }
.home-v3 .team-center-meta h4 { font-weight:600; font-size:18px; color:var(--pk-ink); }
.home-v3 .team-center-meta span { color:var(--pk-muted); font-size:12px; letter-spacing:1px; }
.home-v3 .car-arrow { width:44px; height:44px; border-radius:50%; border:1px solid var(--pk-line); background:var(--pk-paper); color:var(--pk-muted);
  font-size:18px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:.2s; flex:none; }
.home-v3 .car-arrow:hover { background:var(--pk-pink); color:#fff; border-color:var(--pk-pink); }

/* ══ TESTIMONIALS ══ */
.home-v3 .testi { padding:90px 0; background:linear-gradient(180deg,var(--pk-paper) 0%,var(--pk-blush-soft) 30%,var(--pk-blush) 100%); position:relative; overflow:hidden; }
.home-v3 .testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; position:relative; z-index:2; }
.home-v3 .testi-card { background:var(--pk-paper); border-radius:10px; padding:30px 26px 26px; text-align:center; box-shadow:var(--pk-shadow-soft); border-bottom:3px solid var(--pk-pink); position:relative; }
.home-v3 .testi-card .tavatar { width:64px; height:64px; border-radius:50%; object-fit:cover; margin:0 auto 16px; border:3px solid var(--pk-blush); }
.home-v3 .testi-card .quote { color:var(--pk-muted); font-size:13.5px; font-style:italic; margin-bottom:18px; }
.home-v3 .testi-card h4 { font-weight:600; font-size:14px; letter-spacing:1px; text-transform:uppercase; color:var(--pk-ink); }
.home-v3 .testi-card .role { color:var(--pk-pink); font-size:12px; }
.home-v3 .testi-card .stars { color:var(--pk-star); margin-bottom:12px; font-size:13px; }

/* ══ BLOG ══ */
.home-v3 .blog { padding:90px 0 80px; background:var(--pk-paper); position:relative; }
.home-v3 .blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.home-v3 .blog-card { border-radius:12px; overflow:hidden; box-shadow:var(--pk-shadow-soft); transition:.3s; background:var(--pk-paper); }
.home-v3 .blog-card:hover { transform:translateY(-6px); box-shadow:var(--pk-shadow); }
.home-v3 .blog-card .bimg { height:210px; overflow:hidden; }
.home-v3 .blog-card .bimg img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.home-v3 .blog-card:hover .bimg img { transform:scale(1.07); }
.home-v3 .blog-body { padding:24px; }
.home-v3 .blog-body .date { color:var(--pk-pink); font-size:12px; letter-spacing:1px; margin-bottom:10px; display:inline-flex; align-items:center; gap:6px; }
.home-v3 .blog-body h3 { font-family:var(--pk-serif); font-size:22px; font-weight:600; line-height:1.25; margin-bottom:14px; color:var(--pk-ink); }
.home-v3 .blog-body a.read { color:var(--pk-pink); font-size:12px; font-weight:600; letter-spacing:1px; text-transform:uppercase; border-bottom:2px solid var(--pk-pink); padding-bottom:2px; }

/* ══ CTA band ══ */
.home-v3 .cta-band { background:linear-gradient(120deg,var(--pk-pink) 0%,var(--pk-pink-deep) 100%); text-align:center; color:#fff; padding:80px 0; }
.home-v3 .cta-band h2 { font-family:var(--pk-serif); color:#fff; font-size:clamp(2rem,4vw,2.8rem); margin-bottom:12px; }
.home-v3 .cta-band p { color:rgba(255,255,255,.92); max-width:520px; margin:0 auto 28px; font-size:14px; }
.home-v3 .cta-band .btn-paper { background:var(--pk-paper); color:var(--pk-pink); }
.home-v3 .cta-band .btn-paper:hover { background:var(--pk-blush); transform:translateY(-2px); }
.home-v3 .cta-band .btn-ghost { background:transparent; color:#fff; border:2px solid rgba(255,255,255,.7); }
.home-v3 .cta-band .btn-ghost:hover { background:rgba(255,255,255,.14); }

/* ══ FOOTER (soft pink) ══ */
.home-v3 .footer { background:linear-gradient(180deg,var(--pk-blush-soft),var(--pk-blush)); padding:70px 0 0; position:relative; color:var(--pk-ink); }
.home-v3 .foot-grid { display:grid; grid-template-columns:1.3fr 1fr 1.2fr 1.5fr; gap:36px; padding-bottom:50px; }
.home-v3 .foot-col h4 { font-family:var(--pk-serif); font-size:22px; font-weight:600; margin-bottom:20px; color:var(--pk-ink); }
.home-v3 .foot-col p { color:var(--pk-muted); font-size:13px; margin-bottom:14px; }
.home-v3 .foot-col ul li { margin-bottom:11px; }
.home-v3 .foot-col ul li a { color:var(--pk-muted); font-size:13px; display:inline-flex; align-items:center; gap:8px; transition:.2s; }
.home-v3 .foot-col ul li a:hover { color:var(--pk-pink); padding-left:4px; }
.home-v3 .foot-col ul li a i { color:var(--pk-pink); }
.home-v3 .foot-contact li { display:flex; gap:12px; margin-bottom:16px; color:var(--pk-muted); font-size:13px; align-items:flex-start; }
.home-v3 .foot-contact li i { color:var(--pk-pink); font-size:18px; margin-top:2px; }
.home-v3 .foot-contact li small { display:block; color:var(--pk-pink); font-size:11px; letter-spacing:1px; text-transform:uppercase; margin-bottom:2px; }
.home-v3 .news-form { display:flex; background:var(--pk-paper); border-radius:30px; padding:5px; box-shadow:var(--pk-shadow-soft); margin-top:8px; }
.home-v3 .news-form input { flex:1; border:none; background:none; outline:none; padding:10px 16px; font-family:var(--pk-sans); font-size:13px; color:var(--pk-ink); }
.home-v3 .news-form button { border:none; background:var(--pk-pink); color:#fff; border-radius:30px; padding:10px 22px; font-size:13px; font-weight:500; cursor:pointer; transition:.2s; }
.home-v3 .news-form button:hover { background:var(--pk-pink-deep); }
.home-v3 .foot-social { display:flex; gap:10px; margin-top:18px; }
.home-v3 .foot-social a { width:36px; height:36px; border-radius:50%; background:var(--pk-pink); color:#fff; display:flex; align-items:center; justify-content:center; transition:.2s; }
.home-v3 .foot-social a:hover { background:var(--pk-pink-deep); transform:translateY(-3px); }
.home-v3 .copyright { border-top:1px solid rgba(225,69,124,.18); text-align:center; padding:20px 0; color:var(--pk-muted); font-size:12.5px; }
.home-v3 .copyright a { color:var(--pk-pink); }

/* ══ Back to top ══ */
.home-v3 #top { position:fixed; right:22px; bottom:22px; width:48px; height:48px; border-radius:50%; background:var(--pk-pink); color:#fff;
  border:0; display:grid; place-items:center; font-size:1.2rem; cursor:pointer; opacity:0; pointer-events:none; transition:.3s; z-index:60; }
.home-v3 #top.show { opacity:1; pointer-events:auto; }

/* ══ Video modal ══ */
.home-v3 .vmodal { position:fixed; inset:0; background:rgba(42,34,42,.88); display:none; place-items:center; z-index:100; padding:20px; }
.home-v3 .vmodal.open { display:grid; }
.home-v3 .vmodal .box { width:min(900px,100%); aspect-ratio:16/9; position:relative; }
.home-v3 .vmodal iframe { width:100%; height:100%; border:0; border-radius:12px; }
.home-v3 .vmodal .x { position:absolute; top:-44px; right:0; color:#fff; font-size:2rem; background:none; border:0; cursor:pointer; }

/* ══ Focus (AA) ══ */
.home-v3 a:focus-visible, .home-v3 button:focus-visible { outline:3px solid var(--pk-pink); outline-offset:3px; border-radius:6px; }

/* ══ RESPONSIVE (home3 sections) ══ */
@media (max-width:992px) {
  .home-v3 .svc-grid, .home-v3 .feat-grid, .home-v3 .gallery, .home-v3 .testi-grid, .home-v3 .blog-grid { grid-template-columns:repeat(2,1fr); }
  .home-v3 .gallery .big { grid-row:span 1; grid-column:span 1; }
  .home-v3 .hero .container { grid-template-columns:1fr; }
  .home-v3 .hero-img { max-width:420px; margin:0 auto; order:-1; }
  .home-v3 .foot-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .home-v3 .video { background-attachment:scroll; }
}
@media (max-width:560px) {
  .home-v3 .svc-grid, .home-v3 .feat-grid, .home-v3 .gallery, .home-v3 .testi-grid, .home-v3 .blog-grid, .home-v3 .foot-grid { grid-template-columns:1fr; }
  .home-v3 .team-track .tm:not(.center) { display:none; }
  .home-v3 .foot-grid { text-align:center; }
  .home-v3 .foot-social, .home-v3 .foot-contact li { justify-content:center; }
}
@media (prefers-reduced-motion:reduce) {
  .home-v3 .play { animation:none; }
  .home-v3 .feat-card:hover, .home-v3 .blog-card:hover { transform:none; }
}
