/* ═══════════════════════════════════════════════════════════
   Reg reg Pilates — Design System
   Warm Cream 60% · Olive Green 30% · Warm Oak 10%
   ═══════════════════════════════════════════════════════════ */

:root {
  --cream: #FDFBF7;
  --cream-2: #F7F2E9;
  --sand: #EFE7DA;
  --sand-2: #E3D7C4;
  --olive: #556B2F;
  --olive-deep: #3E4F22;
  --olive-soft: #7E9153;
  --olive-tint: #EDF0E4;
  --oak: #8B5A2B;
  --oak-deep: #6E4621;
  --oak-tint: #F3E9DE;
  --ink: #2B2B2B;
  --ink-2: #4A4640;
  --muted: #736E65;
  --line: #E6DECF;
  --white: #FFFFFF;

  --font-display: 'Anuphan', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'IBM Plex Sans Thai', 'Anuphan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --wrap: 1220px;
  --wrap-narrow: 860px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(43, 43, 43, .05), 0 4px 14px rgba(43, 43, 43, .05);
  --shadow: 0 2px 6px rgba(43, 43, 43, .06), 0 16px 40px rgba(43, 43, 43, .08);
  --shadow-lg: 0 30px 70px rgba(43, 43, 43, .14);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);

  --sp-section: clamp(4.5rem, 8vw, 8rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.2; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--olive); color: var(--cream); }

:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--olive); color: var(--cream); padding: .8rem 1.2rem;
}
.skip:focus { left: 0; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 2rem); } }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: var(--sp-section); }
.section-sm { padding-block: clamp(3rem, 5vw, 4.5rem); }
.bg-sand { background: var(--sand); }
.bg-cream2 { background: var(--cream-2); }
.bg-olive { background: var(--olive); color: var(--cream); }
.bg-white { background: var(--white); }

.muted { color: var(--muted); }
.center { text-align: center; }

/* ── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--oak); margin: 0 0 1rem;
}
.eyebrow-light { color: rgba(253, 251, 247, .82); }
.bg-olive .eyebrow { color: var(--sand-2); }

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  font-weight: 400; letter-spacing: .005em; line-height: 1.15;
  color: var(--olive-deep);
}
.bg-olive .sec-title { color: var(--cream); }
.sec-sub {
  margin: 1.1rem 0 0; color: var(--muted);
  font-size: 1.03rem; max-width: 62ch;
}
.bg-olive .sec-sub { color: rgba(253, 251, 247, .78); }
.sec-head { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.sec-head-center { text-align: center; }
.sec-head-center .sec-sub { margin-inline: auto; }
.sec-head-left { text-align: left; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.7rem;
  font-family: var(--font-body); font-size: .93rem; font-weight: 500;
  letter-spacing: .02em; border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; text-align: center;
  transition: transform .34s var(--spring), background-color .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-3px) scale(1.035); }
.btn:active { transform: translateY(-1px) scale(.965); transition-duration: .1s; }
.btn-primary:hover, .btn-oak:hover, .btn-light:hover { box-shadow: 0 10px 24px rgba(43, 43, 43, .18); }
.btn-arrow { transition: transform .34s var(--spring); flex: none; }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn:active .btn-arrow { transform: translateX(2px); }
.btn-primary { background: var(--olive); color: var(--cream); }
.btn-primary:hover { background: var(--olive-deep); }
.btn-oak { background: var(--oak); color: var(--cream); }
.btn-oak:hover { background: var(--oak-deep); }
.btn-outline { border-color: var(--olive); color: var(--olive); background: transparent; }
.btn-outline:hover { background: var(--olive); color: var(--cream); }
.btn-ghost-light { border-color: rgba(253, 251, 247, .5); color: var(--cream); }
.btn-ghost-light:hover { background: rgba(253, 251, 247, .14); border-color: var(--cream); }
.btn-light { background: var(--cream); color: var(--olive-deep); }
.btn-light:hover { background: var(--white); }
.btn-sm { padding: .62rem 1.25rem; font-size: .86rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 500; color: var(--oak);
  border-bottom: 1px solid transparent; transition: all .25s var(--ease);
}
.link-arrow svg { transition: transform .34s var(--spring); }
.link-arrow:hover { color: var(--oak-deep); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ── Ratios & images ────────────────────────────────────── */
.ratio { position: relative; overflow: hidden; background: var(--sand); }
.ratio > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ratio-1x1 { aspect-ratio: 1 / 1; }
.ratio-4x3 { aspect-ratio: 4 / 3; }
.ratio-3x4 { aspect-ratio: 3 / 4; }
.ratio-16x10 { aspect-ratio: 16 / 10; }
.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-3x2 { aspect-ratio: 3 / 2; }
.ratio-21x9 { aspect-ratio: 21 / 9; }

/* ── Top bar & header ───────────────────────────────────── */
.topbar { background: var(--olive-deep); color: var(--cream); font-size: .82rem; }
.topbar-in { display: flex; align-items: center; justify-content: center; gap: .55rem; padding: .55rem 0; flex-wrap: wrap; text-align: center; }
.topbar-icon { color: var(--sand-2); flex: none; }
.topbar a { display: inline-flex; align-items: center; gap: .25rem; color: var(--sand-2); border-bottom: 1px solid rgba(227, 215, 196, .45); }
.topbar a:hover { color: var(--white); }

.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 247, .88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-head.is-stuck { box-shadow: 0 1px 20px rgba(43, 43, 43, .07); }
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: .7rem; flex: none; }
.brand-logo { width: 48px; height: 48px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.28rem; color: var(--olive-deep); letter-spacing: .01em; }
.brand-tag { font-size: .6rem; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); }

.main-nav ul { display: flex; align-items: center; gap: .2rem; list-style: none; }
.main-nav a {
  display: block; padding: .5rem .72rem; font-size: .88rem; color: var(--ink-2);
  border-radius: 999px; transition: all .22s var(--ease); white-space: nowrap;
}
.main-nav a:hover { color: var(--olive-deep); background: var(--olive-tint); }
.main-nav a.is-current { color: var(--olive-deep); font-weight: 500; }

.head-actions { display: flex; align-items: center; gap: .6rem; flex: none; }
.nav-toggle { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; color: var(--olive-deep); }
.nav-toggle .nav-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-close { display: block; }

.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--cream); padding: 1rem 0 1.6rem; }
.mobile-nav ul { list-style: none; width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
.mobile-nav li + li { border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: .95rem .2rem; font-size: 1.02rem; color: var(--ink-2); }
.mobile-nav a.is-current { color: var(--olive); font-weight: 500; }
.mobile-cta { width: min(100% - 2rem, var(--wrap)); margin: 1.2rem auto 0; }
.mobile-social { display: flex; justify-content: center; gap: 1rem; margin-top: 1.3rem; }
.mobile-social a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--olive);
}

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav { display: block; }
  .mobile-nav[hidden] { display: none; }
  .head-cta { display: none; }
}
@media (max-width: 460px) {
  .brand-logo { width: 40px; height: 40px; }
  .brand-name { font-size: 1.1rem; }
  .head-in { min-height: 66px; }
}

/* ── Home hero slider ───────────────────────────────────── */
.hero { position: relative; background: var(--olive-deep); overflow: hidden; }
.hero-track { position: relative; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1.05s var(--ease), visibility 1.05s;
}
.hero-slide.is-active { position: relative; opacity: 1; visibility: visible; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slide.is-active .hero-media img { animation: heroZoom 12s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.045); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(30, 34, 20, .74) 0%, rgba(30, 34, 20, .44) 42%, rgba(30, 34, 20, .12) 72%, rgba(30, 34, 20, .3) 100%),
    linear-gradient(to top, rgba(30, 34, 20, .55), transparent 45%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: none; margin-inline: 0;
  min-height: clamp(560px, 82vh, 820px);
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(4rem, 9vh, 7rem);
  padding-inline: clamp(1.35rem, 6vw, 7rem) 1.5rem;
  color: var(--cream);
}
.hero-inner > .eyebrow,
.hero-inner > .hero-title,
.hero-inner > .hero-actions { max-width: 760px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.1; letter-spacing: .005em; margin: 0 0 1.2rem;
  text-wrap: balance; text-shadow: 0 2px 30px rgba(20, 22, 14, .35);
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.75;
  color: rgba(253, 251, 247, .9); max-width: 54ch; margin: 0 0 2.1rem;
  text-shadow: 0 1px 18px rgba(20, 22, 14, .3);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-controls {
  position: absolute; left: 0; right: 0; bottom: clamp(1.5rem, 4vh, 2.8rem); z-index: 4;
  display: flex; align-items: center; gap: .55rem;
  padding-inline: clamp(1.35rem, 6vw, 7rem) 1.5rem;
}
.hero-dots { display: flex; gap: .55rem; margin-left: .8rem; }
.hero-dot {
  width: 34px; height: 3px; border: 0; padding: 0; cursor: pointer;
  background: rgba(253, 251, 247, .38); border-radius: 999px;
  transition: background .3s var(--ease), transform .34s var(--spring);
}
.hero-dot:hover { transform: scaleY(2.2); background: rgba(253, 251, 247, .7); }
.hero-dot.is-active { background: var(--cream); }
.hero-arrow {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: rgba(253, 251, 247, .14); border: 1px solid rgba(253, 251, 247, .3);
  color: var(--cream); cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform .34s var(--spring), background .25s var(--ease);
}
.hero-arrow:hover { background: rgba(253, 251, 247, .3); transform: scale(1.12); }
.hero-arrow:active { transform: scale(.9); }
@media (max-width: 760px) {
  .hero-arrow { display: none; }
  .hero-dots { margin-left: 0; }
  .hero-inner { min-height: 74vh; }
  .hero-scrim { background: linear-gradient(to top, rgba(30, 34, 20, .82) 0%, rgba(30, 34, 20, .42) 55%, rgba(30, 34, 20, .35) 100%); }
}

/* ── Page hero ──────────────────────────────────────────── */
.page-hero { position: relative; background: var(--olive-deep); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(30, 34, 20, .78), rgba(30, 34, 20, .42) 65%, rgba(30, 34, 20, .28));
}
.page-hero-inner {
  position: relative; z-index: 2; color: var(--cream);
  width: 100%; max-width: none; margin-inline: 0;
  padding-block: clamp(4.5rem, 12vh, 8rem);
  padding-inline: clamp(1.35rem, 6vw, 7rem) 1.5rem;
}
.page-hero-inner > .crumb,
.page-hero-inner > .eyebrow,
.page-hero-inner > .page-hero-title { max-width: 780px; }
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.12; margin: 0; text-wrap: balance;
}
.page-hero-sub { margin: 1.1rem 0 0; font-size: 1.05rem; color: rgba(253, 251, 247, .86); max-width: 56ch; }

.crumb { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; font-size: .78rem; margin-bottom: 1.5rem; color: rgba(253, 251, 247, .72); }
.crumb a { border-bottom: 1px solid transparent; }
.crumb a:hover { border-color: rgba(253, 251, 247, .5); }
.crumb-sep { opacity: .5; }
.crumb span[aria-current] { color: var(--cream); }

/* ── Grid helpers ───────────────────────────────────────── */
.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .g-4 { grid-template-columns: repeat(2, 1fr); } .g-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .g-4, .g-3, .g-2 { grid-template-columns: 1fr; } }

/* ── Intro / split ──────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-media { position: relative; }
.split-media .ratio { border-radius: var(--radius-lg); }

.split-title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.2vw, 2.6rem); color: var(--olive-deep); line-height: 1.2; margin-bottom: 1.2rem; }
.split-body { color: var(--ink-2); font-size: 1.02rem; }
.split-body p + p { margin-top: 1rem; }
.split.rev .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  }

.signature { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--oak); margin-top: 1.4rem; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; border-top: 1px solid var(--line); padding-top: 1.8rem; }
.stat-v { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--olive); line-height: 1; }
.stat-v span { font-size: .5em; margin-left: .15em; }
.stat-l { font-size: .82rem; color: var(--muted); margin-top: .45rem; line-height: 1.5; }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; text-align: left; gap: 1.2rem; } }

/* ── Service cards ──────────────────────────────────────── */
.svc-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .38s var(--ease), box-shadow .38s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-media { display: block; overflow: hidden; }
.svc-media img { transition: transform .8s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-body { padding: 1.6rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.svc-icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--olive-tint); color: var(--olive); margin-bottom: 1rem;
  transition: transform .4s var(--spring);
}
.svc-card:hover .svc-icon { transform: rotate(-8deg) scale(1.1); }
.svc-en { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--oak); margin: 0 0 .35rem; }
.svc-title { font-family: var(--font-display); font-size: 1.42rem; color: var(--olive-deep); margin-bottom: .6rem; }
.svc-desc { font-size: .92rem; color: var(--muted); flex: 1; margin-bottom: 1.1rem; }

/* ── Feature list ───────────────────────────────────────── */
.feature {
  padding: 1.7rem 1.6rem; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--line); height: 100%;
  transition: transform .34s var(--spring), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--sand-2); }
.bg-sand .feature { background: var(--cream); border-color: var(--sand-2); }
.feature-icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--oak-tint); color: var(--oak); margin-bottom: 1rem;
  transition: transform .4s var(--spring);
}
.feature:hover .feature-icon { transform: rotate(-8deg) scale(1.1); }
.feature-title { font-family: var(--font-display); font-size: 1.28rem; color: var(--olive-deep); margin-bottom: .5rem; }
.feature-desc { font-size: .9rem; color: var(--muted); margin: 0; }

/* ── Package / pricing ──────────────────────────────────── */
.pkg { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.pkg-media img { transition: transform .8s var(--ease); }
.pkg:hover .pkg-media img { transform: scale(1.05); }
.pkg-body { padding: 1.7rem 1.6rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.pkg-en { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--oak); margin: 0 0 .35rem; }
.pkg-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--olive-deep); margin-bottom: .7rem; }
.pkg-desc { font-size: .89rem; color: var(--muted); margin-bottom: 1.3rem; }
.pkg-table { margin-top: auto; font-size: .93rem; }
.pkg-table tr { border-top: 1px solid var(--line); }
.pkg-table tr:first-child { border-top: 0; }
.pkg-table th, .pkg-table td { padding: .72rem 0; text-align: left; font-weight: 400; vertical-align: middle; }
.pkg-detail { display: block; color: var(--ink); font-weight: 500; }
.pkg-label { display: block; font-size: .74rem; color: var(--muted); }
.pkg-table td { text-align: right; white-space: nowrap; }
.pkg-price { font-family: var(--font-display); font-size: 1.32rem; color: var(--olive); }
.pkg-baht { color: var(--olive); font-size: .82rem; margin-left: .12rem; }
.pkg-per { display: block; font-size: .72rem; color: var(--muted); }
.pkg-ask, .prod-ask { font-size: .92rem; color: var(--oak); }
.pkg-badge-cell { width: 1%; padding-left: .6rem !important; }
.pkg-badge {
  display: inline-block; font-size: .66rem; letter-spacing: .08em; padding: .22rem .55rem;
  background: var(--oak-tint); color: var(--oak-deep); border-radius: 999px; white-space: nowrap;
}

/* ── Highlight price cards ──────────────────────────────── */
.hl { position: relative; overflow: hidden; }
.hl-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.price-cards { display: grid; gap: 1rem; }
.price-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); transition: all .3s var(--ease);
}
.price-card:hover { border-color: var(--olive-soft); transform: translateX(4px); }
.price-card.is-featured { background: var(--olive); border-color: var(--olive); color: var(--cream); }
.price-card.is-featured .pc-note { color: rgba(253, 251, 247, .7); }
.price-card.is-featured .pc-value { color: var(--cream); }
.pc-name { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; }
.pc-detail { display: block; font-family: var(--font-body); font-size: .82rem; letter-spacing: .04em; opacity: .8; margin-top: .1rem; }
.pc-note { font-size: .78rem; color: var(--muted); }
.pc-value { font-family: var(--font-display); font-size: 1.75rem; color: var(--olive); white-space: nowrap; }
.pc-value span { font-family: var(--font-body); font-size: .42em; margin-left: .35em; letter-spacing: .04em; }
@media (max-width: 860px) { .hl-grid { grid-template-columns: 1fr; } }

/* ── Steps ──────────────────────────────────────────────── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); counter-reset: s; }
.step { position: relative; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.step-no { font-family: var(--font-display); font-size: 2.1rem; color: var(--sand-2); line-height: 1; display: block; margin-bottom: .7rem; }
.bg-olive .step { border-color: rgba(253, 251, 247, .22); }
.bg-olive .step-no { color: rgba(253, 251, 247, .45); }
.step-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--olive-deep); margin-bottom: .45rem; }
.bg-olive .step-title { color: var(--cream); }
.step-desc { font-size: .88rem; color: var(--muted); margin: 0; }
.bg-olive .step-desc { color: rgba(253, 251, 247, .75); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ── Check list ─────────────────────────────────────────── */
.checks { list-style: none; display: grid; gap: .7rem; }
.checks li { display: flex; align-items: flex-start; gap: .65rem; font-size: .95rem; color: var(--ink-2); }
.check-i { color: var(--olive); flex: none; margin-top: .28rem; }
.bg-olive .checks li { color: rgba(253, 251, 247, .9); }
.bg-olive .check-i { color: var(--sand-2); }
.checks-2 { grid-template-columns: repeat(2, 1fr); gap: .7rem 2rem; }
@media (max-width: 640px) { .checks-2 { grid-template-columns: 1fr; } }

/* ── Gallery ────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gal-item {
  position: relative; padding: 0; border: 0; background: none; cursor: zoom-in;
  overflow: hidden; border-radius: var(--radius); display: block;
}
.gal-item img { transition: transform .7s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .8rem .7rem;
  background: linear-gradient(to top, rgba(30, 34, 20, .78), transparent);
  color: var(--cream); font-size: .8rem; text-align: left;
}
.gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.gallery-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 900px) { .gallery-grid, .gallery-grid.cols-5, .gallery-grid.cols-6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery-grid, .gallery-grid.cols-3, .gallery-grid.cols-5, .gallery-grid.cols-6 { grid-template-columns: repeat(2, 1fr); } }

/* ── Lightbox ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(20, 22, 14, .93);
  display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem);
  animation: fadeIn .25s var(--ease);
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: var(--radius); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(253, 251, 247, .12); border: 1px solid rgba(253, 251, 247, .25);
  color: var(--cream); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  transition: background .25s var(--ease);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(253, 251, 247, .26); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: clamp(.6rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(.6rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }

/* ── Marquee strip ──────────────────────────────────────── */
.strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: .5rem; }
@media (max-width: 1100px) { .strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .strip { grid-template-columns: repeat(2, 1fr); } }

/* ── Testimonials ───────────────────────────────────────── */
.tm {
  margin: 0; padding: 2rem 1.8rem; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); height: 100%;
  display: flex; flex-direction: column;
}
.tm-quote { color: var(--sand-2); margin-bottom: .8rem; }
.tm-stars { display: flex; gap: .15rem; margin-bottom: .9rem; color: var(--sand-2); }
.tm-stars .star.on { color: var(--oak); }
.tm-text { margin: 0 0 1.4rem; font-size: .96rem; color: var(--ink-2); flex: 1; }
.tm-who { display: flex; align-items: center; gap: .8rem; }
.tm-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none; background: var(--sand); }
.tm-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tm-who strong { display: block; font-weight: 500; font-size: .95rem; color: var(--olive-deep); }
.tm-who em { font-style: normal; font-size: .8rem; color: var(--muted); }

.tm-empty {
  border: 1px dashed var(--sand-2); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem); text-align: center; color: var(--muted); background: var(--cream-2);
}
.tm-empty .icon { color: var(--sand-2); margin: 0 auto .8rem; }

/* ── CTA band ───────────────────────────────────────────── */
.cta-band { position: relative; background: var(--olive); color: var(--cream); overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-img { width: 100%; height: 100%; object-fit: cover; }
.cta-band.has-img .cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(46, 56, 28, .84); }
.cta-inner {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem); padding-block: clamp(3rem, 6vw, 4.6rem); flex-wrap: wrap;
}
.cta-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3.2vw, 2.5rem); line-height: 1.2; }
.cta-desc { margin: .8rem 0 0; color: rgba(253, 251, 247, .82); max-width: 54ch; font-size: .98rem; }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; flex: none; }
@media (max-width: 720px) { .cta-inner { flex-direction: column; align-items: flex-start; } }

/* ── Accordion / FAQ ────────────────────────────────────── */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem .2rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--olive-deep);
  transition: color .22s var(--ease);
}
.acc-q::-webkit-details-marker { display: none; }
.acc-q:hover { color: var(--oak); }
.acc-plus, .acc-minus { flex: none; color: var(--oak); transition: transform .34s var(--spring); }
.acc-q:hover .acc-plus { transform: rotate(90deg) scale(1.15); }
.acc-q:hover .acc-minus { transform: scale(1.15); }
.acc-minus { display: none; }
.acc-item[open] .acc-plus { display: none; }
.acc-item[open] .acc-minus { display: block; }
.acc-a { padding: 0 .2rem 1.5rem; color: var(--muted); font-size: .95rem; max-width: 76ch; }

/* ── Products ───────────────────────────────────────────── */
.prod { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod-media { position: relative; display: block; background: var(--sand); }
.prod-media img { transition: transform .7s var(--ease); }
.prod:hover .prod-media img { transform: scale(1.05); }
.prod-badge {
  position: absolute; top: .8rem; left: .8rem; font-size: .64rem; letter-spacing: .1em;
  background: var(--oak); color: var(--cream); padding: .3rem .7rem; border-radius: 999px;
}
.prod-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.prod-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--olive-deep); line-height: 1.25; }
.prod-title a:hover { color: var(--oak); }
.prod-th { font-size: .8rem; color: var(--muted); margin: .25rem 0 .7rem; }
.prod-desc { font-size: .88rem; color: var(--muted); flex: 1; margin-bottom: 1.1rem; }
.prod-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.prod-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--olive); line-height: 1.1; }
.prod-from { display: block; font-family: var(--font-body); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.prod-baht { font-size: .62em; }

.cat-pills { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 2.6rem; }
.cat-pill {
  display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1.1rem;
  border: 1px solid var(--line); border-radius: 999px; font-size: .87rem; color: var(--ink-2);
  background: var(--white); cursor: pointer;
  transition: transform .3s var(--spring), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.cat-pill:hover, .cat-pill.is-active { background: var(--olive); border-color: var(--olive); color: var(--cream); }
.cat-pill:hover { transform: translateY(-2px) scale(1.045); }
.cat-pill:active { transform: scale(.96); }

/* ── Product detail ─────────────────────────────────────── */
.pd { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.pd-gallery { display: grid; gap: .7rem; }
.pd-main { border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.pd-thumb { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; padding: 0; background: none; }
.pd-thumb.is-active { border-color: var(--olive); }
.pd-name { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--olive-deep); line-height: 1.15; }
.pd-th { color: var(--muted); margin: .4rem 0 1.3rem; }
.pd-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.pd-price b { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--oak); }
.pd-specs { list-style: none; margin: 1.6rem 0; }
.pd-specs li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.pd-specs span:first-child { color: var(--muted); }
.pd-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.6rem; }
@media (max-width: 900px) { .pd { grid-template-columns: 1fr; } }

/* ── Schedule ───────────────────────────────────────────── */
.sched-legend { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2.2rem; }
.legend-item { display: inline-flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--ink-2); }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.sched-grid { display: grid; grid-template-columns: repeat(7, minmax(150px, 1fr)); gap: .8rem; }
.sched-day { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.sched-dayhead { padding: .85rem 1rem; background: var(--olive-tint); border-bottom: 1px solid var(--line); }
.sched-dayhead strong { display: block; font-family: var(--font-display); font-size: 1.12rem; color: var(--olive-deep); font-weight: 500; }
.sched-dayhead span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.sched-classes { list-style: none; padding: .7rem; display: grid; gap: .5rem; }
.sched-class { padding: .6rem .75rem; border-radius: var(--radius); border-left: 3px solid var(--olive); background: var(--cream-2); }
.sched-time { display: block; font-size: .74rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.sched-name { font-size: .88rem; color: var(--ink); line-height: 1.4; }
.sched-empty { padding: 1rem .75rem; font-size: .8rem; color: var(--muted); text-align: center; }
.sched-scroll { overflow-x: auto; padding-bottom: .8rem; -webkit-overflow-scrolling: touch; }
@media (max-width: 900px) { .sched-grid { grid-template-columns: repeat(7, minmax(160px, 1fr)); } }

/* ── Articles / knowledge ───────────────────────────────── */
.art-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.art-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.art-media img { transition: transform .7s var(--ease); }
.art-card:hover .art-media img { transform: scale(1.05); }
.art-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.art-meta { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--oak); margin-bottom: .5rem; }
.art-title { font-family: var(--font-display); font-size: 1.32rem; color: var(--olive-deep); line-height: 1.28; margin-bottom: .55rem; }
.art-excerpt { font-size: .89rem; color: var(--muted); flex: 1; margin-bottom: 1rem; }

.prose { max-width: 74ch; font-size: 1.04rem; color: var(--ink-2); }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2rem); color: var(--olive-deep); margin: 2.4rem 0 .9rem; }
.prose h3 { font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.6rem); color: var(--olive-deep); margin: 2rem 0 .7rem; }
.prose h4 { font-size: 1.05rem; font-weight: 600; color: var(--olive-deep); margin: 1.6rem 0 .5rem; }
.prose p { margin: 0 0 1.15em; }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 1.4em; }
.prose li { margin-bottom: .5em; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.4em; }
.prose ul li::before { content: ''; position: absolute; left: .3em; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--oak); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--oak); border-bottom: 1px solid var(--sand-2); }
.prose a:hover { border-color: var(--oak); }

.toc { background: var(--cream-2); border-radius: var(--radius-lg); padding: 1.6rem 1.7rem; border: 1px solid var(--line); }
.toc h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--olive-deep); margin-bottom: .9rem; }
.toc ol { list-style: none; counter-reset: t; display: grid; gap: .55rem; }
.toc li { counter-increment: t; }
.toc a { display: flex; gap: .6rem; font-size: .92rem; color: var(--ink-2); }
.toc a::before { content: counter(t, decimal-leading-zero); color: var(--sand-2); font-family: var(--font-display); }
.toc a:hover { color: var(--oak); }

/* ── Guide sections ─────────────────────────────────────── */
.guide-sec { display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem; padding: clamp(1.8rem, 3vw, 2.6rem) 0; border-top: 1px solid var(--line); }
.guide-ico { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--olive-tint); color: var(--olive); }
.guide-no { font-family: var(--font-display); font-size: .95rem; color: var(--oak); letter-spacing: .1em; }
.guide-title { font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 1.9rem); color: var(--olive-deep); margin: .2rem 0 .8rem; }
@media (max-width: 620px) { .guide-sec { grid-template-columns: 1fr; gap: 1rem; } }

.tier { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem 1.7rem; display: flex; flex-direction: column; }
.tier.is-featured { border-color: var(--olive); box-shadow: var(--shadow); position: relative; }
.tier.is-featured::before {
  content: 'แนะนำ'; position: absolute; top: -.75rem; left: 1.7rem;
  background: var(--olive); color: var(--cream); font-size: .68rem; letter-spacing: .1em; padding: .25rem .8rem; border-radius: 999px;
}
.tier-name { font-family: var(--font-display); font-size: 1.55rem; color: var(--olive-deep); }
.tier-th { font-size: .8rem; color: var(--oak); letter-spacing: .06em; margin-bottom: .8rem; }
.tier-desc { font-size: .89rem; color: var(--muted); margin-bottom: 1.3rem; }
.tier-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--olive); margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.tier-price small { display: block; font-family: var(--font-body); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ── Contact ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.lead-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .84rem; color: var(--ink-2); font-weight: 500; }
.req { color: var(--oak); }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem 1rem; font: inherit; font-size: .95rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive-soft); box-shadow: 0 0 0 3px rgba(126, 145, 83, .16);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.hp { position: absolute; left: -9999px; }
.form-note { font-size: .87rem; margin: 0; min-height: 1.2em; }
.form-note.is-ok { color: var(--olive); }
.form-note.is-err { color: #A6402B; }

.channels { list-style: none; display: grid; gap: .9rem; }
.channel {
  display: flex; align-items: center; gap: .9rem; padding: 1.05rem 1.2rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: all .25s var(--ease);
}
.channel:hover { border-color: var(--olive-soft); transform: translateX(3px); }
.channel-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--olive-tint); color: var(--olive); flex: none; }
.channel-t { font-size: .76rem; color: var(--muted); }
.channel-v { font-size: .98rem; color: var(--ink); word-break: break-word; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--sand); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-fallback { display: grid; place-items: center; gap: 1rem; padding: clamp(2.5rem, 6vw, 5rem) 1.5rem; text-align: center; }

/* ── Instagram ──────────────────────────────────────────── */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .6rem; }
.ig-item { position: relative; overflow: hidden; border-radius: var(--radius); display: block; }
.ig-item img { transition: transform .6s var(--ease); }
.ig-item:hover img { transform: scale(1.08); }
.ig-item::after {
  content: ''; position: absolute; inset: 0; background: rgba(46, 56, 28, 0); transition: background .3s var(--ease);
}
.ig-item:hover::after { background: rgba(46, 56, 28, .3); }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Footer ─────────────────────────────────────────────── */
.site-foot { background: var(--olive-deep); color: rgba(253, 251, 247, .8); padding-top: clamp(3.5rem, 6vw, 5rem); margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(1.8rem, 4vw, 3rem); padding-bottom: 3rem; }
.foot-logo { width: 60px; height: 60px; object-fit: contain; margin-bottom: 1rem; }
.foot-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--cream); margin: 0 0 .7rem; }
.foot-about { font-size: .88rem; line-height: 1.75; max-width: 40ch; }
.foot-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.foot-social a {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(253, 251, 247, .25); color: var(--cream); transition: all .25s var(--ease);
}
.foot-social a:hover { background: var(--cream); color: var(--olive-deep); }
.foot-col h3 { font-family: var(--font-display); font-size: 1.12rem; color: var(--cream); margin-bottom: 1rem; font-weight: 500; }
.foot-col ul { list-style: none; display: grid; gap: .6rem; }
.foot-col a:hover { color: var(--cream); }
.foot-col li { font-size: .88rem; }
.foot-contact li { display: flex; align-items: flex-start; gap: .6rem; }
.foot-contact .icon { flex: none; margin-top: .3rem; color: var(--sand-2); }
.foot-hours-title { margin-top: 1.6rem; }
.foot-hours li { display: flex; justify-content: space-between; gap: 1rem; }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem 0; border-top: 1px solid rgba(253, 251, 247, .14); font-size: .82rem;
}
.foot-mini { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.foot-mini a:hover { color: var(--cream); }
@media (max-width: 1000px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr; } }

/* ── Floating LINE button ───────────────────────────────── */
.float-line {
  position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem); z-index: 90;
  display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.2rem;
  background: var(--oak); color: var(--cream); border-radius: 999px;
  box-shadow: 0 6px 24px rgba(43, 43, 43, .22); font-size: .9rem; font-weight: 500;
  transition: transform .34s var(--spring), background .28s var(--ease);
}
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes iconWiggle { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-10deg); } 75% { transform: rotate(10deg); } }
.float-line { animation: floatBob 3.4s ease-in-out infinite; }
.float-line:hover { animation: none; transform: translateY(-4px) scale(1.06); background: var(--oak-deep); }
.float-line:active { transform: translateY(-1px) scale(.95); }
.float-line:hover .icon { animation: iconWiggle .55s ease-in-out; }
@media (max-width: 520px) { .float-line span { display: none; } .float-line { padding: .9rem; } }

/* ── Reveal on scroll ───────────────────────────────────── */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js [data-reveal] { opacity: 1; transform: none; } }

/* ── Misc ───────────────────────────────────────────────── */
.note-box {
  display: flex; align-items: flex-start; gap: .8rem; padding: 1.1rem 1.3rem;
  background: var(--oak-tint); border-radius: var(--radius-lg); font-size: .89rem; color: var(--ink-2);
}
.note-box .icon { flex: none; color: var(--oak); margin-top: .2rem; }

.empty-hint {
  border: 1px dashed var(--sand-2); border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem; color: var(--muted); font-size: .9rem; background: var(--cream-2);
  display: flex; align-items: flex-start; gap: .7rem;
}
.empty-hint .icon { color: var(--sand-2); flex: none; margin-top: .2rem; }

.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; padding: .35rem .8rem; border-radius: 999px; background: var(--olive-tint); color: var(--olive-deep); }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ── วิดีโอ ─────────────────────────────────────────── */
.video-wrap { border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); box-shadow: var(--shadow-sm); }
.video-wrap iframe, .video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-cap { margin-top: .9rem; text-align: center; font-size: .87rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   ปรับขนาดและน้ำหนักตัวอักษรให้เข้ากับฟอนต์ Anuphan (ซานเซอริฟโมเดิร์น)
   ═══════════════════════════════════════════════════════════ */
.hero-title, .page-hero-title, .sec-title, .split-title, .cta-title,
.svc-title, .pkg-title, .feature-title, .prod-title, .art-title, .tier-name,
.step-title, .acc-q, .guide-title, .pd-name, .foot-name, .brand-name,
.toc h3, .foot-col h3, .sched-dayhead strong, .tm-who strong {
  font-weight: 500;
  letter-spacing: -.012em;
}

.hero-title { font-size: clamp(2rem, 4.9vw, 3.5rem); line-height: 1.18; letter-spacing: -.024em; }
.hero-sub { font-size: clamp(.98rem, 1.35vw, 1.08rem); max-width: 46ch; margin-bottom: 1.9rem; }

.page-hero-title { font-size: clamp(1.8rem, 4.1vw, 2.95rem); line-height: 1.2; letter-spacing: -.022em; }
.page-hero-sub { font-size: 1rem; max-width: 50ch; }

.sec-title { font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.22; letter-spacing: -.02em; }
.sec-sub { font-size: .98rem; }
.split-title { font-size: clamp(1.45rem, 2.8vw, 2.2rem); line-height: 1.26; letter-spacing: -.02em; }
.cta-title { font-size: clamp(1.45rem, 2.8vw, 2.15rem); letter-spacing: -.02em; }

.svc-title { font-size: 1.26rem; }
.pkg-title { font-size: 1.3rem; }
.feature-title { font-size: 1.14rem; }
.prod-title, .art-title { font-size: 1.16rem; line-height: 1.4; }
.tier-name { font-size: 1.3rem; }
.step-title { font-size: 1.1rem; }
.guide-title { font-size: clamp(1.2rem, 2.3vw, 1.6rem); }
.pd-name { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.022em; }
.acc-q { font-size: clamp(.98rem, 1.7vw, 1.1rem); }
.foot-name { font-size: 1.2rem; }
.brand-name { font-size: 1.16rem; letter-spacing: -.01em; }
.sched-dayhead strong { font-size: 1rem; }
.toc h3, .foot-col h3 { font-size: 1.02rem; }

/* ตัวเลขและราคา — ใช้ตัวเลขความกว้างเท่ากันเพื่อให้ตารางเรียงสวย */
.stat-v, .pkg-price, .prod-price, .pc-value, .pd-price b, .tier-price, .step-no, .toc a::before {
  font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.stat-v { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.pkg-price { font-size: 1.18rem; }
.prod-price { font-size: 1.3rem; }
.pc-value { font-size: 1.5rem; }
.pc-name { font-size: 1.1rem; font-weight: 500; letter-spacing: -.01em; }
.pd-price b { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.tier-price { font-size: 1.35rem; }
.step-no { font-size: 1.85rem; font-weight: 400; }

/* ลายเซ็นท้ายย่อหน้า — เปลี่ยนจากตัวเอียงเป็นตัวพิมพ์ใหญ่เว้นระยะ */
.signature {
  font-family: var(--font-body); font-style: normal; font-size: .82rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--oak); margin-top: 1.6rem;
}

.prose { font-size: 1.02rem; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); font-weight: 500; letter-spacing: -.02em; }
.prose h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); font-weight: 500; letter-spacing: -.015em; }
