:root {
  color-scheme: light dark;
  --ink: #241d34;
  --muted: #665d78;
  --bg: #f6f4fb;
  --surface: #ffffff;
  --soft: #eee9f7;
  --line: #ddd4ef;
  --lav: #8b7fc7;
  --lav-dark: #5f559b;
  --peach: #f3a878;
  --peach-dark: #e0824f;
  --green: #06c755;
  --green-dark: #049b42;
  --shadow: 0 24px 60px -38px rgba(36, 29, 52, .55);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f4efff;
    --muted: #bdb4d0;
    --bg: #15111e;
    --surface: #211b2f;
    --soft: #2b243b;
    --line: #403653;
    --lav: #b8adeb;
    --lav-dark: #d1c9ff;
    --peach: #f6b385;
    --peach-dark: #ff985f;
    --shadow: 0 24px 60px -38px rgba(0, 0, 0, .8);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(70rem 44rem at 86% -16%, rgba(139, 127, 199, .25), transparent 58%),
    radial-gradient(52rem 38rem at -10% 8%, rgba(243, 168, 120, .18), transparent 55%),
    var(--bg);
  font-family: "Sarabun", "Noto Sans Thai", "Noto Sans SC", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
}
.brand-text strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}
.brand-text span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: .94rem;
}
.nav-links a {
  text-decoration: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--surface);
}
.lang-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 9px;
}
.lang-switch button.is-active {
  background: var(--soft);
  color: var(--ink);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}
.btn-line {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 18px 34px -24px var(--green-dark);
}
.btn-soft {
  background: var(--soft);
}
.hero {
  padding: 42px 0 34px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--lav-dark);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.18; letter-spacing: 0; }
h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 5.1rem);
}
.lead {
  margin: 18px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.trust-strip div {
  min-height: 88px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}
.trust-strip strong {
  display: block;
  font-size: 1.05rem;
}
.trust-strip span {
  color: var(--muted);
  font-size: .92rem;
}
.hero-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--soft) 82%, transparent));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-top {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 24px;
  align-items: center;
}
.hero-card-top img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
}
.quick-book {
  border-top: 1px solid var(--line);
  padding: 22px 24px 24px;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}
.quick-book h2 { margin: 0 0 12px; font-size: 1.25rem; }
.mini-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.mini-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 8px;
}
.mini-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.section { padding: 52px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}
.section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}
.card h3 { margin: 0 0 8px; font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); }
.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.price-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.price-row:last-child { border-bottom: 0; }
.price-row strong { font-size: 1.05rem; }
.price-row span { color: var(--muted); }
.price-row b { justify-self: end; font-size: 1.25rem; }
.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .96rem;
}
.area-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, color-mix(in srgb, var(--lav) 12%, var(--surface)), var(--surface));
}
.area b {
  display: block;
  font-size: 1.9rem;
  color: var(--lav-dark);
}
.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  counter-increment: steps;
  position: relative;
  padding-top: 52px;
}
.step::before {
  content: counter(steps);
  position: absolute;
  top: 18px;
  left: 22px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: #241d34;
  font-weight: 900;
}
.faq {
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px 18px;
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p {
  margin: 10px 0 0;
  color: var(--muted);
}
.contact-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--lav) 18%, var(--surface)), color-mix(in srgb, var(--peach) 16%, var(--surface)));
  padding: clamp(22px, 5vw, 42px);
}
.contact-band h2 { margin: 0 0 8px; }
.contact-band p { margin: 0 0 18px; color: var(--muted); }
.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr;
  gap: 20px;
}
.footer-grid a { display: block; margin: 4px 0; }
.policy-main {
  padding: 40px 0 60px;
}
.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.policy-nav {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
}
.policy-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
}
.policy-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(20px, 5vw, 44px);
}
.policy-content h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
.policy-content h2 { margin-top: 34px; }
.policy-content p, .policy-content li { color: var(--muted); }
.lang-block {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.mobile-only { display: none; }
[data-lang-panel] { display: none; }
[data-lang-panel].is-active { display: block; }

@media (max-width: 860px) {
  .nav { min-height: 68px; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hero { padding-top: 24px; }
  .hero-grid, .grid-3, .grid-2, .policy-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-card-top { grid-template-columns: 96px 1fr; padding: 18px; }
  .hero-card-top img { width: 96px; height: 96px; }
  .trust-strip, .area-map, .steps {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: block;
  }
  .section-head p { margin-top: 8px; }
  .price-row { grid-template-columns: 1fr; }
  .price-row b { justify-self: start; }
  .policy-nav { position: static; }
  .mobile-only { display: inline-flex; }
}

/* Refined storefront direction */
:root {
  color-scheme: light;
  --ink: #182923;
  --muted: #53635b;
  --bg: #f7f8f5;
  --surface: #ffffff;
  --soft: #edf2eb;
  --line: #dce4dc;
  --lav: #39715e;
  --lav-dark: #255440;
  --peach: #edaa79;
  --peach-dark: #bd6d40;
}
body { background: var(--bg); }
.container { width: min(1240px, calc(100% - 64px)); }
.site-header { background: rgba(255,255,255,.96); border-bottom: 1px solid #e4eae2; backdrop-filter: blur(12px); }
.nav { min-height: 82px; }
.brand img { width: 44px; height: 44px; border: 0; }
.brand-text strong { font-size: .94rem; letter-spacing: 0; }
.brand-text span { font-size: .75rem; }
.nav-links { gap: 28px; font-weight: 700; }
.nav-links a:hover, .footer-grid a:hover { color: var(--lav-dark); }
.lang-switch { border-radius: 6px; background: #f5f7f3; border-color: #e4e9e2; }
.lang-switch button { border-radius: 4px; }
.lang-switch button.is-active { background: #fff; box-shadow: 0 1px 5px #18292318; }
.btn { border-radius: 4px; min-height: 48px; padding: 11px 19px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-line { background: #06c755; border-color: #06c755; box-shadow: none; color: #fff; }
.btn-line:hover { background: #05ae4a; box-shadow: 0 10px 22px #03984432; }
.btn-soft { background: #fff; border-color: #fff; color: var(--ink); }
.hero {
  min-height: min(700px, calc(100svh - 82px));
  display: flex;
  align-items: end;
  padding: 90px 0 82px;
  color: #fff;
  background: linear-gradient(90deg, rgba(9,28,20,.8) 0%, rgba(9,28,20,.57) 42%, rgba(9,28,20,.08) 88%), url('assets/hero-home.png') center 53% / cover no-repeat;
}
.hero-content { width: min(1240px, calc(100% - 64px)); }
.hero-copy { max-width: 730px; }
.hero .eyebrow { color: #d6ecd9; margin-bottom: 20px; font-size: .92rem; font-weight: 700; letter-spacing: 0; }
.hero h1 { max-width: 780px; font-size: clamp(3.1rem, 5.2vw, 5.6rem); line-height: 1.06; font-weight: 800; text-wrap: balance; }
.hero .lead { max-width: 580px; margin-top: 24px; color: #f3f8f2; font-size: 1.14rem; line-height: 1.75; }
.hero-actions { margin-top: 30px; }
.hero-actions .btn { min-height: 52px; }
.facts-bar { background: #e8efe7; border-bottom: 1px solid #d5dfd4; }
.facts-inner { display: grid; grid-template-columns: 1.4fr .8fr 1fr; }
.facts-inner > div { padding: 24px 26px; border-right: 1px solid #d2ded1; }
.facts-inner > div:first-child { padding-left: 0; }
.facts-inner > div:last-child { border-right: 0; }
.facts-inner span { display: block; color: #5d7665; font-size: .77rem; font-weight: 700; margin-bottom: 4px; }
.facts-inner strong { font-size: 1.02rem; }
.section { padding: 88px 0; }
.section:nth-of-type(even) { background: #fff; }
.section-head { align-items: start; margin-bottom: 32px; }
.section h2 { font-size: clamp(2rem, 3vw, 2.75rem); }
.section-head p { max-width: 420px; line-height: 1.8; }
.grid-3 { gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid-3 .card { min-height: 220px; padding: 34px 28px 32px; background: transparent; border: 0; border-right: 1px solid var(--line); border-radius: 0; }
.grid-3 .card:first-child { padding-left: 0; }
.grid-3 .card:last-child { border-right: 0; }
.grid-3 .card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.grid-3 .card p { line-height: 1.8; }
.price-table { border-radius: 0; border: 0; border-top: 2px solid var(--ink); background: transparent; }
.price-row { padding: 17px 22px; }
.price-row:nth-child(even) { background: #f0f5ef; }
.price-row:nth-child(2) { border-left: 4px solid #06c755; }
.price-row strong { display: block; font-size: 1.08rem; }
.price-row span { display: block; font-size: .9rem; }
.price-row b { color: #204f3e; font-size: 1.35rem; }
.area-map { gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.area { min-height: 150px; padding: 24px; border: 0; border-right: 1px solid var(--line); border-radius: 0; background: transparent; }
.area:last-child { border: 0; }
.area b { font-size: 2rem; color: #829f88; }
.area span { display: block; margin-top: 14px; font-size: 1.15rem; font-weight: 800; }
.steps { gap: 0; border-top: 1px solid var(--line); }
.steps .card { padding: 72px 22px 20px; border: 0; border-right: 1px solid var(--line); border-radius: 0; background: transparent; }
.steps .card:first-child { padding-left: 0; }
.steps .card:last-child { border: 0; }
.step::before { top: 24px; left: 22px; width: auto; height: auto; background: transparent; color: #9b6c48; font-size: 1.25rem; }
.steps .card:first-child::before { left: 0; }
.faq { gap: 0; border-top: 1px solid var(--line); }
.faq details { padding: 19px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.faq summary { font-size: 1.08rem; }
.contact-band { border: 0; border-radius: 0; background: #1b3d30; color: #fff; padding: clamp(34px, 6vw, 70px); }
.contact-band h2 { color: #fff; }
.contact-band p { color: #d5e8da; }
.site-footer { background: #f0f3ee; }
.policy-content, .policy-nav { border-radius: 0; }
@media (max-width: 860px) {
  .container, .hero-content { width: min(100% - 36px, 1240px); }
  .nav { min-height: 66px; }
  .brand-text strong { font-size: .79rem; }
  .brand-text span { font-size: .68rem; }
  .brand img { width: 38px; height: 38px; }
  .hero { min-height: min(690px, calc(100svh - 66px)); padding: 80px 0 54px; background-position: 57% center; background-image: linear-gradient(0deg, rgba(9,28,20,.86) 0%, rgba(9,28,20,.5) 63%, rgba(9,28,20,.08) 100%), url('assets/hero-home.png'); }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hero .lead { font-size: 1rem; margin-top: 16px; }
  .facts-inner { grid-template-columns: 1fr 1fr; }
  .facts-inner > div { padding: 15px 12px; border-bottom: 1px solid #d2ded1; }
  .facts-inner > div:first-child { grid-column: 1 / -1; padding-left: 12px; }
  .facts-inner > div:last-child { border-right: 0; }
  .facts-inner strong { font-size: .9rem; }
  .section { padding: 62px 0; }
  .grid-3 .card, .grid-3 .card:first-child { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .grid-3 .card:last-child { border: 0; }
  .area-map { grid-template-columns: repeat(2, 1fr); }
  .area { min-height: 115px; padding: 16px; border-bottom: 1px solid var(--line); }
  .area:nth-child(2) { border-right: 0; }
  .area:nth-child(n+3) { border-bottom: 0; }
  .steps .card, .steps .card:first-child { padding: 54px 0 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps .card:last-child { border: 0; }
  .step::before, .steps .card:first-child::before { top: 18px; left: 0; }
}
@media (max-width: 430px) {
  .brand-text strong { max-width: 145px; }
  .lang-switch button { padding: 5px 6px; font-size: .72rem; }
  .nav { gap: 6px; }
  .hero h1 { font-size: 2.55rem; overflow-wrap: anywhere; }
  .hero-actions .btn { width: 100%; }
  .price-row { padding: 16px 12px; }
}

.nav-links [data-lang-panel].is-active { display: flex; gap: 28px; }
.hero-actions [data-lang-panel].is-active { display: flex; flex-wrap: wrap; gap: 12px; }
.quote-section { background: #e8efe7 !important; }
.quote-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(36px, 7vw, 110px); align-items: start; }
.quote-layout > [data-lang-panel] h2 { font-size: clamp(2.3rem, 4vw, 3.8rem); line-height: 1.15; margin: 0 0 22px; }
.quote-layout > [data-lang-panel] p:not(.eyebrow) { max-width: 390px; line-height: 1.85; color: var(--muted); }
.quote-layout .btn { margin-top: 16px; }
.quote-details ol { margin: 0; padding: 0; list-style: none; counter-reset: quote; border-top: 1px solid #b9ccba; }
.quote-details li { counter-increment: quote; position: relative; padding: 20px 0 20px 48px; border-bottom: 1px solid #b9ccba; }
.quote-details li::before { content: '0' counter(quote); position: absolute; left: 0; top: 21px; color: #637d69; font-size: .82rem; font-weight: 800; }
.quote-details strong, .quote-details span { display: block; }
.quote-details strong { font-size: 1.13rem; }
.quote-details span { color: var(--muted); margin-top: 3px; line-height: 1.65; }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.slots > div { padding: 28px 20px; border-right: 1px solid var(--line); }
.slots > div:first-child { padding-left: 0; }
.slots > div:last-child { border: 0; }
.slots span { display: block; color: #829f88; font-size: .86rem; margin-bottom: 14px; }
.slots strong { font-size: clamp(1.1rem, 2vw, 1.55rem); white-space: nowrap; }
@media (max-width: 860px) {
  .quote-layout { grid-template-columns: 1fr; gap: 35px; }
  .slots { grid-template-columns: repeat(2, 1fr); }
  .slots > div { padding: 20px 12px; border-bottom: 1px solid var(--line); }
  .slots > div:nth-child(2) { border-right: 0; }
  .slots > div:nth-child(n+3) { border-bottom: 0; }
  .slots strong { font-size: 1.15rem; }
  .hero-actions [data-lang-panel].is-active { display: flex; }
}
@media (max-width: 430px) { .hero-actions [data-lang-panel].is-active { display: grid; } }

.brand img { width: 54px; height: 54px; }
.hero { position: relative; }
.hero-brand-mark {
  position: absolute;
  top: 38px;
  left: max(32px, calc((100% - 1240px) / 2));
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 35px rgba(7, 25, 17, .25);
}
.hero-brand-mark img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .brand img { width: 42px; height: 42px; }
  .hero-brand-mark { top: 26px; left: 18px; width: 104px; height: 104px; }
}

.btn-book { background: #1b4936; border-color: #1b4936; color: #fff; }
.btn-book:hover { background: #123b2b; box-shadow: 0 10px 22px #0b2a1b33; }
.hero-book-note { margin: 15px 0 0; color: #e6f2e9; font-size: .86rem; font-weight: 700; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-band .btn-book { background: #fff; border-color: #fff; color: #183c2c; }
.contact-band .btn-book:hover { background: #e8f3ea; }
@media (max-width: 860px) {
  .nav { flex-wrap: wrap; gap: 4px 8px; padding: 8px 0; }
  .brand { flex: 1 1 auto; }
  .nav-actions { display: contents; }
  .nav-actions .lang-switch { order: 1; }
  .nav-actions .btn-book { display: inline-flex; order: 2; width: 100%; min-height: 38px; padding: 7px 12px; }
  .nav-actions .nav-line { display: none; }
  .hero { min-height: min(640px, calc(100svh - 112px)); }
  .hero-actions .btn { width: 100%; }
  .contact-actions .btn { flex: 1 1 150px; }
}
