/* =========================
   BASE
========================= */

:root {
  --cream: #fbf8f5;
  --sand: #f4eee8;
  --text: #2d2725;
  --muted: #7e7069;
  --line: #e7dcd4;
  --gold: #c79c69;
  --gold-dark: #b98952;
  --button-soft: #ead8ca;
  --shadow: 0 18px 50px rgba(91, 67, 50, 0.07);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 156, 105, 0.08), transparent 26%),
    linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   TOP BAR
========================= */

.top-location {
  background: #f3ebe4;
  border-bottom: 1px solid rgba(199, 156, 105, 0.12);
}

.top-location-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #876f5f;
  font-size: 0.92rem;
  text-align: center;
}

.top-phone {
  font-weight: 600;
}

.top-phone:hover {
  color: var(--gold-dark);
}

.top-separator {
  opacity: 0.45;
}

/* =========================
   HEADER
========================= */

.site-header {
  padding: 18px 0;
  background: rgba(251, 248, 245, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(199, 156, 105, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo {
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}

.brand-text small {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
  color: #86776f;
  font-size: 0.98rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-btn,
.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.2s ease;
  white-space: nowrap;
}

.contact-btn {
  border: 1px solid rgba(199, 156, 105, 0.28);
  background: rgba(255, 255, 255, 0.45);
  color: #6d5f58;
}

.top-cta {
  background: var(--button-soft);
  color: #5f524b;
  box-shadow: 0 8px 20px rgba(184, 137, 82, 0.08);
}

.contact-btn:hover,
.top-cta:hover {
  transform: translateY(-1px);
}

/* =========================
   PAGE MASSAGE THAÏ
========================= */

.thai-page {
  padding: 86px 0 92px;
}

/* HERO */

.thai-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
  margin-bottom: 46px;
}

.thai-kicker {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.thai-hero h1 {
  margin: 16px 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.thai-hero p {
  max-width: 600px;
  color: #6d5f58;
  line-height: 1.75;
  font-size: 1.05rem;
}

.thai-hero-image {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(91, 67, 50, 0.12);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.08)
    ),

    linear-gradient(
      90deg,
      rgba(251,248,245,0.72) 0%,
      rgba(251,248,245,0.18) 24%,
      rgba(251,248,245,0) 50%
    ),

    url("https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=1600&q=80")
    center center / cover no-repeat;
}

.thai-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(199,156,105,0.22),
      transparent 34%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(255,255,255,0.22),
      transparent 26%
    );
}

.thai-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 34px;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.03)
    );

  mix-blend-mode: soft-light;
}

/* WAT PHO CARD */

.watpho-card {
  margin-top: 30px;
  max-width: 540px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(199, 156, 105, 0.36);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 34px rgba(91, 67, 50, 0.045);
}

.watpho-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(199, 156, 105, 0.45);
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-size: 1.5rem;
}

.watpho-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.watpho-card span {
  display: block;
  margin-top: 5px;
  color: #6d5f58;
  font-size: 0.95rem;
}

/* INFO GRID */

.thai-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(232, 221, 213, 0.9);
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}

.thai-card {
  padding: 38px;
  border-right: 1px solid rgba(199, 156, 105, 0.18);
}

.thai-card:last-child {
  border-right: 0;
}

.thai-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 1px solid rgba(199, 156, 105, 0.42);
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-size: 1.55rem;
}

.thai-card h2,
.session-card h2,
.faq-section h2,
.contra-card h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1.05;
  font-weight: 600;
}

.thai-card p,
.contra-card p {
  margin: 0;
  color: #6d5f58;
  line-height: 1.7;
}

.thai-card ul {
  margin: 0;
  padding-left: 18px;
  color: #6d5f58;
  line-height: 1.9;
}

/* SESSION */

.session-card {
  padding: 36px;
  margin-bottom: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(232, 221, 213, 0.9);
  box-shadow: var(--shadow);
  text-align: center;
}

.session-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 30px;
}

.step span {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 1px solid rgba(199, 156, 105, 0.42);
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
}

.step strong {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.step p {
  margin: 0;
  color: #6d5f58;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ + CONTRA */

.faq-contra-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
}

.faq-section,
.contra-card {
  padding: 36px;
  border-radius: 30px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 221, 213, 0.9);
  box-shadow: var(--shadow);
}

.faq-section h2 {
  text-align: left;
}

.faq-section details {
  border-top: 1px solid rgba(199, 156, 105, 0.18);
  padding: 18px 0;
}

.faq-section details:first-of-type {
  border-top: 0;
}

.faq-section summary {
  cursor: pointer;
  list-style: none;
  color: #4f443f;
  font-weight: 600;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "+";
  float: right;
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.faq-section details[open] summary::after {
  content: "–";
}

.faq-section details p {
  margin: 12px 0 0;
  color: #6d5f58;
  line-height: 1.7;
}

.contra-card {
  text-align: center;
}

.contra-card .thai-icon {
  margin-left: auto;
  margin-right: auto;
}

.contra-card p + p {
  margin-top: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {
  .thai-hero,
  .thai-info-grid,
  .session-steps,
  .faq-contra-grid {
    grid-template-columns: 1fr;
  }

  .thai-hero-image {
    min-height: 420px;
  }

  .thai-card {
    border-right: 0;
    border-bottom: 1px solid rgba(199, 156, 105, 0.18);
  }

  .thai-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    margin-left: 0;
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 22px));
  }

  .top-location-inner {
    flex-wrap: wrap;
    padding: 8px 0;
    gap: 6px 12px;
  }

  .top-separator {
    display: none;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav {
    order: initial;
    gap: 24px;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
  }

  .contact-btn,
  .top-cta {
    flex: 1;
  }

  .thai-page {
    padding: 56px 0 70px;
  }

  .thai-hero h1 {
    font-size: 3.1rem;
  }

  .thai-hero-image {
    min-height: 330px;
  }

  .watpho-card {
    align-items: flex-start;
  }

  .thai-card,
  .session-card,
  .faq-section,
  .contra-card {
    padding: 26px;
  }

  .thai-card h2,
  .session-card h2,
  .faq-section h2,
  .contra-card h2 {
    font-size: 1.95rem;
  }

  .faq-section summary::after {
    margin-left: 12px;
  }
}

.thai-page {
  position: relative;
  padding: 86px 0 92px;
}

.thai-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at top right,
      rgba(199,156,105,0.08),
      transparent 24%
    ),

    radial-gradient(
      circle at bottom left,
      rgba(199,156,105,0.06),
      transparent 22%
    );
}