/* ─────────────────────────────────────────────
   Premium Design Tokens — Thai Organic Touch
   ───────────────────────────────────────────── */
:root {
  /* Color Palette */
  --deep: #1E2C16;
  /* Primary Deep Forest Green */
  --deeper: #121C0E;
  /* Darkest forest green for shadows */
  --deep-accent: #24351C;
  /* Lighter forest green accent */
  --matcha: #727A4C;
  /* Primary Matcha Green */
  --soil-brown: #9E4D36;
  /* Red Soil Brown */
  --gold: #CFBA9F;
  /* Human skin / Soft gold-brown */
  --gold-lt: #DFD9C3;
  /* White Sand */
  --gold-deep: #9E4D36;
  /* Red Soil Brown for warm deep accents */
  --petal: #DFD9C3;
  /* White Sand background */
  --petal-2: #E3DEC9;
  /* Slightly darker sand cream background */
  --ink: #121E0E;
  /* Dark green-black text */
  --stone: #727A4C;
  /* Matcha green as stone accent */
  --stone-lt: rgba(114, 122, 76, 0.2);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Ranade', system-ui, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.625rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3.25rem;
  --text-5xl: 4.5rem;

  /* Layout Constants */
  --section-v: clamp(6rem, 12vw, 9rem);
  --container: 1200px;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ─────────────────────────────────────────────
   Reset & Base Styles
   ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--deeper);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-deep);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.8;
  color: var(--ink);
  background: var(--petal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
  transition: var(--transition);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 4rem);
}

.section--dark {
  background: var(--deep);
  color: var(--petal);
}

.section--light {
  background: var(--petal);
  color: var(--ink);
}

/* Section Header Typography */
.section-header {
  text-align: left;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.section--dark .section-header__title {
  color: var(--petal);
}

.section--light .section-header__title {
  color: var(--ink);
}

.section-header__sub {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--stone);
  font-weight: 300;
  max-width: 500px;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Eyebrow Accent */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

.eyebrow--light {
  color: var(--gold-lt);
}

/* ─────────────────────────────────────────────
   Premium Buttons
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--gold {
  background: var(--gold);
  color: var(--deeper);
  border: 1px solid var(--gold);
}

.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(12, 28, 19, 0.15);
}

.btn--outline {
  border: 1px solid rgba(250, 246, 240, 0.25);
  color: var(--petal);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.05);
  color: var(--gold-lt);
  transform: translateY(-2px);
}

.btn--outline-lt {
  border: 1px solid rgba(250, 246, 240, 0.2);
  color: var(--petal);
}

.btn--outline-lt:hover {
  border-color: var(--gold);
  background: rgba(250, 246, 240, 0.04);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* ─────────────────────────────────────────────
   Glassmorphic Sticky Navigation
   ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 18, 12, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--petal);
}

.nav__logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Gold color filter matching #CFBA9F brand soft gold */
  filter: brightness(0) saturate(100%) invert(84%) sepia(21%) saturate(350%) hue-rotate(345deg) brightness(89%) contrast(85%);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--petal);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__links a {
  color: rgba(250, 246, 240, 0.7);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav__links a:hover {
  color: var(--petal);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__lang select {
  background: transparent;
  border: 1px solid rgba(250, 246, 240, 0.3);
  color: rgba(250, 246, 240, 0.85);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.nav__lang select:hover,
.nav__lang select:focus {
  border-color: var(--gold);
  color: var(--petal);
}

.nav__lang select option {
  background: var(--deeper);
  color: var(--petal);
}

.nav__cta {
  background: var(--gold) !important;
  color: var(--deeper) !important;
  padding: 0.6rem 1.6rem !important;
  font-weight: 600 !important;
  border-radius: 0;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
}

/* Adaptive navbar text colors on desktop when unscrolled (split layout) */
@media (min-width: 1101px) {
  .nav:not(.scrolled) .nav__links a {
    color: rgba(250, 246, 240, 0.85);
    /* Light cream text matching the left panel theme */
  }

  .nav:not(.scrolled) .nav__links a::after {
    background: var(--gold-lt);
  }

  .nav:not(.scrolled) .nav__links a:hover {
    color: var(--petal);
  }

  .nav:not(.scrolled) .nav__cta {
    background: var(--gold) !important;
    color: var(--deeper) !important;
  }

  .nav:not(.scrolled) .nav__cta:hover {
    background: var(--gold-lt) !important;
    color: var(--deeper) !important;
  }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--petal);
  transition: var(--transition);
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ─────────────────────────────────────────────
   Zen-Inspired Curved Split Hero Section
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--deeper);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 6rem;
  z-index: 2;
}

.hero__content-col {
  animation: fadeInUp 1s ease forwards;
}

.hero__image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1.3s ease forwards;
}

.hero__wellness-illustration {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: stoneFloat 6s ease-in-out infinite;
}

.hero__brand-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2.2rem;
  animation: fadeInUp 1s ease forwards;
}

.hero__brand-logo {
  margin-bottom: 1.1rem;
}

.hero__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.hero__brand-tagline {
  font-size: var(--text-xs);
  color: var(--stone);
  letter-spacing: 0.25em;
  margin-top: 0.4rem;
  font-weight: 500;
}

.hero__content {
  animation: fadeInUp 1.2s ease forwards;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4.2vw, var(--text-5xl));
  font-weight: 300;
  line-height: 1.15;
  color: var(--petal);
  margin-bottom: 1.75rem;
}

.hero__sub {
  font-size: var(--text-md);
  font-weight: 300;
  color: #a4b2a8;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: clamp(2rem, 8vw, 6rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(250, 246, 240, 0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 5;
}

.hero__scroll-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, rgba(250, 246, 240, 0.5), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: linePulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stoneFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes linePulse {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ─────────────────────────────────────────────
   About Section
   ───────────────────────────────────────────── */
.about {
  padding: var(--section-v) 0;
  background: var(--petal);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(4rem, 8vw, 6rem);
  align-items: center;
}

.about__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2rem;
}

.about__body {
  color: rgba(16, 29, 20, 0.85);
  font-size: var(--text-md);
  line-height: 1.9;
  margin-bottom: 3.5rem;
}

.about__body p+p {
  margin-top: 1.5rem;
}

.about__pillars {
  border-top: 1px solid var(--petal-2);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pillar__mark {
  font-size: var(--text-md);
  color: var(--gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
  line-height: 1;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: 0.35rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.pillar p {
  font-size: var(--text-sm);
  color: var(--stone);
  font-weight: 300;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(12, 28, 19, 0.15);
}

.about__frame::before {
  content: '';
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(197, 160, 89, 0.25);
  pointer-events: none;
}

.about__frame-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.about__botanical-svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: var(--transition);
}

.about__frame:hover .about__botanical-svg {
  transform: scale(1.05);
}

.about__frame-script {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.about__frame-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.65);
}

/* ─────────────────────────────────────────────
   Services Section
   ───────────────────────────────────────────── */
.services {
  padding: var(--section-v) 0;
  background: var(--deeper);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(250, 246, 240, 0.08);
  border: 1px solid rgba(250, 246, 240, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.service-card {
  background: var(--deep);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--deep-accent);
  transform: translateY(-5px);
  z-index: 5;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.service-card__tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.service-card__tag--empty {
  visibility: hidden;
}

.service-card__thai {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: rgba(250, 246, 240, 0.22);
  font-weight: 300;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--petal);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: #a4b2a8;
  line-height: 1.8;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.service-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(250, 246, 240, 0.08);
}

.service-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.service-card__duration {
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  color: var(--stone);
  display: flex;
  align-items: center;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold-lt);
  font-weight: 400;
}

.service-card__currency {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--stone);
  font-weight: 400;
  margin-left: 1px;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--petal);
  border: 1px solid rgba(250, 246, 240, 0.2);
  background: transparent;
  transition: var(--transition);
}

.service-card__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deeper);
}

/* ─────────────────────────────────────────────
   CTA Bands
   ───────────────────────────────────────────── */
.cta-band {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  text-align: left;
}

.cta-band--mid {
  background: var(--deep);
  border-bottom: 1px solid rgba(250, 246, 240, 0.04);
}

.cta-band--deep {
  background: var(--deeper);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-band__text {
  font-family: var(--font-display);
  font-size: clamp(var(--text-lg), 3.2vw, var(--text-2xl));
  font-weight: 300;
  color: var(--petal);
}

.cta-band__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   Ritual Experience Section
   ───────────────────────────────────────────── */
.ritual {
  padding: var(--section-v) 0;
  background: var(--petal);
}

.ritual__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 300;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.ritual__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  position: relative;
}

.ritual__step {
  position: relative;
}

.ritual__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-5xl);
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 1rem;
  line-height: 1;
}

.ritual__step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.ritual__step p {
  font-size: var(--text-sm);
  color: rgba(16, 29, 20, 0.72);
  line-height: 1.8;
  font-weight: 300;
}

/* Step connector lines */
.ritual__steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--petal-2);
  z-index: 0;
}

.ritual__step {
  z-index: 1;
  background: var(--petal);
}

/* ─────────────────────────────────────────────
   Testimonials
   ───────────────────────────────────────────── */
.testimonials {
  padding: var(--section-v) 0;
  background: var(--deep);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(250, 246, 240, 0.02);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(250, 246, 240, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(197, 160, 89, 0.25);
  background: rgba(250, 246, 240, 0.04);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}

.testimonial-card__stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 1.75rem;
  font-size: var(--text-sm);
  position: relative;
  z-index: 2;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.75;
  color: rgba(250, 246, 240, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--petal);
  margin-top: auto;
}

.testimonial-card__origin {
  font-size: var(--text-xs);
  color: var(--stone);
  margin-top: 0.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   Elegant FAQ Accordion
   ───────────────────────────────────────────── */
.faq {
  padding: var(--section-v) 0;
  background: var(--petal);
}

.faq__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 300;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--petal-2);
  transition: var(--transition);
}

.faq__item:first-child {
  border-top: 1px solid var(--petal-2);
}

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0.5rem;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  gap: 1.5rem;
  user-select: none;
  transition: var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '';
  width: 14px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}

.faq__item[open] summary {
  color: var(--gold-deep);
}

.faq__item[open] summary::after {
  transform: rotate(90deg);
  background: var(--gold-deep);
}

.faq__item p {
  padding: 0 3rem 1.75rem 0.5rem;
  font-size: var(--text-sm);
  color: rgba(16, 29, 20, 0.75);
  line-height: 1.85;
  font-weight: 300;
  animation: detailsFade 0.4s ease-out forwards;
}

@keyframes detailsFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────────
   Contact & Booking Form Section
   ───────────────────────────────────────────── */
.contact {
  padding: var(--section-v) 0;
  background: var(--petal-2);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(4rem, 8vw, 6rem);
  align-items: start;
}

.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.contact__intro {
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.contact__details {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5rem;
}

.contact__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(16, 29, 20, 0.08);
  align-items: baseline;
}

.contact__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.contact__value {
  font-size: var(--text-sm);
  color: var(--ink);
  font-weight: 400;
}

.contact__link {
  color: var(--ink);
  border-bottom: 1px solid rgba(16, 29, 20, 0.15);
  transition: var(--transition);
  padding-bottom: 1px;
}

.contact__link:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.contact__map {
  margin-top: 3rem;
  box-shadow: 0 15px 35px rgba(12, 28, 19, 0.08);
  border: 1px solid rgba(16, 29, 20, 0.06);
}

.contact__map iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

/* Luxury Consultation Form */
.contact__form-wrap {
  background: var(--petal);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 30px 60px rgba(12, 28, 19, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.15);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: var(--ink);
}

.form-group {
  margin-bottom: 1.5rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.booking-grid .form-group {
  margin-bottom: 0;
}

.form-group.msg-group {
  grid-column: 1 / -1;
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.form-group label .req {
  color: var(--soil-brown);
}

.form-group label small {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  background: var(--petal-2);
  border: 1px solid rgba(114, 122, 76, 0.25); /* Matcha border */
  color: var(--ink);
  outline: none;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--soil-brown);
  background: rgba(158, 77, 54, 0.05);
}

.field-error {
  display: block;
  min-height: 1.1em;
  font-size: var(--text-xs);
  color: var(--soil-brown);
  margin-top: 0.4rem;
}

/* Custom select wrapper with pure CSS chevron */
.select-wrapper {
  position: relative;
  width: 100%;
}
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
}
.select-wrapper::after {
  content: '';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--stone);
  border-bottom: 2px solid var(--stone);
  pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--stone);
  background: var(--petal);
  box-shadow: 0 0 0 3px rgba(114, 122, 76, 0.15);
}

.form-group textarea {
  resize: vertical;
}

.form-sent {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin-top: 1.5rem;
  display: none;
  animation: detailsFade 0.3s ease;
}

.form-sent.visible {
  display: block;
}

.form-error-banner {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
  color: var(--soil-brown);
  background: rgba(158, 77, 54, 0.08);
  border: 1px solid rgba(158, 77, 54, 0.3);
  border-radius: 4px;
  text-align: center;
  padding: 0.85rem 1rem;
  margin-top: 1.5rem;
  display: none;
}

.form-error-banner.visible {
  display: block;
  animation: detailsFade 0.3s ease;
}

/* ─────────────────────────────────────────────
   Premium Footer
   ───────────────────────────────────────────── */
.footer {
  background: var(--deeper);
  padding: clamp(4rem, 8vw, 6rem) 0 3rem;
  color: var(--petal);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 246, 240, 0.06);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.footer__thai {
  opacity: 0.25;
}

.footer__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--petal);
  letter-spacing: 0.02em;
}

.footer__tagline {
  font-size: var(--text-xs);
  color: var(--stone);
  margin-top: 0.25rem;
  letter-spacing: 0.08em;
}

.footer__nav {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(250, 246, 240, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__nav a:hover {
  color: var(--gold-lt);
}

.footer__admin-link {
  opacity: 0.3;
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--stone);
  letter-spacing: 0.02em;
  font-weight: 300;
}

/* ─────────────────────────────────────────────
   Floating Action Buttons
   ───────────────────────────────────────────── */
.fab-group {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fab-trigger {
  display: none;
}

.fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(8, 18, 12, 0.25);
  border: 2px solid #000000;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
}

.fab__label {
  display: none;
}

.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(8, 18, 12, 0.35);
}

.fab--line {
  background: #06c755;
}

.fab--line:hover {
  background: #05b04b;
}

.fab--call {
  background: var(--gold);
  color: var(--deeper);
}

.fab--call:hover {
  background: var(--gold-lt);
}

/* ─────────────────────────────────────────────
   Responsive Media Queries
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .hero__brand-header {
    align-items: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__wellness-illustration {
    max-width: 320px;
  }

  .hero__scroll {
    display: none;
  }

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

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about__visual {
    order: -1;
  }

  .about__frame {
    aspect-ratio: 4/5;
    max-width: 280px;
    margin: 0 auto;
  }

  .about__botanical-svg {
    transform: none;
  }

  .about__frame:hover .about__botanical-svg {
    transform: scale(1.05);
  }

  .ritual__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .ritual__steps::before {
    display: none;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-v: 4rem;
  }

  /* ── Navigation ── */
  .nav {
    /* Keep fixed so it sticks to top on mobile too */
    position: fixed;
    background: rgba(18, 28, 14, 0.97);
    border-bottom: 1px solid rgba(207, 186, 159, 0.12);
    padding: 0.9rem 0;
    z-index: 200;
  }

  .nav.scrolled {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.9rem 0;
  }

  .nav.menu-open {
    background: transparent !important;
    border-bottom-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  .nav__inner {
    padding: 0 1.25rem;
  }

  .nav__logo-img {
    height: 44px;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #121C0E !important; /* Solid opaque color */
    padding: 2.5rem 2rem;
    gap: 2rem;
    z-index: 190;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: var(--text-xl);
    padding: 0.75rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__lang select {
    font-size: var(--text-md);
    padding: 0.6rem 1rem;
    min-height: 44px;
  }

  .nav__toggle {
    display: flex;
    z-index: 210;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav__cta {
    text-align: center;
    padding: 0.9rem 2.5rem !important;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Hero ── */
  .hero {
    padding-top: 5rem;
    min-height: 100svh;
  }

  .hero__container {
    padding-top: 2rem;
    padding-bottom: 3rem;
    gap: 2rem;
  }

  .hero__headline {
    font-size: clamp(var(--text-2xl), 7.5vw, var(--text-3xl));
    margin-bottom: 1.2rem;
  }

  .hero__sub {
    font-size: var(--text-sm);
    margin-bottom: 2.5rem;
    line-height: 1.75;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1.1rem 1.5rem;
    min-height: 52px;
  }

  .hero__wellness-illustration {
    max-width: 260px;
  }

  /* ── Buttons ── */
  .btn {
    min-height: 48px;
    padding: 0.9rem 1.75rem;
    font-size: var(--text-xs);
  }

  /* ── Sections ── */
  section .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* ── Services ── */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .booking-grid {
    gap: 1rem;
  }

  .services__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    justify-content: flex-start;
    gap: 0.5rem;
    /* Hide scrollbar visually */
    scrollbar-width: none;
  }
  .services__filters::-webkit-scrollbar { display: none; }

  .services__filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .service-card__cta {
    width: 100%;
    text-align: center;
    padding: 0.85rem;
    min-height: 48px;
  }

  /* ── Ritual steps ── */
  .ritual__steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ── Testimonials ── */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* ── Contact ── */
  .contact__item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .contact__form .btn {
    width: 100%;
    min-height: 52px;
  }

  /* ── Footer ── */
  .footer__inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }

  .footer__brand {
    justify-content: center;
    text-align: center;
  }

  .footer__copy {
    text-align: center;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .footer__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* ── FAB (floating action buttons) ── */
  .fab-group {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    left: auto;
    width: 48px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    padding: 0;
    pointer-events: none;
  }

  .fab-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--deeper);
    border: 2px solid #000000;
    box-shadow: 0 8px 24px rgba(8, 18, 12, 0.25);
    cursor: pointer;
    z-index: 101;
    pointer-events: auto;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s, color 0.2s, border-color 0.2s;
  }

  .fab-trigger:active {
    transform: scale(0.9);
  }

  .fab {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(8, 18, 12, 0.25);
    border: 2px solid #000000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    box-sizing: border-box;
    transform: translateY(15px) scale(0.7);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s, visibility 0.3s;
  }

  /* When expanded */
  .fab-group.active {
    pointer-events: auto;
  }

  .fab-group.active .fab-trigger {
    background: var(--deeper);
    color: var(--gold);
    border: 2px solid #000000;
  }

  .fab-group.active .fab {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .fab-group.active .fab--line {
    transition-delay: 0.05s;
  }

  .fab-group.active .fab--call {
    transition-delay: 0.1s;
  }

  .fab--line {
    border-right: none;
  }

  /* Account for FAB bar height + iPhone home bar at bottom (removed/reduced since it's floating now) */
  body {
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero__scroll-line::after,
  .hero__zen-stones {
    animation: none;
  }

  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ─────────────────────────────────────────────
   Aesthetic Redesign & Interactivity Upgrades
   ───────────────────────────────────────────── */

/* Scroll Entrance Reveals */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Premium Hero Overlay Polish */
.hero__left-content {
  /* Restored default layout to prevent breaking split panels */
  transition: opacity 1s ease, transform 1s ease;
}


/* Treatment Interactive Filters */
.services__filters {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  flex-wrap: wrap;
}

.services__filter-btn {
  background: transparent;
  border: 1px solid rgba(250, 246, 240, 0.12);
  color: rgba(250, 246, 240, 0.6);
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.services__filter-btn:hover {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
  background: rgba(197, 160, 89, 0.05);
}

.services__filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deeper);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2);
}

/* Modern Card Animation & Layout Refinements */
.services__grid {
  background: transparent;
  border: none;
  box-shadow: none;
  gap: 2rem;
}

.service-card {
  border: 1px solid rgba(250, 246, 240, 0.06);
  background: rgba(8, 18, 12, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    background 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.service-card:hover {
  background: var(--deep);
  border-color: rgba(197, 160, 89, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px) scale(1.01);
}

.service-card__name {
  letter-spacing: 0.02em;
}

.service-card__cta {
  border-color: rgba(197, 160, 89, 0.25);
  color: var(--gold-lt);
}

.service-card__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deeper);
  box-shadow: 0 6px 15px rgba(197, 160, 89, 0.25);
}

/* Testimonials Carousel / Slider */
.testimonials__slider {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0;
}

.testimonials__slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonials__slider-track .testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  background: rgba(250, 246, 240, 0.02);
  border: 1px solid rgba(250, 246, 240, 0.05);
  box-sizing: border-box;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.testimonials__slider-track .testimonial-card:hover {
  border-color: rgba(197, 160, 89, 0.2);
  background: rgba(250, 246, 240, 0.04);
}

@media (min-width: 768px) {
  .testimonials__slider-track .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .testimonials__slider-track .testimonial-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
  }
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonials__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 240, 0.12);
  color: var(--petal);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.testimonials__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 160, 89, 0.06);
  transform: scale(1.08);
}

.testimonials__btn:active {
  transform: scale(0.95);
}

.testimonials__dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials__dot:hover {
  background: rgba(250, 246, 240, 0.5);
}

.testimonials__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Timeline Interactivity & Ritual Steps */
.ritual__step {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 2.2rem 1.8rem;
  border: 1px solid transparent;
  margin: -1px;
}

.ritual__step:hover {
  transform: translateY(-8px);
  background-color: var(--petal-2);
  border-color: rgba(197, 160, 89, 0.15);
  box-shadow: 0 20px 40px rgba(12, 28, 19, 0.05);
}

.ritual__step:hover .ritual__num {
  opacity: 0.8;
  transform: scale(1.05);
}

.ritual__num {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Consultation Form Visual Elegance */
.contact__form-wrap {
  border-radius: 0;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.contact__form-wrap:hover {
  box-shadow: 0 40px 80px rgba(12, 28, 19, 0.1);
  border-color: rgba(197, 160, 89, 0.35);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .services__filters {
    gap: 0.5rem;
  }

  .services__filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
  }
}

/* Elegant Preloader Loading Screen */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--deeper);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader__icon {
  animation: preloaderSpin 2.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg) scale(0.9);
    opacity: 0.5;
  }

  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg) scale(0.9);
    opacity: 0.5;
  }
}

.preloader__mark-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  /* Gold color filter matching #CFBA9F brand soft gold */
  filter: brightness(0) saturate(100%) invert(84%) sepia(21%) saturate(350%) hue-rotate(345deg) brightness(89%) contrast(85%);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE OPTIMISATION — full breakpoint coverage
   Covers: 900px (tablet) → 768px → 480px → 390px → 360px
   + landscape orientation on short-viewport phones
═══════════════════════════════════════════════════════════ */

/* ── 900px: remove enforced card height so 2-col tablet wraps cleanly ── */
@media (max-width: 900px) {
  .service-card { min-height: 0; }
}

/* ── 768px additions: fill gaps the existing block doesn't cover ── */
@media (max-width: 768px) {
  /* Prevent iOS Safari auto-zoom on form inputs (must be ≥16px) */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }

  /* Stack CTA band vertically on mobile */
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1.5rem;
  }
  .cta-band__actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .cta-band__actions .btn {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  /* Map: slightly shorter so it doesn't dominate */
  .contact__map iframe { height: 220px; }

  /* Allow long address/copy to wrap on narrow screens */
  .footer__copy { overflow-wrap: break-word; word-break: break-word; }

  /* Reduce scroll-reveal translate — 30px is too big on short screens */
  .scroll-reveal { transform: translateY(18px) scale(0.99); }

  /* Section sub label: tighter on mobile */
  .section-header__sub { font-size: var(--text-sm); }
}

/* ── 480px: mid-small phones — hide hero illustration to keep CTA above fold ── */
@media (max-width: 480px) {
  /* Hero illustration takes ~260px of vertical space; hide it on small phones
     so the headline + CTA buttons remain visible without scrolling */
  .hero__image-col { display: none; }

  :root { --section-v: 3.5rem; }

  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .service-card { padding: 1.75rem 1.25rem; }

  .testimonials__slider-track .testimonial-card { padding: 2rem 1.5rem; }

  .ritual__step { padding: 1.75rem 1.25rem; }

  .contact__form-wrap { padding: 2rem 1.25rem; }

  .cta-band { padding: 2.5rem 0; }

  .section-header__sub { font-size: 0.7rem; }
}

/* ── 390px: iPhone 14 / 15 / 16 class ── */
@media (max-width: 390px) {
  .nav__inner { padding: 0 1rem; }
  .nav__logo-img { height: 40px; }

  .hero__headline {
    font-size: clamp(1.5rem, 7.5vw, 1.875rem);
    margin-bottom: 1rem;
  }
  .hero__sub {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }

  /* Tighten section headings across all content sections */
  .section-header__title,
  .about__headline,
  .ritual__headline,
  .contact__headline,
  .faq__headline {
    font-size: clamp(1.625rem, 8.5vw, 2.25rem);
  }

  .service-card__name { font-size: 1.375rem; }

  .testimonial-card__text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }

  .contact__form-title { font-size: 1.35rem; }
}

/* ── 360px: small Android phones (Galaxy A series, budget handsets) ── */
@media (max-width: 360px) {
  :root { --section-v: 3rem; }

  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .nav__inner { padding: 0 0.875rem; }
  .nav__logo-img { height: 36px; }

  .hero__headline { font-size: 1.5rem; line-height: 1.2; }
  .hero__sub { font-size: 0.8rem; }

  .btn { padding: 0.85rem 1.25rem; font-size: 0.75rem; }

  .service-card { padding: 1.5rem 1.1rem; }
  .service-card__name { font-size: 1.25rem; }
  .service-card__desc { font-size: 0.8rem; }

  .testimonials__btn { width: 40px; height: 40px; }

  .footer__thai { font-size: 1.5rem; }


}

/* ── Landscape: short-viewport phones (e.g. rotated iPhone SE) ── */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .hero__scroll { display: none; }
  .hero__container { gap: 2rem; }
  /* Show a smaller illustration in landscape so layout isn't too tall */
  .hero__image-col { display: flex; }
  .hero__wellness-illustration { max-width: 200px; }
  :root { --section-v: 3rem; }
}

/* ── Tablet bridge: CTA band stacking on 601–900px (iPad mini, small tablet) ── */
@media (min-width: 601px) and (max-width: 900px) {
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1.5rem;
  }
  .cta-band__actions { justify-content: center; }
}