:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f3f0ea;
  --ink: #1d1b18;
  --muted: #6f6a62;
  --line: #e6ded2;
  --gold: #b58a3a;
  --gold-soft: #e5d4ae;
  --gold-dark: #7b5a1b;
  --sage: #a7aca1;
  --rose: #d9c7bd;
  --shadow: 0 24px 60px rgba(47, 42, 33, 0.1);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans Thai", "Leelawadee UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(230, 222, 210, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 2rem, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  gap: 5px;
  place-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.nav-menu {
  position: absolute;
  inset: 74px 1rem auto;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  padding: 0.82rem 1rem;
  color: var(--muted);
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--surface-soft);
  color: var(--ink);
}

.hero {
  width: min(100% - 2rem, 1280px);
  margin: 1.25rem auto 0;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy {
  padding: clamp(2rem, 7vw, 5rem) 0 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  font-family: "Noto Serif Thai", "Leelawadee UI", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6rem);
  word-break: normal;
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2rem, 6vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.08rem, 3vw, 1.34rem);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 800;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.hero-trust span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0.35rem 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-media-wrap {
  position: relative;
  min-width: 0;
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #efe6d4 52%, #c7a25b);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-offer {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 220px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 16px 40px rgba(50, 42, 28, 0.14);
}

.hero-offer span,
.hero-offer strong {
  display: block;
}

.hero-offer span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-offer strong {
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.section,
.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading p,
.ba-card p,
.review-card p,
.location-card p {
  color: var(--muted);
}

.proof-strip,
.service-grid,
.before-after-grid,
.reviews-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.proof-strip {
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip article,
.service-card,
.ba-card,
.review-card,
.location-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.proof-strip article {
  padding: 1rem;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong,
.service-card span,
.stars {
  color: var(--gold-dark);
  font-weight: 900;
}

.proof-strip span {
  color: var(--muted);
}

.service-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card p {
  color: var(--muted);
}

.before-after-section {
  border-top: 1px solid var(--line);
}

.ba-card {
  padding: 1rem;
}

.ba-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.ba-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(145deg, #dfd9cf, #f8f6f1);
}

.ba-panel.after {
  background: linear-gradient(145deg, #fffaf0, #c9a45b);
}

.ba-panel.after.spa {
  background: linear-gradient(145deg, #f8f7f2, #a7aca1);
}

.ba-panel.after.facial {
  background: linear-gradient(145deg, #fff7f2, #d9c7bd);
}

.ba-panel span {
  color: rgba(29, 27, 24, 0.58);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ba-panel strong {
  margin-top: 0.2rem;
  font-size: 1.05rem;
}

.ba-card h3 {
  margin-top: 1rem;
}

.reviews-section {
  border-top: 1px solid var(--line);
}

.review-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}

.stars {
  letter-spacing: 0.06em;
}

.booking-panel {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.booking-panel .eyebrow,
.booking-panel p {
  color: var(--gold-soft);
}

.booking-panel .btn-primary {
  background: #fff;
  color: var(--ink);
}

.booking-panel .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.map-layout {
  display: grid;
  gap: 1rem;
}

.map-card {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}

.location-card a {
  color: var(--gold-dark);
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem 0 6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--ink);
}

.floating-line {
  position: fixed;
  right: 1rem;
  bottom: 4.75rem;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #06c755;
  color: #fff;
  box-shadow: 0 18px 36px rgba(6, 199, 85, 0.26);
  font-size: 0.85rem;
  font-weight: 900;
}

.mobile-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 17;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.12);
}

.mobile-contact-bar a {
  min-height: 56px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  font-weight: 900;
}

@media (min-width: 720px) {
  .proof-strip,
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid,
  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-menu a {
    padding: 0.5rem 0.7rem;
  }

  .hero {
    min-height: calc(100vh - 96px);
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-media img {
    min-height: 650px;
  }

  .service-grid,
  .before-after-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-layout {
    grid-template-columns: 1fr 360px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: start;
    padding-bottom: 2rem;
  }

  .floating-line {
    bottom: 1.25rem;
  }

  .mobile-contact-bar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
