/* ---------- tokens ---------- */
:root {
  --purple-deep:  #5B2D8A;
  --purple-dark:  #3D1B5C;
  --purple-night: #1A0B2E;
  --gold:         #D4A574;
  --gold-muted:   #B8956A;
  --gold-light:   #E8C99F;
  --cream:        #F5E6D3;
  --off-white:    #FAF7F2;
  --charcoal:     #1A1322;
  --mist-purple:  #EADFF0;

  --f-en-display: "Cormorant Garamond", "Cormorant", serif;
  --f-en-body:    "Manrope", system-ui, sans-serif;
  --f-th-display: "Bai Jamjuree", "Sarabun", sans-serif;
  --f-th-body:    "Sarabun", system-ui, sans-serif;

  --max: 1180px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-en-body);
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html[data-lang="th"] body { font-family: var(--f-th-body); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 22px; } }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { transition: none; opacity: 1; transform: none; }
}

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--f-en-body);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
}
html[data-lang="th"] .eyebrow { font-family: var(--f-th-body); letter-spacing: .18em; }
.eyebrow--gold { color: var(--gold); }
.eyebrow--center { text-align: center; display: block; }

.h1 { margin: 18px 0 14px; line-height: 1.04; letter-spacing: -0.02em; color: var(--cream); }
.h1__line { display: block; }
.h1--en { font-family: var(--f-en-display); font-style: italic; font-weight: 500; font-size: clamp(40px, 6.4vw, 72px); }
.h1--th { font-family: var(--f-th-display); font-weight: 700; font-size: clamp(44px, 6.6vw, 76px); letter-spacing: -0.01em; line-height: 1.02; }

.h1--grad {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.h2 {
  margin: 16px 0 24px;
  text-align: center;
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
html[data-lang="th"] .h2 { font-family: var(--f-th-display); font-style: normal; font-weight: 700; }
.h2--purple { color: var(--purple-deep); }
.h2--cream  { color: var(--cream); }
.h2--center { text-align: center; }
.h2__accent { color: var(--purple-deep); font-weight: 700; }
html[data-lang="en"] .h2__accent { font-style: italic; font-weight: 600; }
.h2__accent--gold { color: var(--gold); }
.h2--cream .h2__accent { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  font-family: var(--f-en-body);
  text-align: center;
}
html[data-lang="th"] .btn { font-family: var(--f-th-body); font-weight: 600; }

.btn--pill { border-radius: 999px; padding: 0 24px; height: 44px; font-size: 14px; }
.btn--lg    { height: 56px; padding: 0 36px; font-size: 16px; }
.btn--xl    { height: 64px; padding: 0 40px; font-size: 17px; min-width: 280px; }
.btn--giant { height: 72px; padding: 0 56px; font-size: 19px; min-width: 320px; border-radius: 999px; }

.btn--gold {
  color: var(--purple-night);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-muted) 100%);
  box-shadow: 0 12px 28px -10px rgba(212,165,116,.55), 0 0 0 1px rgba(212,165,116,.2) inset;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(212,165,116,.7), 0 0 0 1px rgba(212,165,116,.3) inset; }

.btn--ghost {
  color: var(--gold);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(212,165,116,.55);
}
.btn--ghost:hover { background: rgba(212,165,116,.08); transform: translateY(-2px); }

.btn--night {
  color: var(--gold-light);
  background: var(--purple-night);
  box-shadow: 0 12px 28px -10px rgba(26,11,46,.55);
}
.btn--night:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(26,11,46,.75); }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 12px 28px -10px rgba(212,165,116,.55), 0 0 0 0 rgba(212,165,116,.45); }
  50%      { box-shadow: 0 12px 28px -10px rgba(212,165,116,.55), 0 0 0 16px rgba(212,165,116,0); }
}
.btn--pulse { animation: pulse-glow 3s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .btn--pulse { animation: none; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 72px;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(26,11,46,.9);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: rgba(212,165,116,.18);
}
.nav__inner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 640px) { .nav__inner { padding: 0 18px; } }

.nav__brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212,165,116,.5), 0 0 16px rgba(212,165,116,.3);
  flex-shrink: 0;
}
.nav__avatar img { width: 100%; height: 100%; object-fit: cover; }
.nav__wordmark {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .15em;
  color: var(--gold);
}
.nav__brandTag {
  font-family: var(--f-th-display);
  font-weight: 500;
  font-size: 12px;
  color: rgba(245,230,211,.65);
  letter-spacing: .04em;
  padding-left: 10px;
  margin-left: 2px;
  border-left: 1px solid rgba(212,165,116,.25);
}
@media (max-width: 880px) { .nav__brandTag { display: none; } }

.nav__links {
  display: flex; align-items: center; gap: 26px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,230,211,.7);
  font-weight: 500;
}
html[data-lang="th"] .nav__links { letter-spacing: .04em; text-transform: none; font-size: 14px; }
.nav__links a { transition: color .2s ease; }
.nav__links a:hover { color: var(--gold); }
@media (max-width: 980px) { .nav__links { display: none; } }

.nav__right { display: flex; align-items: center; gap: 16px; }
.langtoggle { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .12em; }
.langtoggle button { color: rgba(245,230,211,.55); font-weight: 600; letter-spacing: .12em; transition: color .2s ease; }
.langtoggle button.active { color: var(--gold); }
.langtoggle button:hover { color: var(--gold-light); }
.langtoggle__sep { color: rgba(245,230,211,.3); }

.nav__cta { padding: 0 18px; height: 38px; font-size: 13px; }
@media (max-width: 720px) { .nav__cta { display: none; } }

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  transition: transform .25s ease, opacity .25s ease;
  border-radius: 2px;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 980px) { .nav__burger { display: inline-flex; } }

.nav__sheet {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(26,11,46,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,165,116,.18);
  display: flex; flex-direction: column; align-items: stretch; gap: 4px;
  padding: 18px 24px 26px;
}
.nav__sheet a { padding: 14px 4px; color: var(--cream); font-size: 16px; border-bottom: 1px solid rgba(212,165,116,.1); }
.nav__sheet a.btn { border: 0; margin-top: 12px; color: var(--purple-night); }
html[data-lang="th"] .nav__sheet { font-family: var(--f-th-body); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 80px;
  color: var(--cream);
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(212,165,116,.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(91,45,138,.45) 0%, transparent 50%),
    linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-dark) 50%, var(--purple-night) 100%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(232,201,159,.5), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(245,230,211,.4), transparent),
    radial-gradient(1.2px 1.2px at 40% 70%, rgba(212,165,116,.5), transparent),
    radial-gradient(1px 1px at 65% 85%, rgba(245,230,211,.35), transparent),
    radial-gradient(1.5px 1.5px at 90% 60%, rgba(212,165,116,.4), transparent),
    radial-gradient(1px 1px at 12% 55%, rgba(245,230,211,.35), transparent);
  opacity: .85;
}
.hero__particles { position: absolute; inset: 0; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  filter: blur(.5px);
  opacity: .4;
  animation: drift 18s linear infinite;
}
@keyframes drift {
  0%   { transform: translateY(0) translateX(0); opacity: .15; }
  10%  { opacity: .55; }
  100% { transform: translateY(-300px) translateX(20px); opacity: 0; }
}
.particle--1  { left: 8%;  bottom: 10%; animation-delay: 0s; }
.particle--2  { left: 18%; bottom: 30%; animation-delay: 2.4s; }
.particle--3  { left: 28%; bottom: 0%;  animation-delay: 5s; opacity:.3; }
.particle--4  { left: 38%; bottom: 22%; animation-delay: 7s; }
.particle--5  { left: 48%; bottom: 5%;  animation-delay: 9.2s; }
.particle--6  { left: 58%; bottom: 40%; animation-delay: 11s; opacity:.5; }
.particle--7  { left: 65%; bottom: 12%; animation-delay: 13s; }
.particle--8  { left: 72%; bottom: 24%; animation-delay: 15s; }
.particle--9  { left: 82%; bottom: 8%;  animation-delay: 16.5s; }
.particle--10 { left: 88%; bottom: 30%; animation-delay: 4s; }
.particle--11 { left: 93%; bottom: 50%; animation-delay: 8s; }
.particle--12 { left: 4%;  bottom: 50%; animation-delay: 12.5s; }
@media (prefers-reduced-motion: reduce) { .particle { animation: none; opacity: .3; } }

.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.hero__text { max-width: 560px; }
.hero__tagline {
  margin-top: 10px;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px;
  color: var(--gold);
  font-family: var(--f-th-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: .04em;
}
.hero__taglineSub {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--gold-muted);
  letter-spacing: .04em;
}
.hero__sub {
  margin: 22px 0 30px;
  max-width: 480px;
  color: rgba(245,230,211,.88);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}
html[data-lang="th"] .hero__sub { font-family: var(--f-th-body); }
.hero__ctaRow { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__trust {
  margin-top: 18px;
  color: var(--gold-muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__portrait { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 18px; }
.portrait {
  position: relative;
  width: min(480px, 46vw);
  height: min(480px, 46vw);
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(212,165,116,.4),
    0 0 80px rgba(212,165,116,.4),
    0 30px 80px rgba(0,0,0,.5);
  animation: float 6s ease-in-out infinite;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
@keyframes float {
  0%, 100% { transform: translateY(-8px); }
  50%      { transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) { .portrait { animation: none; } }
.portrait__caption {
  font-family: var(--f-en-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(245,230,211,.7);
  text-align: center;
}
html[data-lang="th"] .portrait__caption { font-family: var(--f-th-body); font-style: normal; }

@media (max-width: 900px) {
  .hero { min-height: 640px; padding-top: 110px; padding-bottom: 64px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
    text-align: left;
  }
  .hero__portrait { order: 2; }
  .portrait { width: 280px; height: 280px; }
}

/* ---------- trust band ---------- */
.trust { background: var(--cream); padding: 26px 16px; }
.trust__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 18px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 500;
}
html[data-lang="th"] .trust__inner { font-family: var(--f-th-body); }
.trust__dot { color: var(--gold); font-weight: 700; }

/* ---------- about ---------- */
.about {
  position: relative;
  background: var(--off-white);
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 720px) { .about { padding: 72px 0; } }
.about__paper {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.about__grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
}

.about__media { display: flex; flex-direction: column; align-items: center; text-align: center; }
.about__portrait {
  width: min(320px, 80vw);
  height: min(320px, 80vw);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212,165,116,.5), 0 0 60px rgba(212,165,116,.25), 0 20px 60px -10px rgba(91,45,138,.18);
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }
.about__cap {
  margin-top: 18px;
  font-family: var(--f-en-display);
  font-style: italic;
  font-size: 17px;
  color: var(--gold-muted);
  letter-spacing: .04em;
}
html[data-lang="th"] .about__cap { font-family: var(--f-th-display); font-style: normal; font-weight: 600; }
.about__capSub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(26,19,34,.55);
  letter-spacing: .04em;
}
html[data-lang="th"] .about__capSub { font-family: var(--f-th-body); }

.about__body { max-width: 580px; }
.about__h2 { text-align: left; margin-bottom: 28px; }
.about__h2 .h2__accent { color: var(--gold); font-style: italic; }
html[data-lang="th"] .about__h2 .h2__accent { font-style: normal; }

.about__copy p {
  margin: 0 0 16px;
  color: rgba(26,19,34,.85);
  font-size: 17px;
  line-height: 1.8;
  text-wrap: pretty;
}
html[data-lang="th"] .about__copy p { font-family: var(--f-th-body); }

.about__pull {
  margin: 28px 0 14px;
  font-family: var(--f-en-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: .02em;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}
html[data-lang="th"] .about__pull { font-family: var(--f-th-display); font-style: normal; font-weight: 600; }
.about__where {
  font-size: 13px;
  color: rgba(26,19,34,.55);
  letter-spacing: .02em;
}
html[data-lang="th"] .about__where { font-family: var(--f-th-body); }

/* ---------- accurate / pillars ---------- */
.accurate {
  position: relative;
  background: var(--purple-night);
  color: var(--cream);
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 720px) { .accurate { padding: 72px 0; } }
.accurate__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 25%, rgba(232,201,159,.35), transparent),
    radial-gradient(1px 1px at 78% 18%, rgba(245,230,211,.25), transparent),
    radial-gradient(1.2px 1.2px at 33% 80%, rgba(212,165,116,.32), transparent),
    radial-gradient(1px 1px at 60% 90%, rgba(245,230,211,.22), transparent),
    radial-gradient(1.4px 1.4px at 85% 65%, rgba(212,165,116,.3), transparent),
    radial-gradient(1px 1px at 6% 70%, rgba(245,230,211,.22), transparent);
  opacity: .65;
}
.accurate__sub {
  max-width: 640px;
  margin: 16px auto 56px;
  text-align: center;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245,230,211,.82);
  text-wrap: pretty;
}
html[data-lang="th"] .accurate__sub { font-family: var(--f-th-body); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  background: rgba(245,230,211,.05);
  border: 1px solid rgba(212,165,116,.3);
  border-radius: 24px;
  padding: 36px 28px 30px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 28px 60px -28px rgba(212,165,116,.4);
}
.pillar__glyph {
  font-family: var(--f-en-display);
  font-size: 60px;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212,165,116,.4);
  margin-bottom: 18px;
}
.pillar__title {
  margin: 0;
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: .01em;
}
html[data-lang="th"] .pillar__title { font-family: var(--f-th-display); font-style: normal; font-weight: 700; }
.pillar__sub {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .22em;
  color: rgba(212,165,116,.75);
  text-transform: uppercase;
  font-weight: 600;
}
html[data-lang="th"] .pillar__sub { letter-spacing: .1em; text-transform: none; font-family: var(--f-th-body); }

.pillar__row { margin-top: 18px; }
.pillar__label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,230,211,.5);
  font-weight: 600;
  margin-bottom: 4px;
}
html[data-lang="th"] .pillar__label { letter-spacing: .12em; text-transform: none; font-family: var(--f-th-body); font-size: 11px; }
.pillar__val {
  font-size: 14px;
  color: rgba(245,230,211,.92);
  line-height: 1.5;
}
html[data-lang="th"] .pillar__val { font-family: var(--f-th-body); }

.pillar__badge {
  margin-top: 24px;
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(212,165,116,.18), rgba(232,201,159,.08));
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  padding: 7px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  border: 1px solid rgba(212,165,116,.4);
}
html[data-lang="th"] .pillar__badge { font-family: var(--f-th-body); letter-spacing: .04em; text-transform: none; }

.accurate__closing {
  max-width: 760px;
  margin: 56px auto 40px;
  text-align: center;
  font-family: var(--f-en-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  color: var(--cream);
}
html[data-lang="th"] .accurate__closing { font-family: var(--f-th-body); font-style: normal; }

.accurate__strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 14px;
  color: var(--gold-muted);
  font-size: 13px;
}
html[data-lang="th"] .accurate__strip { font-family: var(--f-th-body); }
.accurate__stripDot { color: rgba(212,165,116,.4); }

/* ---------- compare / scorecard ---------- */
.compare {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(212,165,116,.12), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #F0E2CC 100%);
  padding: 130px 0 130px;
  overflow: hidden;
}
@media (max-width: 720px) { .compare { padding: 84px 0; } }
.compare__rule {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 64px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.compare__sub {
  max-width: 620px;
  margin: 14px auto 56px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(26,19,34,.7);
  text-wrap: pretty;
}
html[data-lang="th"] .compare__sub { font-family: var(--f-th-body); }

/* ---- desktop scorecard ---- */
.scorecard {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
}
@media (max-width: 980px) { .scorecard { display: none; } }

.scorecard__inner {
  position: relative;
  background: #fff;
  border: 1px solid rgba(91,45,138,.1);
  border-radius: 28px;
  padding: 36px 32px 36px;
  box-shadow:
    0 50px 90px -50px rgba(91,45,138,.35),
    0 0 0 1px rgba(212,165,116,.18) inset;
  overflow: hidden;
  z-index: 1;
}

/* DOODEE column spotlight — a vertical gold gradient slab behind only its column */
.scorecard__inner::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  /* width matches one column; positioned over the 'us' column (3rd of 4) */
  left: calc(34% + ((100% - 34%) / 4) * 2 + 4px);
  width: calc(((100% - 34%) / 4) - 8px);
  background:
    linear-gradient(180deg, rgba(212,165,116,.22) 0%, rgba(232,201,159,.08) 50%, rgba(212,165,116,.18) 100%);
  border-radius: 22px;
  z-index: 0;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(212,165,116,.55) inset,
    0 20px 60px -20px rgba(212,165,116,.4);
}

/* Crown floating over DOODEE column */
.scorecard__crown {
  position: absolute;
  top: -28px;
  left: calc(34% + ((100% - 34%) / 4) * 2 + ((100% - 34%) / 4) / 2);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
}
.scorecard__crownLine {
  width: 1px; height: 22px;
  background: linear-gradient(180deg, transparent, var(--gold));
}
.scorecard__crownLbl {
  font-size: 9.5px;
  letter-spacing: .3em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}
html[data-lang="th"] .scorecard__crownLbl { font-family: var(--f-th-body); letter-spacing: .12em; text-transform: none; font-size: 11px; }
.scorecard__crownNum {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  white-space: nowrap;
}

.sc-row {
  position: relative;
  display: grid;
  grid-template-columns: 34% repeat(4, 1fr);
  align-items: stretch;
}
.sc-row:not(.sc-row--head) {
  border-top: 1px dashed rgba(91,45,138,.12);
}
.sc-row:not(.sc-row--head):hover {
  background: rgba(212,165,116,.05);
}

.sc-cell {
  position: relative;
  padding: 18px 14px;
  z-index: 1;
  display: flex;
  align-items: center;
}
.sc-cell--lbl { padding-left: 4px; padding-right: 22px; }
.sc-cell--mark {
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  text-align: center;
}

/* HEAD row */
.sc-row--head { border: 0; }
.sc-head {
  flex-direction: column;
  align-items: center;
  padding: 28px 12px 22px;
  text-align: center;
  gap: 4px;
}
.sc-head__name {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: var(--purple-deep);
  letter-spacing: .01em;
  line-height: 1.1;
}
html[data-lang="th"] .sc-head__name { font-family: var(--f-th-display); font-style: normal; font-weight: 700; }
.sc-head__tag {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(26,19,34,.5);
  font-weight: 600;
  margin-top: 2px;
}
html[data-lang="th"] .sc-head__tag { font-family: var(--f-th-body); letter-spacing: .04em; text-transform: none; font-size: 12px; }
.sc-head__score {
  margin-top: 10px;
  display: inline-flex;
  align-items: center; justify-content: center;
  height: 26px; padding: 0 12px;
  border-radius: 999px;
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  color: rgba(26,19,34,.55);
  background: rgba(91,45,138,.06);
  border: 1px solid rgba(91,45,138,.12);
  letter-spacing: .04em;
}
.sc-head--us .sc-head__name {
  font-size: 26px;
  background: linear-gradient(135deg, var(--purple-deep), var(--gold-muted));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.sc-head--us .sc-head__tag {
  color: var(--gold-muted);
  font-weight: 700;
}
.sc-head--us .sc-head__score {
  color: var(--purple-night);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  box-shadow: 0 6px 18px -6px rgba(212,165,116,.6);
  font-weight: 700;
}

/* Feature label column */
.sc-feat {
  display: flex; align-items: flex-start; gap: 12px;
}
.sc-feat__num {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  padding-top: 2px;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.sc-feat__name {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--purple-deep);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
html[data-lang="th"] .sc-feat__name { font-family: var(--f-th-display); font-style: normal; font-weight: 700; font-size: 16px; }
.sc-feat__note {
  margin-top: 4px;
  font-size: 11.5px;
  color: rgba(26,19,34,.5);
  letter-spacing: .04em;
  line-height: 1.4;
}
html[data-lang="th"] .sc-feat__note { font-family: var(--f-th-body); font-size: 12px; }

.sc-val {
  font-size: 12px;
  color: rgba(26,19,34,.6);
  letter-spacing: .02em;
  font-weight: 500;
  line-height: 1.3;
}
html[data-lang="th"] .sc-val { font-family: var(--f-th-body); font-size: 12.5px; }

.sc-cell--us .sc-val {
  color: var(--purple-night);
  font-weight: 700;
  font-size: 13px;
}

/* Marks */
.mk { display: inline-block; }
.mk--yes  { color: #1B8A4F; }
.mk--part { color: #B8956A; }
.mk--no   { color: #C26566; opacity: .55; }

.sc-cell--us .mk--yes  { color: var(--gold-muted); transform: scale(1.15); }
.sc-cell--us .mk--yes  { color: var(--purple-night); }
.sc-cell--us .mk--part { color: var(--gold-muted); }
.sc-cell--us .mk--no   { color: rgba(26,11,46,.4); }

/* Legend */
.sc-leg {
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  align-items: center;
  font-size: 11px;
  color: rgba(26,19,34,.55);
  letter-spacing: .04em;
}
html[data-lang="th"] .sc-leg { font-family: var(--f-th-body); font-size: 12px; }
.sc-leg__item {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(91,45,138,.04);
  border: 1px solid rgba(91,45,138,.08);
}
.sc-leg__item .mk { width: 14px; height: 14px; }

/* ---- mobile cards ---- */
.sc-mobile { display: none; }
@media (max-width: 980px) {
  .sc-mobile { display: grid; gap: 18px; }
}
.scm__card {
  background: #fff;
  border: 1px solid rgba(91,45,138,.1);
  border-radius: 20px;
  padding: 22px 22px 14px;
  box-shadow: 0 20px 40px -24px rgba(91,45,138,.22);
}
.scm__card--us {
  background:
    linear-gradient(180deg, rgba(212,165,116,.18), #fff 70%);
  border: 1px solid var(--gold);
  box-shadow: 0 26px 50px -20px rgba(212,165,116,.55);
  position: relative;
}
.scm__card--us::before {
  content: "WINNER";
  position: absolute;
  top: -12px; left: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-night);
  font-size: 10px;
  letter-spacing: .25em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.scm__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(212,165,116,.25);
}
.scm__name {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--purple-deep);
  line-height: 1;
}
html[data-lang="th"] .scm__name { font-family: var(--f-th-display); font-style: normal; font-weight: 700; }
.scm__card--us .scm__name { color: var(--gold-muted); }
.scm__tag {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(26,19,34,.5);
}
html[data-lang="th"] .scm__tag { font-family: var(--f-th-body); letter-spacing: .04em; text-transform: none; font-size: 12px; }
.scm__score {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: rgba(91,45,138,.7);
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(91,45,138,.06);
}
.scm__card--us .scm__score {
  color: var(--purple-night);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.scm__list { list-style: none; padding: 0; margin: 0; }
.scm__list li {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(91,45,138,.1);
}
.scm__list li:last-child { border-bottom: 0; }
.scm__feat {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--purple-deep);
  flex: 1;
}
html[data-lang="th"] .scm__feat { font-family: var(--f-th-display); font-style: normal; font-weight: 600; font-size: 14px; }
.scm__cell {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(26,19,34,.7);
  flex-shrink: 0;
  text-align: right;
}
html[data-lang="th"] .scm__cell { font-family: var(--f-th-body); }
.scm__card--us .scm__cell { color: var(--purple-night); font-weight: 600; }
.scm__val { white-space: nowrap; }

.compare__punch {
  margin: 64px auto 0;
  max-width: 820px;
  text-align: center;
  font-family: var(--f-en-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.55;
  color: var(--gold-muted);
  position: relative;
  padding: 0 24px;
}
html[data-lang="th"] .compare__punch { font-family: var(--f-th-body); font-style: normal; font-weight: 500; }
.compare__punch::before,
.compare__punch::after {
  content: "";
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: .6;
}
.compare__punch::before { margin-bottom: 24px; }
.compare__punch::after  { margin-top: 24px; }

/* ---------- pricing ---------- */
.pricing {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(160deg, var(--purple-deep), var(--purple-night));
  color: var(--cream);
  overflow: hidden;
}
@media (max-width: 720px) { .pricing { padding: 72px 0; } }
.pricing__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 90% 0%, rgba(212,165,116,.18), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(91,45,138,.45), transparent 50%);
}
.pricing__sub {
  max-width: 540px;
  margin: 12px auto 56px;
  text-align: center;
  font-size: 15px;
  color: rgba(245,230,211,.7);
  letter-spacing: .02em;
}
html[data-lang="th"] .pricing__sub { font-family: var(--f-th-body); }

.tier-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 980px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tier-grid { grid-template-columns: 1fr; } }

.tier {
  position: relative;
  background: rgba(245,230,211,.05);
  border: 1px solid rgba(212,165,116,.25);
  border-radius: 20px;
  padding: 34px 26px 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
}
.tier--popular {
  background: linear-gradient(160deg, var(--gold), var(--gold-light));
  color: var(--purple-night);
  border-color: transparent;
  box-shadow: 0 28px 56px -20px rgba(212,165,116,.45), 0 0 0 1px rgba(212,165,116,.3);
  transform: translateY(-10px);
  z-index: 2;
}
@media (min-width: 980px) {
  .tier--popular { transform: translateY(-12px) scale(1.04); }
}
.tier__badge {
  position: absolute; top: -12px; right: 18px;
  background: var(--purple-night);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
}
html[data-lang="th"] .tier__badge { letter-spacing: .08em; font-family: var(--f-th-body); }
.tier__head { display: flex; align-items: baseline; gap: 10px; }
.tier__name {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: .08em;
}
.tier--popular .tier__name { color: var(--purple-night); }
.tier__sub {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,230,211,.65);
}
.tier--popular .tier__sub { color: rgba(26,11,46,.7); }
html[data-lang="th"] .tier__sub { font-family: var(--f-th-body); letter-spacing: .04em; text-transform: none; }

.tier__price { margin: 18px 0 14px; display: flex; align-items: baseline; gap: 8px; }
.tier__priceNum {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.tier--popular .tier__priceNum { color: var(--purple-night); }
.tier__per { font-size: 13px; color: rgba(245,230,211,.7); }
.tier--popular .tier__per { color: rgba(26,11,46,.7); }
html[data-lang="th"] .tier__per { font-family: var(--f-th-body); }

.tier__div {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,165,116,.5), transparent);
  margin: 6px 0 22px;
}
.tier--popular .tier__div { background: linear-gradient(90deg, transparent, rgba(26,11,46,.35), transparent); }

.tier__feats { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; flex: 1; }
.tier__feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(245,230,211,.92);
}
html[data-lang="th"] .tier__feats li { font-family: var(--f-th-body); }
.tier--popular .tier__feats li { color: rgba(26,11,46,.88); }
.tier__check { color: var(--gold); font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.tier--popular .tier__check { color: var(--purple-night); }

.tier__cta { width: 100%; height: 48px; }

/* ---------- premium services grid ---------- */
.services {
  position: relative;
  background: var(--off-white);
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 720px) { .services { padding: 72px 0; } }
.services__leaf {
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212,165,116,.16), transparent 65%);
  pointer-events: none;
}
.services__leaf--tl { top: -60px; left: -60px; }
.services__leaf--br { bottom: -60px; right: -60px; }

.services__sub {
  max-width: 620px;
  margin: 12px auto 56px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26,19,34,.7);
  text-wrap: pretty;
}
html[data-lang="th"] .services__sub { font-family: var(--f-th-body); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 1240px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1040px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: #fff;
  border: 1px solid rgba(212,165,116,.3);
  border-radius: 20px;
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(91,45,138,.18);
  border-color: var(--gold);
}
.svc-card__hero {
  position: relative;
  width: 100%;
  aspect-ratio: 12 / 7;
  overflow: hidden;
  border-bottom: 1px solid rgba(212,165,116,.25);
  transition: transform .8s ease;
}
.svc-card:hover .svc-card__hero { transform: scale(1.03); }
.svc-scene { width: 100%; height: 100%; display: block; }
.svc-scene__svg { width: 100%; height: 100%; display: block; }
.svc-card__body { padding: 22px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-card__title {
  margin: 0 0 4px;
  color: var(--purple-deep);
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
}
html[data-lang="th"] .svc-card__title { font-family: var(--f-th-display); font-style: normal; font-weight: 700; font-size: 19px; }
.svc-card__en {
  font-family: var(--f-en-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-muted);
  margin-bottom: 12px;
  letter-spacing: .04em;
}
html[data-lang="en"] .svc-card__en { font-family: var(--f-th-display); font-style: normal; font-weight: 500; }
.svc-card__desc {
  margin: 0 0 16px;
  color: rgba(26,19,34,.72);
  font-size: 13px;
  line-height: 1.55;
  text-wrap: pretty;
  flex: 1;
}
html[data-lang="th"] .svc-card__desc { font-family: var(--f-th-body); }
.svc-card__price {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--purple-deep);
  line-height: 1;
}
.svc-card__time {
  margin-top: 4px;
  font-size: 11px;
  color: var(--gold-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
html[data-lang="th"] .svc-card__time { font-family: var(--f-th-body); text-transform: none; letter-spacing: .03em; font-size: 12px; }
.svc-card__cta { width: 100%; height: 44px; }

.services__strip {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 14px;
  color: var(--gold-muted);
  font-size: 13px;
  font-weight: 500;
}
html[data-lang="th"] .services__strip { font-family: var(--f-th-body); }
.services__stripDot { color: rgba(212,165,116,.4); }

/* ---------- how it works ---------- */
.how { background: var(--cream); padding: 96px 0 100px; }
@media (max-width: 720px) { .how { padding: 64px 0; } }

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 40px auto 56px;
  max-width: 980px;
  position: relative;
}
@media (max-width: 820px) { .how__steps { grid-template-columns: 1fr; } }

.step { position: relative; text-align: center; padding: 0 12px; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-night);
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px -10px rgba(212,165,116,.6);
}
.step__title {
  margin: 0 0 8px;
  color: var(--purple-deep);
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
html[data-lang="th"] .step__title { font-family: var(--f-th-display); font-style: normal; font-weight: 700; }
.step__desc {
  margin: 0 auto;
  max-width: 280px;
  color: rgba(26,19,34,.7);
  font-size: 14px;
  line-height: 1.55;
  text-wrap: pretty;
}
html[data-lang="th"] .step__desc { font-family: var(--f-th-body); }
.step__arrow {
  display: none;
  position: absolute;
  right: -22px; top: 24px;
  color: var(--gold);
  font-size: 22px;
  opacity: .55;
}
@media (min-width: 821px) { .step__arrow { display: block; } }

.how__cta { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.how__ctaSub { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-muted); }
html[data-lang="th"] .how__ctaSub { font-family: var(--f-th-body); letter-spacing: .04em; text-transform: none; font-size: 13px; }

/* ---------- testimonials ---------- */
.tmn {
  position: relative;
  background: var(--purple-night);
  color: var(--cream);
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 720px) { .tmn { padding: 72px 0; } }
.tmn__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(212,165,116,.16), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(91,45,138,.45), transparent 50%);
}

.tmn__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 880px) { .tmn__grid { grid-template-columns: 1fr; } }

.tmn__card {
  position: relative;
  background: rgba(245,230,211,.06);
  border: 1px solid rgba(212,165,116,.2);
  border-radius: 20px;
  padding: 36px 28px 28px;
  margin: 0;
  display: flex; flex-direction: column; gap: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.tmn__quote {
  position: absolute; top: 10px; left: 22px;
  font-family: var(--f-en-display);
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: .35;
}
.tmn__text {
  margin: 8px 0 0;
  font-family: var(--f-en-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream);
  text-wrap: pretty;
}
html[data-lang="th"] .tmn__text { font-family: var(--f-th-body); font-style: normal; }
.tmn__stars { color: var(--gold); display: inline-flex; gap: 2px; }
.stars { display: inline-flex; gap: 2px; }
.tmn__attr {
  font-size: 13px;
  color: var(--gold-muted);
  letter-spacing: .04em;
}
html[data-lang="th"] .tmn__attr { font-family: var(--f-th-body); }

.tmn__strip {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .04em;
}
html[data-lang="th"] .tmn__strip { font-family: var(--f-th-body); }

/* ---------- FAQ ---------- */
.faq { background: var(--off-white); padding: 120px 0; }
@media (max-width: 720px) { .faq { padding: 72px 0; } }

.faq__list {
  max-width: 820px;
  margin: 48px auto 0;
}
.faq__row {
  border-bottom: 1px solid rgba(212,165,116,.18);
}
.faq__row:first-child { border-top: 1px solid rgba(212,165,116,.18); }
.faq__q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  font-family: var(--f-en-body);
  transition: color .2s ease;
}
html[data-lang="th"] .faq__q { font-family: var(--f-th-body); font-weight: 600; }
.faq__q:hover { color: var(--purple-deep); }
.faq__chev {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s ease;
  display: inline-flex;
}
.faq__row--open .faq__chev { transform: rotate(180deg); }
.faq__row--open .faq__q { color: var(--purple-deep); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__aInner {
  padding: 0 4px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26,19,34,.8);
  max-width: 760px;
  text-wrap: pretty;
}
html[data-lang="th"] .faq__aInner { font-family: var(--f-th-body); }

.faq__foot {
  margin: 48px auto 0;
  max-width: 820px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px;
}
.faq__footText {
  font-family: var(--f-en-display);
  font-style: italic;
  color: var(--gold-muted);
  font-size: 16px;
}
html[data-lang="th"] .faq__footText { font-family: var(--f-th-body); font-style: normal; }
.faq__footCta { height: 40px; padding: 0 22px; font-size: 13px; }

/* ---------- finale ---------- */
.finale {
  position: relative;
  padding: 120px 32px;
  color: var(--cream);
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(212,165,116,.16), transparent 60%),
    linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-dark) 50%, var(--purple-night) 100%);
}
@media (max-width: 720px) { .finale { padding: 80px 22px; } }
.finale__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 25%, rgba(232,201,159,.5), transparent),
    radial-gradient(1px 1px at 78% 30%, rgba(245,230,211,.35), transparent),
    radial-gradient(1.2px 1.2px at 40% 75%, rgba(212,165,116,.5), transparent),
    radial-gradient(1px 1px at 86% 78%, rgba(245,230,211,.35), transparent);
  opacity: .7;
}

.finale__inner {
  position: relative;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.finale__avatar {
  width: 120px; height: 120px; border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212,165,116,.5), 0 0 60px rgba(212,165,116,.4);
  margin-bottom: 8px;
}
.finale__avatar img { width: 100%; height: 100%; object-fit: cover; }

.finale__h2 {
  margin: 8px 0 0;
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5.6vw, 56px);
  line-height: 1.08;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
html[data-lang="th"] .finale__h2 { font-family: var(--f-th-display); font-style: normal; font-weight: 700; }
.finale__accent { font-weight: 700; }
.finale__sub {
  max-width: 520px;
  margin: 4px 0 16px;
  color: rgba(245,230,211,.85);
  font-size: 18px;
  line-height: 1.6;
  text-wrap: pretty;
}
html[data-lang="th"] .finale__sub { font-family: var(--f-th-body); }
.finale__ctaSub {
  margin-top: 12px;
  font-family: var(--f-en-display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--gold-muted);
}
html[data-lang="th"] .finale__ctaSub { font-family: var(--f-th-body); font-style: normal; font-size: 13px; }

/* ---------- footer ---------- */
.foot {
  background: var(--charcoal);
  color: var(--cream);
  padding: 60px 24px 32px;
}
.foot__inner {
  max-width: 720px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.foot__mark {
  font-family: var(--f-en-display);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: .12em;
}
.foot__tag1 {
  font-family: var(--f-th-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: .04em;
}
.foot__tag2 {
  font-family: var(--f-en-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-muted);
  letter-spacing: .14em;
}
.foot__rule { width: 60px; height: 1px; background: rgba(212,165,116,.45); margin: 12px 0 8px; }
.foot__disclaimer {
  max-width: 620px;
  margin: 2px auto 14px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(245,230,211,.65);
  letter-spacing: .01em;
  padding: 12px 18px;
  border: 1px solid rgba(212,165,116,.18);
  border-radius: 10px;
  background: rgba(212,165,116,.04);
  text-wrap: pretty;
}
html[data-lang="th"] .foot__disclaimer { font-family: var(--f-th-body); }
.foot__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--gold-muted);
  text-transform: uppercase;
}
.foot__links a { transition: color .2s ease; }
.foot__links a:hover { color: var(--gold); }
.foot__sep { color: rgba(212,165,116,.4); }
.foot__copy {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: .08em;
  color: rgba(245,230,211,.45);
}
html[data-lang="th"] .foot__copy { font-family: var(--f-th-body); }
