/* Bangkok Bunny Massage — BS5 + UBella dark aesthetic */

/* ——— VARIABLES ——— */
:root {
  --pink:       #e41779;
  --pink-rgb:   228, 23, 121;
  --bg-black:   #000000;
  --bg-dark:    #1a1a1a;
  --bg-darker:  #0d0d0d;
  --bg-card:    #111111;
  --text-white: #ffffff;
  --text-gray:  #d8d8d8;
  --text-light: #c8c8c8;
  --border:     #222222;
}

/* ——— BASE ——— */
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

/* Remove Bootstrap container stepping below lg — avoids 720px cap on 768–991px viewports */
@media (max-width: 991px) {
  .container { max-width: 100%; }
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 300;
  background: var(--bg-black);
  color: var(--text-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Vidaloka', serif;
  font-weight: 400;
}

a { color: inherit; }

/* ——— SECTION TITLES ——— */
.section-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Vidaloka', serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--pink);
  margin-top: 0.9rem;
}
.text-center .section-title::after { margin-left: auto; margin-right: auto; }

/* ——— BUTTONS ——— */
.btn-pink {
  background: var(--pink);
  color: #fff !important;
  border: 2px solid var(--pink);
  border-radius: 2px;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-pink:hover {
  background: transparent;
  color: var(--pink) !important;
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink) !important;
}
@media (max-width: 575px) {
  .btn-pink, .btn-ghost { padding: 0.7rem 1.3rem; font-size: 0.8rem; }
}

/* ——— NAVBAR ——— */
.site-nav {
  background: rgba(0,0,0,0.97) !important;
  border-bottom: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
  flex-wrap: nowrap;
}
@media (max-width: 260px) {
  .nav-brand-text { display: none; }
}
/* Brush stroke edge at bottom of navbar */
.site-nav::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  padding-bottom: 5.208%;
  min-height: 40px;
  background-color: #000;
  -webkit-mask: url('/img/mask-top-add-alt.png') top left no-repeat;
  -webkit-mask-size: cover;
  mask: url('/img/mask-top-add-alt.png') top left no-repeat;
  mask-size: cover;
  transform: scaleY(-1);
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.2s;
}
.site-nav.scrolled::after {
  opacity: 0;
  pointer-events: none;
}

.navbar-brand {
  font-family: 'Vidaloka', serif;
  font-size: clamp(1.05rem, 5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff !important;
  white-space: nowrap;
}
.navbar-brand .brand-accent { color: var(--pink); }

.site-nav .nav-link {
  font-family: 'Vidaloka', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  padding: 0.4rem 0.55rem;
  transition: color 0.18s;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--pink) !important; }

.nav-call-btn {
  font-family: 'Vidaloka', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 2px;
  padding: 0.45rem 1.3rem;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.nav-call-btn:hover { border-color: var(--pink); color: var(--pink) !important; }

/* offcanvas — marble dark texture */
.offcanvas {
  background:
    radial-gradient(ellipse at 15% 85%, rgba(228,23,121,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(255,255,255,0.015) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(80,80,80,0.04) 0%, transparent 60%),
    linear-gradient(160deg, #111 0%, #0a0a0a 40%, #0d0d0d 70%, #090909 100%) !important;
}
.offcanvas .nav-link {
  color: var(--text-gray) !important;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.offcanvas .nav-link:hover { color: var(--pink) !important; }

/* ——— NAV BUNNY ICON ——— */
.nav-bunny-icon {
  width: clamp(36px, 8vw, 72px);
  height: clamp(36px, 8vw, 72px);
  border-radius: 50%;
  background-color: var(--pink);
  -webkit-mask: url('/img/logo.png') center/80% no-repeat;
  mask: url('/img/logo.png') center/80% no-repeat;
  flex-shrink: 0;
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 55% 45%, rgba(228,23,121,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-carousel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-carousel-bg .carousel-inner,
.hero-carousel-bg .carousel-item { height: 100%; }
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 1;
}
/* Hero ghost watermark */
.hero-watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 520px;
  z-index: 2;
  opacity: 0.13;
  filter: blur(0.4px) saturate(1.8) brightness(1.4);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 991px) { .hero-watermark { width: 80%; right: -10%; opacity: 0.07; } }
@media (max-width: 575px)  { .hero-watermark { display: none; } }
@media (min-width: 992px)  { .hero-sub { white-space: nowrap; } }

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.4rem;
  display: block;
}
.hero-title {
  font-family: 'Vidaloka', serif;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 0;
}
.hero-title .accent { color: var(--pink); }
.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--pink);
  margin: 1.8rem 0;
}
.hero-sub {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

/* ——— USP STRIP ——— */
.usp-strip {
  background: var(--bg-dark);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.usp-icon {
  font-size: 1.6rem;
  color: var(--pink);
  margin-bottom: 0.7rem;
}
.usp-label {
  font-family: 'Vidaloka', serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.3rem;
}
.usp-desc {
  font-size: 0.92rem;
  color: var(--text-gray);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ——— GIRLS STRIP ——— */
.girls-strip { background: var(--bg-dark); padding: 5rem 0; }
.girls-strip-cta { padding-top: 2.5rem; }
.girl-bio {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.6;
  text-align: center;
  margin: 0.8rem 0 0;
  padding: 0 0.25rem;
}

/* ——— GIRLS / MODEL CARDS ——— */
.girls-section { background: var(--bg-black); }

.model-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 3 / 4;
  max-height: 320px;
  background: #0e0e0e;
  display: block;
  text-decoration: none;
  margin: 0 auto;
}
.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.model-card:hover img { transform: scale(1.05); }

/* Model card placeholder — no photo yet */
.model-card-placeholder {
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-card-placeholder img {
  width: 55%;
  max-width: 100px;
  opacity: 0.18;
  filter: saturate(1.8) brightness(1.2);
  transition: none;
}
.model-card:hover .model-card-placeholder img { transform: none; }

.model-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 45%, transparent 100%);
  padding: 1.5rem 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.3s;
}
.model-name {
  font-family: 'Vidaloka', serif;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  color: #fff;
  margin-bottom: 0.2rem;
}
.model-meta {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.model-card-placeholder {
  aspect-ratio: 4 / 5;
  background: #0e0e0e;
  border: 1px solid #1e1e1e;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   MASSEUSES PAGE
══════════════════════════════════════════ */
.masseuses-hero {
  background: var(--bg-dark);
  padding: 5rem 0 3rem;
  text-align: center;
}
.masseuses-h1 {
  font-family: 'Vidaloka', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.masseuses-intro {
  color: var(--text-gray);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.75;
}

/* — Shop sections — */
.shop-section {
  padding: 2.5rem 0 2.5rem;
}
.shop-section-sister {
  border-top: 1px solid #222;
}
.sister-bg-black { background: var(--bg-black); }
.sister-bg-dark  { background: var(--bg-dark); }
.shop-h2 {
  font-family: 'Vidaloka', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin: 0 0 0.35rem;
  text-align: center;
}
.shop-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.shop-cta-logo {
  height: 60px;
  width: auto;
}
.shop-cta-text {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin: 0;
}
.shop-cta-btn {
  font-size: 1rem !important;
  padding: 0.8rem 2.2rem !important;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.shop-cta-link {
  color: var(--text-gray);
  font-size: 0.88rem;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.shop-cta-link:hover {
  opacity: 1;
  color: var(--pink);
}

/* — Sister shop header block — */
.sister-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sister-blurb {
  color: var(--text-gray);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.85;
  margin: 0.75rem 0 0;
}
.link-pink { color: var(--pink); text-decoration: none; transition: color 0.15s; }
.link-pink:hover { color: #fff; }

/* — Masseuse card — */
.mc {
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mc:hover { border-color: var(--pink); }
.mc-figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  flex-shrink: 0;
  position: relative;
}
.mc-figure::after,
.model-card::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  background: url('/img/logo.png') center/contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 3;
}
.mc-figure a { display: block; height: 100%; }
.mc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.mc:hover .mc-img { transform: scale(1.04); }
.mc-body {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.mc-name {
  font-family: 'Vidaloka', serif;
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin: 0 0 0.2rem;
  line-height: 1.2;
}
.mc-age {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
}
.mc-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.mc-badge {
  font-size: 0.78rem;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
  white-space: nowrap;
}
.mc-yes { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.35); }
.mc-no  { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.mc-avail {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0 0 1rem;
  flex: 1;
}
.mc-btn {
  display: block;
  width: 100%;
  background: var(--pink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 11px 0;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.mc-btn:hover { background: #c01060; color: #fff; }

/* ——— HEALTH STRIP ——— */
.health-strip {
  background: var(--bg-dark);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 5rem 0;
}
.health-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.health-strip-icon {
  font-size: 2.8rem;
  color: var(--pink);
  flex-shrink: 0;
}
.health-strip-text { flex: 1; min-width: 220px; }
.health-strip-title {
  font-family: 'Vidaloka', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.health-strip-body {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 575px) {
  .health-strip-inner { flex-direction: column; text-align: center; }
}

/* ——— UNIFORMS ——— */
.uniforms-section { background: var(--bg-dark); padding: 5rem 0; }
.uniform-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 3px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.2s;
}
.uniform-card:hover { border-color: var(--pink); }
.uniform-icon {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 1rem;
}
.uniform-name {
  font-family: 'Vidaloka', serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.6rem;
}
.uniform-desc {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}

/* ——— SERVICES ——— */
.services-section { background: var(--bg-black); padding: 5rem 0; }
.service-card {
  background: var(--bg-card);
  border: 3px solid var(--pink);
  border-radius: 3px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: #fff; }
.service-card-title {
  font-family: 'Vidaloka', serif;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6rem;
}
.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.75;
  letter-spacing: 0.03em;
  margin: 0 0 0.8rem;
}
.service-card-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.service-card-icon {
  color: var(--pink);
  font-size: 0.85rem;
  margin-top: 1.1rem;
  display: block;
  letter-spacing: 0.1em;
}

/* ——— GOOGLE REVIEWS BADGE ——— */
.reviews-section { background: var(--bg-black); padding: 5rem 0; }
.google-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #111;
  border: 2px solid #2a2a2a;
  border-radius: 6px;
  padding: 2rem 2.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
  flex-wrap: wrap;
  justify-content: center;
}
.google-badge:hover { border-color: var(--pink); }
.google-badge-logo { width: 48px; height: 48px; flex-shrink: 0; }
.google-badge-content { flex: 1; min-width: 160px; text-align: left; }
.google-badge-name {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 0.4rem;
}
.google-badge-stars { color: #fbbc05; font-size: 1.1rem; margin-bottom: 0.3rem; }
.google-badge-score strong { font-size: 1.5rem; color: #fff; }
.google-badge-score span { font-size: 0.88rem; color: var(--text-gray); margin-left: 0.4rem; }
.google-badge-cta {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  white-space: nowrap;
}

/* ——— OLD TESTIMONIAL CARDS (unused — kept for reference) ——— */
.testimonial-card {
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem 1.8rem;
  height: 100%;
}
.testimonial-stars {
  color: var(--pink);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ——— FAQ ——— */
.faq-section { background: var(--bg-dark); padding: 5rem 0; }
.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-active-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-color: #fff;
  --bs-accordion-btn-color: #fff;
  --bs-accordion-active-color: var(--pink);
  --bs-accordion-border-color: #2a2a2a;
  --bs-accordion-btn-focus-box-shadow: none;
}
.accordion-item { background: transparent !important; border-color: #2a2a2a !important; }
.accordion-button {
  background: transparent !important;
  color: #fff !important;
  font-family: 'Vidaloka', serif;
  letter-spacing: 0.05em;
  font-size: 1rem;
  box-shadow: none !important;
}
.accordion-button::after { filter: invert(1) brightness(0.6); }
.accordion-button:not(.collapsed) { color: var(--pink) !important; }
.accordion-button:not(.collapsed)::after { filter: invert(40%) sepia(80%) saturate(500%) hue-rotate(290deg); }
.accordion-body {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
  background: transparent;
}

/* ——— BRUSH STROKE SECTION DIVIDERS ——— */
/* Replace flat diag-wrap SVGs with brush stroke masks */
.brush-divider {
  position: relative;
  height: 55px;
  line-height: 0;
  overflow: hidden;
}
.brush-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-mask: url('/img/brush-bottom.svg') bottom left no-repeat;
  -webkit-mask-size: 100% 100%;
  mask: url('/img/brush-bottom.svg') bottom left no-repeat;
  mask-size: 100% 100%;
}
/* Keep simple diag-wrap for fallback */
.diag-wrap { line-height: 0; }
.diag-wrap svg { display: block; width: 100%; height: 55px; }

/* ——— ABOUT / WELCOME ——— */
:root { --about-right: #0f0f0f; }
.about-section { background: var(--bg-black); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-photo-panel {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.about-photo-panel img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.about-photo-placeholder {
  width: 100%; height: 100%; min-height: 400px;
  background: #0e0e0e;
  border: 1px solid #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  color: #2a2a2a;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.about-text-panel {
  background: var(--about-right);
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-gray);
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
}
.about-usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin: 1.5rem 0 0;
}
.about-usp {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-gray);
}
.about-usp i { color: var(--pink); font-size: 0.9rem; flex-shrink: 0; }
.about-signature {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.about-sig-logo {
  height: 42px;
  width: auto;
  opacity: 0.9;
  border-radius: 4px;
}
.about-sig-name {
  font-family: 'Vidaloka', serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 0 0 0.2rem;
}
.about-sig-role {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0;
}
@media (max-width: 767px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-panel { min-height: 280px; }
  .about-text-panel { padding: 3rem 1.5rem; }
}

/* ——— CTA STRIP ——— */
.cta-strip {
  position: relative;
  background: var(--bg-black);
  padding: 7rem 0;
  overflow: hidden;
}
.cta-strip-overlay { display: none; }
.cta-title {
  font-family: 'Vidaloka', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-title .accent { color: var(--pink); }
.cta-sub {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 0;
}

/* ——— TESTIMONIALS (big full-width quote) ——— */
.testimonials-section {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(228,23,121,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.testimonial-big {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-big-avatar {
  margin-bottom: 1.5rem;
}
.testimonial-avatar-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-gray);
}
.testimonial-big-name {
  font-family: 'Vidaloka', serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.2rem;
}
.testimonial-big-role {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 2rem;
}
.testimonial-big-quote {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-gray);
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
}
/* prev/next arrows */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px; height: 44px;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  z-index: 2;
}
.testimonial-nav:hover { border-color: var(--pink); color: var(--pink); }
.testimonial-nav-prev { left: 2rem; }
.testimonial-nav-next { right: 2rem; }
@media (max-width: 576px) {
  .testimonial-nav-prev { left: 0.5rem; }
  .testimonial-nav-next { right: 0.5rem; }
  .testimonial-big { padding: 4rem 3rem; }
}

/* ——— MAP ——— */
.map-section { background: var(--bg-black); padding: 5rem 0; }
.map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.map-embed-wrap {
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #222;
}
.map-info-panel { }
.map-info-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.map-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.5;
}
.map-info-list li i {
  color: var(--pink);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .map-inner { grid-template-columns: 1fr; }
  .map-embed-wrap { height: 300px; }
}

/* ——— SISTER SHOPS SECTION ——— */
.sister-shops-section {
  background: var(--bg-dark);
  padding: 5rem 0;
}
.sister-card {
  display: block;
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  transition: border-color 0.2s;
  height: 100%;
  text-align: center;
}
.sister-card:hover { border-color: var(--pink); }
.sister-card-active { border-color: rgba(228,23,121,0.3); }
.sister-card-img {
  width: 100%;
  height: auto;
  display: block;
}
.sister-card-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  margin: 0;
  padding: 0.5rem 0.5rem 0.2rem;
  line-height: 1.3;
}
.sister-card-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  letter-spacing: 0.03em;
  margin: 0;
  padding: 0 0.5rem 0.5rem;
}
.sister-card-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ——— FOOTER ——— */
.site-footer {
  background: #080808;
  color: var(--text-gray);
  padding-top: 4rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #1e1e1e;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-brand-row span {
  font-family: 'Vidaloka', serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.footer-brand-row .brand-accent { color: var(--pink); }
.footer-logo {
  height: 60px;
  width: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.footer-brand-about {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.footer-brand-seo {
  font-size: 0.72rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
@media (max-width: 991px) {
  .footer-brand-about,
  .footer-brand-seo,
  .footer-seo { display: none; }
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}
.footer-social:hover { border-color: var(--pink); background: var(--pink); color: #fff; }
.footer-col-title {
  font-family: 'Vidaloka', serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: color 0.18s;
}
.footer-link:hover { color: var(--pink); }
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-contact-list li i {
  color: var(--pink);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.footer-review-strip {
  background: #0a0a0a;
  border-top: 1px solid #1e1e1e;
  padding: 2rem;
  text-align: center;
}
.footer-review-stars {
  color: #fbbc05;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25em;
}
.footer-review-text {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin-bottom: 0.8rem;
}
.footer-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #111;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.18s;
}
.footer-review-btn:hover { background: #e8e8e8; color: #111; }
.footer-bottom {
  background: var(--pink);
  padding: 0.75rem 2rem 2.25rem;
  text-align: center;
}
.footer-bottom-meta {
  font-size: 1rem;
  color: #000;
  margin: 0 0 0.75rem;
  line-height: 2.2;
}
.footer-sep { margin: 0 0.7rem; color: rgba(0,0,0,0.3); }
.footer-meta-icon { color: #000; margin-right: 0.4rem; }
.footer-meta-link { color: #000; text-decoration: none; transition: color 0.2s; }
.footer-meta-link:hover { color: #fff; }
.footer-made { color: #000; }
.footer-made a { color: #000; text-decoration: none; }
.footer-made a:hover { color: #fff; }
.footer-seo {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 1100px;
}
@media (max-width: 991px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:nth-child(2),
  .footer-top > div:nth-child(4) { display: none; }
}
@media (max-width: 575px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-meta { font-size: 0.78rem; }
}

/* ——— SERVICE PAGE TABLES ——— */
.service-body table {
  width: auto;
  min-width: 280px;
  max-width: 480px;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.service-body table thead tr {
  background: var(--pink);
  color: #fff;
}
.service-body table thead th {
  padding: 0.75rem 1rem;
  font-family: 'Vidaloka', serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  border: none;
}
.service-body table tbody tr:nth-child(odd)  { background: #111; }
.service-body table tbody tr:nth-child(even) { background: #161616; }
.service-body table tbody tr:hover { background: #1c1218; }
.service-body table tbody td {
  padding: 0.65rem 1rem;
  color: var(--text-gray);
  border: none;
  border-bottom: 1px solid #1e1e1e;
}
.service-body table tbody tr:last-child td { border-bottom: none; }

/* ——— SERVICE NOTE BOX ——— */
.service-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #0d0d0d;
  border: 1px solid #222;
  border-left: 3px solid var(--pink);
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
}
.service-note i { color: var(--pink); font-size: 0.95rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ——— PAGE HERO (inner pages) ——— */
.page-hero {
  background: var(--bg-dark);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid #1e1e1e;
  text-align: center;
}
.page-hero-title {
  font-family: 'Vidaloka', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0 auto;
  line-height: 1.8;
  max-width: 680px;
}

/* ——— SERVICES LIST PAGE ——— */
.services-list-section {
  background: var(--bg-black);
  padding: 5rem 0;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s;
}
.svc-card:hover { border-color: var(--pink); }
.svc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.svc-card-top { flex: 1; padding: 1.8rem 1.8rem 0; }
.svc-card-bottom { padding: 0 1.8rem 1.8rem; border-top: 1px solid #222; margin-top: 1.2rem; padding-top: 1.2rem; }
.service-card-body { padding: 1rem 1.4rem; }
.svc-card-title {
  font-family: 'Vidaloka', serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.4rem;
  text-align: center;
}
.svc-card-sub {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: center;
}
.svc-card-desc {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: left;
}
.svc-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.svc-price-from {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gray);
}
.svc-price-num {
  font-family: 'Vidaloka', serif;
  font-size: 1.8rem;
  color: var(--pink);
  line-height: 1;
}
.svc-card-btn {
  display: block;
  background: transparent;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.7rem 1rem;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.svc-card-btn:hover { background: var(--pink); color: #fff; }
.services-intro {
}
.svc-intro-card {
  background: var(--bg-card);
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.svc-intro-card i {
  font-size: 1.6rem;
  color: var(--pink);
}
.svc-intro-card strong {
  font-family: 'Vidaloka', serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.svc-intro-card span {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.7;
}
.services-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: #666;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  padding-top: 1rem;
}
.services-note strong { color: var(--text-gray); }
/* ——— CONTACT PAGE ——— */
.contact-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-gray);
  transition: border-color 0.2s, color 0.2s;
}
.contact-method-card i {
  font-size: 2rem;
  color: var(--pink);
}
.contact-method-card strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.contact-method-card span {
  font-size: 0.85rem;
  word-break: break-all;
}
.contact-method-card:hover {
  border-color: var(--pink);
  color: #fff;
}
.contact-hours-badge {
  display: inline-flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border-radius: 100px;
  padding: 0.55rem 1.4rem;
  color: #ccc;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.contact-hours-badge .bi-clock-fill {
  color: var(--pink);
}
.contact-qr-wrap {
  display: inline-block;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 0.5rem;
}
.contact-qr-wrap img {
  display: block;
  border-radius: 4px;
}

/* ——— CONTACT FORM ——— */
.contact-form-label {
  display: block;
  color: #aaa;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.contact-form-input {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  font-family: inherit;
  resize: vertical;
}
.contact-form-input::placeholder {
  color: #444;
}
.contact-form-input:focus {
  border-color: var(--pink);
}
textarea.contact-form-input {
  min-height: 120px;
}
.contact-form-file {
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  color: var(--text-gray);
}
.contact-form-file::file-selector-button {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  color: #ccc;
  font-size: 0.82rem;
  padding: 0.3rem 0.7rem;
  margin-right: 0.75rem;
  cursor: pointer;
}

/* ——— NAV: Thai employment link ——— */
.nav-link-thai {
  color: var(--pink) !important;
  font-size: 0.88rem;
  white-space: nowrap;
}
.nav-link-thai:hover,
.nav-link-thai.active {
  color: #fff !important;
}

/* ——— OUTCALL PAGE ——— */
.outcall-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 1.75rem;
  height: 100%;
}
.outcall-step-num {
  font-family: 'Vidaloka', serif;
  font-size: 2.5rem;
  color: var(--pink);
  line-height: 1;
  min-width: 2.5rem;
}
.outcall-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.outcall-step-body strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.outcall-step-body span {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.7;
}
.outcall-step-btns {
  display: flex;
  gap: 0.4rem;
  flex-wrap: nowrap;
  margin-top: 0.5rem;
}
.btn-sm-inline {
  font-size: 0.72rem !important;
  padding: 0.28rem 0.65rem !important;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.outcall-area-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.outcall-area-card i {
  font-size: 2rem;
  color: var(--pink);
}
.outcall-area-card strong {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}
.outcall-area-card span {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.7;
}
.outcall-area-free {
  border-color: rgba(228,23,121,0.25);
}
.outcall-area-badge {
  background: var(--pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}
.outcall-area-badge-gray {
  background: #2a2a2a;
  color: #888;
}
.outcall-svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-gray);
  transition: border-color 0.2s, color 0.2s;
}
.outcall-svc-card i {
  font-size: 1.6rem;
  color: var(--pink);
}
.outcall-svc-card span {
  font-size: 0.85rem;
  line-height: 1.4;
}
.outcall-svc-card:hover {
  border-color: var(--pink);
  color: #fff;
}
.outcall-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.outcall-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}
.outcall-trust-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(228,23,121,0.25);
  border-radius: 8px;
  padding: 2rem 2.25rem;
  max-width: 860px;
  margin: 0 auto;
}
.outcall-trust-icon {
  font-size: 2.2rem;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.outcall-trust-box strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.outcall-trust-box p {
  color: var(--text-gray);
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0;
}
.outcall-list li i {
  color: var(--pink);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ——— ROOM CARDS ——— */
.room-card {
  background: var(--bg-card);
  border: 1px solid #222;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.room-card:hover { border-color: var(--pink); }
.room-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.room-card-body {
  padding: 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-card-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.4rem;
}
.room-card-title {
  font-family: 'Vidaloka', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.room-card-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.2rem;
}
.room-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ——— BACK TO TOP ——— */
#back-to-top {
  position: fixed;
  bottom: 205px;
  right: 22px;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 50%;
  color: #ccc;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, background 0.2s;
  z-index: 900;
  text-decoration: none;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
@media (max-width: 991px) {
  #back-to-top { bottom: 24px; right: 20px; }
}
.room-tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-gray);
  border: 1px solid #333;
  border-radius: 2px;
  padding: 0.2rem 0.6rem;
}

.services-cta-strip {
  background: var(--bg-black);
  padding: 6rem 0;
  border-top: 1px solid #1e1e1e;
}

/* ——— FLOATING BUTTONS ——— */
#float-contact {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.float-btn.phone { background: var(--pink); color: #fff; border: 2px solid #fff; }
.float-btn.wa    { background: #25d366; color: #fff; }
.float-btn.line  { background: #06c755; color: #fff; }

@media (max-width: 991px) {
  #float-contact { display: none !important; }
  .hero { min-height: 75vh; }
}
@media (max-width: 575px) {
  #care22-strip img { width: 120px !important; height: 120px !important; }
}
