/* =========================================================
   TAE MASSAGE — Classic Thai Brown Edition
   Token system v2.0
   ========================================================= */
:root {
  /* ---- Core Palette ---- */
  --bark:          #3B1505;   /* darkest — almost black-brown */
  --mahogany:      #632906;   /* primary dark brown */
  --sienna:        #944718;   /* mid-warm brown (main gradient partner) */
  --terracotta:    #B8611E;   /* highlight brown */
  --copper:        #C98A3E;   /* warm copper bridge */
  --gold:          #D4A24C;   /* gold accent — used sparingly */
  --champagne:     #F0DDB8;   /* pale cream text on dark */
  --ivory:         #FAF3EB;   /* light section BG */
  --paper:         #FFF9F2;   /* card / form BG */
  --ink:           #2C1507;   /* body text on light */

  /* ---- Gradients ---- */
  --grad-hero:    linear-gradient(140deg, #3B1505 0%, #632906 40%, #944718 75%, #B8611E 100%);
  --grad-brand:   linear-gradient(135deg, #632906 0%, #944718 100%);
  --grad-gold:    linear-gradient(135deg, #D4A24C 0%, #C98A3E 55%, #944718 100%);
  --grad-divider: linear-gradient(90deg, transparent, #944718, transparent);
  --grad-dark:    linear-gradient(180deg, #3B1505 0%, #1E0B02 100%);

  /* ---- Type ---- */
  --font-display:      'Cormorant Garamond', 'Noto Serif Thai', serif;
  --font-thai-display: 'Noto Serif Thai', serif;
  --font-body:         'Sarabun', sans-serif;
  --font-script:       'Cormorant Garamond', serif;

  /* ---- Misc ---- */
  --radius-soft: 16px;
  --radius-pill: 999px;
  --shadow-deep: 0 28px 64px -18px rgba(60, 20, 5, 0.55);
  --shadow-brown: 0 0 28px rgba(148, 71, 24, 0.45), 0 0 56px rgba(99, 41, 6, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-thai-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eng-script {
  font-family: var(--font-script);
  font-style: italic;
  letter-spacing: 0.05em;
}

a { text-decoration: none; }
::selection { background: var(--sienna); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   THAI LOTUS MOTIF — signature background pattern
   ========================================================= */
.thai-motif-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23D4A24C' stroke-width='1'%3E%3Cellipse cx='90' cy='90' rx='8' ry='8'/%3E%3Cellipse cx='90' cy='56' rx='7' ry='18'/%3E%3Cellipse cx='90' cy='124' rx='7' ry='18'/%3E%3Cellipse cx='56' cy='90' rx='18' ry='7'/%3E%3Cellipse cx='124' cy='90' rx='18' ry='7'/%3E%3Cellipse cx='66' cy='66' rx='7' ry='18' transform='rotate(-45 66 66)'/%3E%3Cellipse cx='114' cy='114' rx='7' ry='18' transform='rotate(-45 114 114)'/%3E%3Cellipse cx='114' cy='66' rx='7' ry='18' transform='rotate(45 114 66)'/%3E%3Cellipse cx='66' cy='114' rx='7' ry='18' transform='rotate(45 66 114)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar-luxury {
  background: rgba(40, 14, 4, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.95rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}
.navbar-luxury.is-scrolled {
  background: rgba(28, 9, 2, 0.95);
  padding: 0.5rem 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}
.navbar-luxury .brand-mark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--champagne);
}
.brand-th {
  font-family: var(--font-thai-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.brand-en {
  font-family: var(--font-script);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.navbar-luxury .nav-link-custom {
  color: rgba(240, 221, 184, 0.82) !important;
  font-weight: 500;
  margin: 0 0.6rem;
  position: relative;
  padding: 0.4rem 0 !important;
  transition: color 0.25s ease;
  letter-spacing: 0.02em;
}
.navbar-luxury .nav-link-custom::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--grad-brand);
  transition: width 0.3s ease;
}
.navbar-luxury .nav-link-custom:hover { color: #fff !important; }
.navbar-luxury .nav-link-custom:hover::after { width: 100%; }

.btn-nav-book {
  background: var(--grad-brand);
  color: var(--champagne) !important;
  font-weight: 700;
  padding: 0.48rem 1.3rem !important;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212,162,76,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-nav-book:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brown);
  color: #fff !important;
}

.navbar-toggler-luxury {
  border: 1px solid rgba(212,162,76,0.45);
  padding: 0.4rem 0.65rem;
}
.navbar-toggler-luxury .navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 22px; height: 2px;
  background: var(--gold);
  display: block;
}
.navbar-toggler-luxury .navbar-toggler-icon::before,
.navbar-toggler-luxury .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0; width: 22px; height: 2px;
  background: var(--gold);
}
.navbar-toggler-luxury .navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-luxury .navbar-toggler-icon::after { top: 7px; }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(28, 9, 2, 0.98);
    margin: 0 -1rem;
    padding: 1.2rem 1.5rem 1.6rem;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }
  .navbar-luxury .nav-link-custom { margin: 0.35rem 0; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}
/* warm inner glow — right side */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 45%, rgba(184,97,30,0.25), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
  mix-blend-mode: luminosity;
}
.hero-gradient-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(40,14,4,0.96) 0%, rgba(60,24,10,0.82) 40%, rgba(100,45,18,0.4) 72%, rgba(148,71,24,0.15) 100%);
}

.hero-content { position: relative; z-index: 3; padding: 8rem 0 5rem; }

.hero-eyebrow {
  font-family: var(--font-script);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.80rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 42px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-title {
  color: #fff;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.16;
  margin-bottom: 1rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-title .accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: rgba(240,221,184,0.75);
  font-family: var(--font-script);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  margin-bottom: 1.8rem;
}

.hero-desc {
  color: rgba(240, 221, 184, 0.78);
  font-size: 1.06rem;
  max-width: 530px;
  margin-bottom: 2.6rem;
  line-height: 1.9;
}

/* Hero ornament line between subtitle and desc */
.hero-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  opacity: 0.55;
}
.hero-ornament::before,
.hero-ornament::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
}
.hero-ornament span {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1.1rem; align-items: center; }

/* PRIMARY CTA — classic brown glow */
.btn-glow-book {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-thai-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: var(--grad-brand);
  padding: 1.05rem 2.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212,162,76,0.3);
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 10px 32px rgba(99,41,6,0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.03em;
}
.btn-glow-book:hover {
  transform: translateY(-3px) scale(1.015);
  color: #fff;
  box-shadow: 0 14px 42px rgba(148,71,24,0.65);
}
.btn-glow-book:active { transform: translateY(-1px) scale(0.99); }

.btn-glow-book::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: inherit;
  background: var(--grad-brand);
  filter: blur(16px);
  opacity: 0.6;
  z-index: -1;
  animation: pulseGlow 2.8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.45; filter: blur(14px); }
  50%       { opacity: 0.85; filter: blur(22px); }
}

/* HERO CTA — extra large, extra glow, the page's main action */
.btn-glow-book-hero {
  font-size: 1.22rem;
  padding: 1.35rem 3.4rem;
  box-shadow: 0 12px 40px rgba(99,41,6,0.6);
}
.btn-glow-book-hero::before {
  inset: -10px;
  filter: blur(22px);
  opacity: 0.75;
  animation: pulseGlowBig 2.4s ease-in-out infinite;
}
.btn-glow-book-hero::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1.5px solid rgba(212,162,76,0.55);
  z-index: -1;
  animation: ringPulseBig 2.4s ease-out infinite;
}
.btn-glow-book-hero:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 50px rgba(148,71,24,0.75);
}
@keyframes pulseGlowBig {
  0%, 100% { opacity: 0.55; filter: blur(18px); }
  50%       { opacity: 1;    filter: blur(30px); }
}
@keyframes ringPulseBig {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@media (max-width: 575.98px) {
  .btn-glow-book-hero {
    font-size: 1.12rem;
    padding: 1.25rem 1.5rem;
    width: 100%;
    justify-content: center;
  }
}

@keyframes ringPulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}

.btn-outline-luxury {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--champagne);
  border: 1px solid rgba(212,162,76,0.45);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-outline-luxury:hover {
  background: rgba(148,71,24,0.18);
  border-color: var(--gold);
  color: #fff;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2.8rem;
  margin-top: 3.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(212,162,76,0.18);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-stat .label {
  color: rgba(240,221,184,0.65);
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(240,221,184,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--sienna), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Ambient particles */
.ambient-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,97,30,0.9), transparent 70%);
  pointer-events: none;
  animation: floatUp linear infinite;
  z-index: 2;
}
@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.55; }
  90%  { opacity: 0.28; }
  100% { transform: translateY(-110vh) translateX(18px); opacity: 0; }
}

/* =========================================================
   SECTION GENERICS
   ========================================================= */
.section { position: relative; padding: 6.5rem 0; }
.section-ivory { background: var(--ivory); }
.section-dark {
  background: var(--grad-dark);
  color: var(--champagne);
}
/* Warm brand-brown dark sections (process, booking) */
.section-brand-dark {
  background: linear-gradient(160deg, #3B1505 0%, #632906 50%, #7A3510 100%);
  color: var(--champagne);
  position: relative;
}

.section-eyebrow {
  font-family: var(--font-script);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--sienna);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--sienna);
}
.section-brand-dark .section-eyebrow,
.section-brand-dark .section-eyebrow::before,
.section-dark .section-eyebrow,
.section-dark .section-eyebrow::before { color: var(--gold); background: var(--gold); }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  color: var(--mahogany);
  margin-bottom: 0.6rem;
}
.section-brand-dark .section-title,
.section-dark .section-title { color: #fff; }

.section-divider {
  width: 80px; height: 2px;
  background: var(--grad-divider);
  margin: 1.4rem auto 0;
}
.section-divider.left { margin: 1.4rem 0 0; }

.text-muted-luxury { color: #7a5c44; }
.section-brand-dark .text-muted-luxury,
.section-dark .text-muted-luxury { color: rgba(240,221,184,0.68); }

/* =========================================================
   ABOUT
   ========================================================= */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}
.about-img-frame {
  position: absolute;
  top: 22px; left: 22px; right: -22px; bottom: -22px;
  border: 2px solid var(--sienna);
  border-radius: var(--radius-soft);
  z-index: -1;
  opacity: 0.6;
}
.about-img-col { position: relative; padding-bottom: 22px; padding-right: 22px; }

.about-badge {
  position: absolute;
  bottom: -28px; right: 16px;
  background: var(--grad-brand);
  color: var(--champagne);
  border-radius: 50%;
  width: 120px; height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-brown);
  font-family: var(--font-thai-display);
  z-index: 5;
  border: 2px solid rgba(212,162,76,0.3);
}
.about-badge .yrs { font-size: 1.9rem; font-weight: 700; line-height: 1; color: #fff; }
.about-badge .yrs-label { font-size: 0.68rem; letter-spacing: 0.05em; color: var(--champagne); }

.about-list { list-style: none; padding: 0; margin: 1.8rem 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
  color: var(--ink);
}
.about-list .icon-dot {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* =========================================================
   SERVICES (cards)
   ========================================================= */
.service-card {
  background: #fff;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: 0 16px 38px -16px rgba(60,20,5,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  position: relative;
}
/* classic bottom-border accent */
.service-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -16px rgba(99,41,6,0.3);
}
.service-card:hover::after { opacity: 1; }

.service-img-wrap { position: relative; height: 230px; overflow: hidden; }
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.07); }

.service-body { padding: 1.5rem 1.5rem 1.8rem; }
.service-body h4 { font-size: 1.22rem; color: var(--mahogany); margin-bottom: 0.4rem; }
.service-body p { color: #7a6048; font-size: 0.93rem; line-height: 1.72; margin-bottom: 1.2rem; }

/* Tiered pricing list — 1hr / 1.30hr / 2hr per service */
.service-price-list {
  list-style: none;
  margin: 0;
  padding: 0.9rem 0 0;
  border-top: 1px dashed rgba(148,71,24,0.2);
}
.service-price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.42rem 0;
  font-size: 0.92rem;
}
.service-price-list li + li { border-top: 1px solid rgba(148,71,24,0.08); }
.price-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--sienna);
  font-weight: 500;
}
.price-duration svg { flex-shrink: 0; opacity: 0.8; }
.price-amount { color: var(--mahogany); font-weight: 700; }

/* =========================================================
   PROCESS / STEPS
   ========================================================= */
.process-step {
  position: relative;
  padding: 0 1.2rem;
  text-align: center;
}
.process-num {
  width: 64px; height: 64px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,162,76,0.06);
}
.process-step h5 { color: #fff; margin-bottom: 0.5rem; font-size: 1.08rem; }
.process-step p { color: rgba(240,221,184,0.65); font-size: 0.9rem; line-height: 1.75; }
.process-line {
  position: absolute;
  top: 32px; left: -50%; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,162,76,0.35), transparent);
  z-index: -1;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-soft);
  padding: 2.2rem 2rem;
  box-shadow: 0 16px 40px -16px rgba(60,20,5,0.15);
  height: 100%;
  position: relative;
  border-top: 3px solid var(--mahogany);
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--sienna);
  line-height: 1;
  opacity: 0.4;
}
.testimonial-card p { color: #5b4232; line-height: 1.88; margin: 0.8rem 0 1.4rem; }
.testimonial-person { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sienna);
}
.testimonial-person .name { font-weight: 700; color: var(--mahogany); font-size: 0.95rem; }
.testimonial-person .stars { color: var(--sienna); font-size: 0.78rem; letter-spacing: 0.1em; }

/* =========================================================
   BOOKING SECTION
   ========================================================= */
.booking-section {
  position: relative;
  background: linear-gradient(155deg, #3B1505 0%, #632906 45%, #7A3510 80%, #944718 100%);
  overflow: hidden;
}
.booking-card {
  background: var(--paper);
  border-radius: 20px;
  box-shadow: var(--shadow-deep);
  padding: 2.6rem 2.4rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(148,71,24,0.12);
}
.booking-card .form-label {
  color: var(--mahogany);
  font-weight: 600;
  font-size: 0.87rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
}
.booking-card .form-control,
.booking-card .custom-select {
  border: 1.5px solid rgba(148,71,24,0.25);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  height: auto;
  font-size: 0.95rem;
  background: #fffdf9;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.booking-card .form-control:focus,
.booking-card .custom-select:focus {
  border-color: var(--sienna);
  box-shadow: 0 0 0 3px rgba(148,71,24,0.15);
  outline: none;
}

.time-slot-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.time-slot {
  padding: 0.52rem 1rem;
  border: 1.5px solid rgba(148,71,24,0.22);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--mahogany);
  cursor: pointer;
  background: #fffdf9;
  transition: all 0.22s ease;
  user-select: none;
}
.time-slot:hover { border-color: var(--sienna); background: rgba(148,71,24,0.06); }
.time-slot.active {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 14px rgba(99,41,6,0.4);
}
.time-slot.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.btn-submit-booking {
  width: 100%;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-thai-display);
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: var(--radius-pill);
  border: none;
  margin-top: 0.6rem;
  box-shadow: var(--shadow-brown);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0.03em;
}
.btn-submit-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(99,41,6,0.55);
}
.btn-submit-booking:disabled { opacity: 0.55; transform: none; cursor: not-allowed; }

.booking-side-info { color: var(--champagne); position: relative; z-index: 2; }
.branch-info-block {
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid rgba(212,162,76,0.18);
}
.branch-info-block .branch-name {
  color: var(--gold);
  font-family: var(--font-thai-display);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.branch-info-block .info-row:last-child { margin-bottom: 0; }
.booking-side-info .info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.7rem;
}
.booking-side-info .info-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212,162,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.booking-side-info h6 { color: #fff; margin-bottom: 0.2rem; font-size: 0.92rem; }
.booking-side-info p { color: rgba(240,221,184,0.65); font-size: 0.88rem; margin: 0; }
.booking-side-info p a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(212,162,76,0.4); }
.booking-side-info p a:hover { color: #fff; }

.booking-success-toast {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 2000;
  background: var(--grad-brand);
  color: #fff;
  padding: 1rem 1.6rem;
  border-radius: 14px;
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  max-width: 320px;
  border: 1px solid rgba(212,162,76,0.25);
}

/* Fade transition */
.fade-enter-active, .fade-leave-active { transition: opacity 0.5s ease; }
.fade-enter, .fade-leave-to { opacity: 0; }

/* =========================================================
   GALLERY strip
   ========================================================= */
.gallery-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--sienna) var(--ivory);
}
.gallery-item {
  flex: 0 0 260px;
  height: 320px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gallery-cap {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  background: linear-gradient(to top, rgba(40,14,4,0.9), transparent);
  color: #fff;
  padding: 1.4rem 1.1rem 1rem;
  font-family: var(--font-thai-display);
  font-size: 1rem;
}

/* =========================================================
   MAP CARDS (per-branch Google Maps embed)
   ========================================================= */
.map-card {
  background: #fff;
  border-radius: var(--radius-soft);
  padding: 1.8rem;
  box-shadow: 0 16px 38px -16px rgba(60,20,5,0.18);
  height: 100%;
}
.map-card h5 { color: var(--mahogany); font-size: 1.2rem; margin-bottom: 0.3rem; }
.map-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 66%; /* responsive 600x450 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 26px -10px rgba(60,20,5,0.25);
}
.map-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.map-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
  color: var(--mahogany);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(99,41,6,0.2);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.map-fb-link:hover { color: var(--sienna); border-bottom-color: var(--sienna); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer-luxury {
  background: var(--bark);
  color: rgba(240,221,184,0.65);
  padding: 4rem 0 1.5rem;
  position: relative;
}
.footer-luxury h6 { color: var(--gold); margin-bottom: 1.1rem; letter-spacing: 0.04em; font-size: 0.95rem; }
.footer-luxury a { color: rgba(240,221,184,0.65); transition: color 0.2s ease; }
.footer-luxury a:hover { color: var(--gold); }
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,162,76,0.35);
  margin-right: 0.6rem;
  color: rgba(240,221,184,0.65);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.footer-social:hover {
  background: rgba(148,71,24,0.2);
  border-color: var(--sienna);
  color: var(--champagne);
}
.footer-bottom {
  border-top: 1px solid rgba(212,162,76,0.12);
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  font-size: 0.84rem;
  text-align: center;
}

/* =========================================================
   FLOATING CTA
   ========================================================= */
.fab-book {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 1500;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brown);
  border: 1px solid rgba(212,162,76,0.25);
  transition: transform 0.25s ease;
}
.fab-book:hover { transform: scale(1.08); color: #fff; }
.fab-book::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(148,71,24,0.5);
  animation: ringPulse 2.4s ease-out infinite;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .hero-content { padding: 6.5rem 0 3.5rem; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-cta-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ornament { justify-content: center; }
  .about-img-col { padding-right: 0; margin-bottom: 3rem; }
  .about-badge { right: 50%; transform: translateX(50%); }
}

@media (max-width: 767.98px) {
  .section { padding: 4.5rem 0; }
  .hero-title { font-size: 2.6rem; }
  .booking-card { padding: 1.6rem 1.15rem; border-radius: 16px; }
  .booking-card .form-control,
  .booking-card .custom-select {
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }
  .time-slot-grid { gap: 0.5rem; }
  .time-slot { flex: 1 1 calc(33.333% - 0.5rem); text-align: center; padding: 0.6rem 0.4rem; }
  .btn-submit-booking { font-size: 1rem; padding: 1.05rem; }
  .branch-info-block { padding-bottom: 1.1rem; margin-bottom: 1.1rem; }
  .map-card { padding: 1.3rem; }
  .process-line { display: none; }
  .fab-book { width: 52px; height: 52px; bottom: 14px; right: 14px; }
}

@media (max-width: 575.98px) {
  .hero-cta-row { flex-direction: column; width: 100%; }
  .hero-cta-row .btn-glow-book,
  .hero-cta-row .btn-outline-luxury { width: 100%; justify-content: center; text-align: center; }
  .gallery-item { flex: 0 0 220px; height: 270px; }
}

/* =========================================================
   BOOKING MODAL
   ========================================================= */
.booking-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px -20px rgba(60, 20, 5, 0.6);
}

.booking-modal-header {
  background: linear-gradient(135deg, #3B1505 0%, #632906 50%, #944718 100%);
  border-bottom: 1px solid rgba(212, 162, 76, 0.3);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-modal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.3rem;
}

.booking-modal-title {
  font-family: var(--font-thai-display);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.booking-modal-close {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.booking-modal-close:hover {
  background: rgba(255,255,255,0.22);
}

.booking-modal-body {
  background: var(--ivory);
  padding: 2rem 2rem 2.5rem;
}

/* Make the side info panel look right inside modal (light bg) */
.booking-modal-body .booking-side-info {
  background: #fff;
  border: 1px solid rgba(148,71,24,0.12);
}
.booking-modal-body .booking-side-info h6,
.booking-modal-body .branch-name {
  color: var(--mahogany);
}
.booking-modal-body .booking-side-info p,
.booking-modal-body .info-row p {
  color: var(--ink);
}
.booking-modal-body .info-icon {
  background: rgba(148,71,24,0.08);
  color: var(--sienna);
}

@media (max-width: 767.98px) {
  .booking-modal-header { padding: 1.2rem 1.2rem; }
  .booking-modal-body { padding: 1.2rem 1rem 1.8rem; }
  .booking-modal-title { font-size: 1.2rem; }
}
