:root {
  --bg: #fbfaf5;
  --paper: #ffffff;
  --ink: #24342e;
  --muted: #67736e;
  --sage: #789b87;
  --sage-dark: #426957;
  --mint: #e9f3ec;
  --peach: #f3c9a9;
  --clay: #c17c5a;
  --line: #dce5dc;
  --shadow: 0 22px 70px rgba(50, 78, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans Thai", system-ui, sans-serif;
  line-height: 1.7;
}

[v-cloak] {
  display: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  scroll-margin-top: 84px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 245, 0.88);
  border-bottom: 1px solid rgba(220, 229, 220, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--sage-dark);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
}

.nav-toggle::before {
  top: 16px;
}

.nav-toggle::after {
  bottom: 16px;
}

.promo-hero {
  position: relative;
  min-height: clamp(460px, 62vh, 640px);
  padding: calc(76px + 32px) 20px 32px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(9, 14, 12, 0.2) 0%, rgba(9, 14, 12, 0.1) 56%, rgba(9, 14, 12, 0.38) 100%),
    url("../images/bg/bg_green.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.promo-hero.theme-red {
  background-image:
    linear-gradient(180deg, rgba(9, 14, 12, 0.2) 0%, rgba(9, 14, 12, 0.1) 56%, rgba(9, 14, 12, 0.38) 100%),
    url("../images/bg/bg_red.webp");
}

.promo-hero.theme-blue {
  background-image:
    linear-gradient(180deg, rgba(9, 14, 12, 0.2) 0%, rgba(9, 14, 12, 0.1) 56%, rgba(9, 14, 12, 0.38) 100%),
    url("../images/bg/bg_blue.webp");
}

.promo-hero.theme-yellow {
  background-image:
    linear-gradient(180deg, rgba(9, 14, 12, 0.2) 0%, rgba(9, 14, 12, 0.1) 56%, rgba(9, 14, 12, 0.38) 100%),
    url("../images/bg/bg_yellow.webp");
}

.promo-hero.theme-orange {
  background-image:
    linear-gradient(180deg, rgba(9, 14, 12, 0.2) 0%, rgba(9, 14, 12, 0.1) 56%, rgba(9, 14, 12, 0.38) 100%),
    url("../images/bg/bg_orange.webp");
}

.promo-hero.theme-purple {
  background-image:
    linear-gradient(180deg, rgba(9, 14, 12, 0.2) 0%, rgba(9, 14, 12, 0.1) 56%, rgba(9, 14, 12, 0.38) 100%),
    url("../images/bg/bg_purple.webp");
}

.promo-hero.theme-pink {
  background-image:
    linear-gradient(180deg, rgba(9, 14, 12, 0.2) 0%, rgba(9, 14, 12, 0.1) 56%, rgba(9, 14, 12, 0.38) 100%),
    url("../images/bg/bg_pink.webp");
}

.promo-hero.theme-white {
  background-image:
    linear-gradient(180deg, rgba(9, 14, 12, 0.2) 0%, rgba(9, 14, 12, 0.1) 56%, rgba(9, 14, 12, 0.38) 100%),
    url("../images/bg/bg_white.webp");
}

.promo-hero.theme-black {
  background-image:
    linear-gradient(180deg, rgba(9, 14, 12, 0.2) 0%, rgba(9, 14, 12, 0.1) 56%, rgba(9, 14, 12, 0.38) 100%),
    url("../images/bg/bg_black.webp");
}

.promo-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.promo-logo {
  width: clamp(96px, 13vw, 150px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.32));
}

.promo-copy {
  max-width: 640px;
}

.promo-copy h1 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.25rem);
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.promo-copy h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.35;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.promo-copy p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.7;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}

.promo-actions {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.promo-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
}

.promo-button.signup {
  background: #21bf6b;
}

.promo-button.admin {
  background: #3ddb06;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.98) 0%, rgba(251, 250, 245, 0.82) 38%, rgba(251, 250, 245, 0.12) 74%),
    linear-gradient(0deg, rgba(251, 250, 245, 0.88) 0%, rgba(251, 250, 245, 0) 34%);
}

.hero-content {
  position: relative;
  width: min(650px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.35;
}

.hero-content p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--sage-dark);
  color: #fff;
  box-shadow: 0 14px 32px rgba(66, 105, 87, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--sage-dark);
  border: 1px solid var(--line);
}

.intro,
.services,
.packages,
.reviews,
.location,
.booking {
  padding: clamp(72px, 9vw, 116px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.intro-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(50, 78, 62, 0.06);
}

.intro-grid span {
  color: var(--sage);
  font-weight: 800;
}

.intro-grid p,
.section-heading p,
.price-list p,
.location p,
.booking p,
.service-card p,
blockquote p {
  color: var(--muted);
}

.section-heading {
  width: min(650px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.service-card div {
  padding: 24px;
}

.tag {
  margin-bottom: 8px;
  color: var(--clay) !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.packages,
.location {
  background: var(--mint);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.price-list {
  display: grid;
  gap: 14px;
}

.price-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(66, 105, 87, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.price-list h3,
.price-list p {
  margin-bottom: 0;
}

.price-list strong {
  white-space: nowrap;
  color: var(--sage-dark);
  font-size: 1.1rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

blockquote {
  margin: 0;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

blockquote p {
  font-size: 1.05rem;
}

cite {
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--sage-dark);
  font-weight: 700;
  list-style: none;
}

.map-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(120, 155, 135, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(120, 155, 135, 0.09) 1px, transparent 1px),
    #eef5ee;
  background-size: 44px 44px;
  box-shadow: var(--shadow);
}

.map-road {
  position: absolute;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(66, 105, 87, 0.08);
}

.map-road.horizontal {
  top: 47%;
  left: -5%;
  width: 110%;
  height: 54px;
}

.map-road.vertical {
  top: -5%;
  left: 55%;
  width: 48px;
  height: 110%;
}

.map-road.diagonal {
  top: 48%;
  left: 12%;
  width: 78%;
  height: 36px;
  transform: rotate(-28deg);
}

.map-pin {
  position: absolute;
  top: 39%;
  left: 49%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 10%;
  background: var(--clay);
  color: #fff;
  font-weight: 900;
  transform: rotate(-45deg);
  box-shadow: 0 18px 34px rgba(99, 72, 52, 0.2);
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sage-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.label-a {
  top: 24%;
  left: 18%;
}

.label-b {
  right: 9%;
  top: 58%;
}

.label-c {
  left: 12%;
  bottom: 14%;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

.booking-form button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark) !important;
  font-weight: 800;
}

.site-footer {
  padding: 32px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .promo-hero {
    min-height: 520px;
    padding-top: calc(68px + 28px);
  }

  .promo-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .promo-button {
    min-height: 54px;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(251, 250, 245, 1) 5%, rgba(251, 250, 245, 0.9) 42%, rgba(251, 250, 245, 0.05) 100%),
      linear-gradient(90deg, rgba(251, 250, 245, 0.72), rgba(251, 250, 245, 0));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 0 0 64px;
  }

  .intro-grid,
  .service-grid,
  .review-grid,
  .split,
  .booking-panel,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 330px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .promo-hero {
    min-height: 500px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .promo-copy p {
    margin-bottom: 22px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.35rem;
  }

  .intro,
  .services,
  .packages,
  .reviews,
  .location,
  .booking {
    padding: 62px 0;
  }

  .price-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-panel {
    padding: 24px;
  }
}
