/* =============================================================================
 * Belle Ongles — Nail Atelier
 * Design world: warm-ivory editorial · quiet luxury · generous whitespace
 * ========================================================================== */

/* ----- Tokens ----------------------------------------------------------- */
:root {
  /* palette */
  --ivory:   #FAF7F2;
  --beige:   #EDE3D8;
  --nude:    #D7B6AD;
  --rose:    #B9877D;
  --rose-deep:#A06E64;
  --brown:   #453833;
  --gold:    #C7A56A;
  --white:   #FFFFFF;
  --line-green:#06C755;

  /* semantic */
  --bg:        var(--ivory);
  --surface:   var(--white);
  --ink:       #3B2F2A;              /* body text on light */
  --ink-soft:  #75655d;              /* secondary — warm, not gray */
  --ink-faint: #9c8a80;
  --hair:      rgba(69,56,51,.14);   /* hairline */
  --hair-gold: rgba(199,165,106,.55);
  --accent:    var(--rose);
  --accent-ink:var(--rose-deep);

  /* type */
  --serif: "Cormorant Garamond", "Noto Serif Thai", Georgia, "Songti SC", "Hiragino Mincho ProN", "Yu Mincho", "Nanum Myeongjo", serif;
  --sans:  "DM Sans", "Noto Sans Thai", system-ui, -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans", "Yu Gothic", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;

  /* elevation — warm, offset + blur */
  --sh-sm: 0 1px 2px rgba(69,56,51,.06), 0 2px 8px rgba(69,56,51,.05);
  --sh-md: 0 6px 18px rgba(69,56,51,.08), 0 2px 6px rgba(69,56,51,.05);
  --sh-lg: 0 20px 48px rgba(69,56,51,.13), 0 6px 16px rgba(69,56,51,.07);

  /* shape */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* rhythm */
  --pad: clamp(1.25rem, 5vw, 2rem);
  --maxw: 1200px;
  --sect-y: clamp(4rem, 9vw, 8rem);

  --ease: cubic-bezier(.16,.84,.28,1);
  --ease-out: cubic-bezier(.22,1,.36,1);
}

/* Thai gets a touch more weight/leading for the same optical presence */
html[lang="th"] { --serif: "Noto Sans Thai", "Cormorant Garamond", serif; }

/* CJK: use system serif/sans faces and a heavier optical weight for headings */
html[lang="zh"] { --serif: "Songti SC", "Noto Serif SC", "Source Han Serif SC", serif; }
html[lang="ja"] { --serif: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif; }
html[lang="ko"] { --serif: "Nanum Myeongjo", "Noto Serif KR", serif; }
html[lang="zh"] .display, html[lang="ja"] .display, html[lang="ko"] .display {
  font-weight: 600; letter-spacing: 0; line-height: 1.3;
}
html[lang="zh"] .hero h1 .accent, html[lang="ja"] .hero h1 .accent, html[lang="ko"] .hero h1 .accent { font-style: normal; }
/* Non-Latin scripts: drop the wide uppercase treatment on labels */
html[lang="zh"] .eyebrow, html[lang="ja"] .eyebrow, html[lang="ko"] .eyebrow,
html[lang="zh"] .footer__col h4, html[lang="ja"] .footer__col h4, html[lang="ko"] .footer__col h4,
html[lang="zh"] .contact__row .k, html[lang="ja"] .contact__row .k, html[lang="ko"] .contact__row .k {
  text-transform: none; letter-spacing: .04em;
}

/* ----- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Full-page orange soft glow — a fixed radial wash behind all content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle at center, #FF7112, transparent);
  opacity: 0.3;
  mix-blend-mode: multiply;
  pointer-events: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--nude); color: var(--brown); }

/* ----- Typography ------------------------------------------------------- */
.display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--brown);
}
html[lang="th"] .display { font-weight: 700; line-height: 1.22; letter-spacing: -0.01em; }

h1.display { font-size: clamp(2.6rem, 7vw, 5rem); }
h2.display { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3.display { font-size: clamp(1.4rem, 2.6vw, 2rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex; align-items: center; gap: .6rem;
}
html[lang="th"] .eyebrow { letter-spacing: .1em; text-transform: none; font-size: .8rem; }
.eyebrow::before { content: ""; width: 1.6rem; height: 1px; background: var(--hair-gold); }

.lede { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 60ch; }

/* ----- Layout ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sect-y); position: relative; }
.section--tint { background: transparent; }
.section--paper { background: transparent; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: .9rem; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow::before { display: none; }

/* hairline divider */
.rule { height: 1px; background: var(--hair); border: 0; }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  --_bg: var(--rose); --_fg: #fff; --_bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: var(--r-pill);
  background: var(--_bg); color: var(--_fg); border: 1px solid var(--_bd);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn--ghost { --_bg: transparent; --_fg: var(--brown); --_bd: var(--hair); }
.btn--ghost:hover { --_bd: var(--rose); background: rgba(215,182,173,.12); }
.btn--dark  { --_bg: var(--brown); --_fg: var(--ivory); }
.btn--gold  { --_bg: var(--gold); --_fg: #3d2f18; }
.btn--line  { --_bg: var(--line-green); --_fg: #fff; }
.btn--sm { padding: .6rem 1.05rem; font-size: .85rem; }
.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9rem; color: var(--accent-ink);
  transition: gap .3s var(--ease-out);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform .3s var(--ease-out); }
.link-arrow:hover { gap: .65rem; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ----- Header / Nav ----------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  box-shadow: var(--sh-sm);
  border-bottom-color: var(--hair);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 1rem; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--brown); letter-spacing: .01em; }
html[lang="th"] .brand__name { font-weight: 700; }
.brand__tag { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); margin-top: .28rem; }

.nav__links { display: none; align-items: center; gap: clamp(1rem,2vw,1.7rem); }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--ink); position: relative; padding-block: .3rem; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--accent); transition: right .35s var(--ease-out);
}
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }

.nav__actions { display: flex; align-items: center; gap: .6rem; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .45rem .7rem; border: 1px solid var(--hair); border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 600; color: var(--brown);
  transition: border-color .3s, background .3s;
}
.lang-toggle:hover { border-color: var(--rose); background: rgba(215,182,173,.1); }
.lang-toggle svg { width: .95em; height: .95em; color: var(--gold); }
.lang { position: relative; }
.lang-caret svg { width: .78em; height: .78em; color: var(--ink-soft); transition: transform .3s var(--ease-out); }
.lang.open .lang-caret svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + .5rem); right: 0; min-width: 152px; margin: 0;
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: .35rem; z-index: 80; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-opt {
  padding: .55rem .8rem; border-radius: var(--r-sm); font-size: .9rem; color: var(--ink);
  cursor: pointer; transition: background .2s, color .2s; white-space: nowrap;
}
.lang-opt:hover, .lang-opt:focus-visible { background: rgba(215,182,173,.16); color: var(--brown); outline: none; }
.lang-opt.is-active { color: var(--rose); font-weight: 600; }

.nav__book { display: none; }
.hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; align-items: center; border-radius: var(--r-pill);
}
.hamburger span { width: 22px; height: 1.8px; background: var(--brown); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: var(--ivory);
  transform: translateY(-100%); transition: transform .5s var(--ease-out);
  display: flex; flex-direction: column; padding: var(--pad);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; height: 74px; }
.mobile-menu__close { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--hair); border-radius: var(--r-pill); }
.mobile-menu__close svg { width: 1.2rem; height: 1.2rem; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .3rem; margin-top: 2rem; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--brown);
  padding-block: .55rem; border-bottom: 1px solid var(--hair);
  opacity: 0; transform: translateY(12px);
}
html[lang="th"] .mobile-menu nav a { font-size: 1.6rem; font-weight: 700; }
.mobile-menu.open nav a { animation: menuIn .5s var(--ease-out) forwards; }
.mobile-menu.open nav a:nth-child(1){animation-delay:.06s}
.mobile-menu.open nav a:nth-child(2){animation-delay:.10s}
.mobile-menu.open nav a:nth-child(3){animation-delay:.14s}
.mobile-menu.open nav a:nth-child(4){animation-delay:.18s}
.mobile-menu.open nav a:nth-child(5){animation-delay:.22s}
.mobile-menu.open nav a:nth-child(6){animation-delay:.26s}
.mobile-menu.open nav a:nth-child(7){animation-delay:.30s}
@keyframes menuIn { to { opacity: 1; transform: none; } }
.mobile-menu__cta { margin-top: auto; display: grid; gap: .7rem; padding-top: 1.5rem; }

/* ----- Hero ------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: transparent;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,3.5rem);
  align-items: center; padding-block: clamp(2.5rem,6vw,4.5rem) clamp(3rem,7vw,5rem);
}
.hero__copy { max-width: 40ch; }
.hero__eyebrow { margin-bottom: 1.3rem; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .accent { color: var(--rose); font-style: italic; }
.hero__sub { margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 2.4rem;
  padding-top: 1.6rem; border-top: 1px solid var(--hair);
}
.hero__badges li { display: flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--ink-soft); font-weight: 500; }
.hero__badges svg { width: 1rem; height: 1rem; color: var(--gold); flex: none; }

.hero__art { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--sh-lg); background: var(--beige);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__chip {
  position: absolute; background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  border-radius: var(--r-md); box-shadow: var(--sh-md); padding: .7rem .95rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero__chip--tl { top: 1rem; left: -0.6rem; }
.hero__chip--br { bottom: 1.2rem; right: -0.6rem; }
.hero__chip .n { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--rose); line-height: 1; }
.hero__chip .t { font-size: .68rem; color: var(--ink-soft); line-height: 1.2; }
.hero__chip svg { width: 1.5rem; height: 1.5rem; color: var(--gold); }

.scroll-cue { display: none; }

/* ----- About ------------------------------------------------------------ */
.about__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.about__media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--sh-lg); background: var(--beige); }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__body p + p { margin-top: 1rem; }
.about__body .lede { margin-bottom: 0; }
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem 1rem; margin-top: 2.4rem; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem,4vw,2.7rem); font-weight: 600; color: var(--rose); line-height: 1; letter-spacing: -0.02em; }
.stat__label { font-size: .82rem; color: var(--ink-soft); margin-top: .45rem; }
.stat { padding-left: 1rem; border-left: 1px solid var(--hair-gold); }

/* ----- Services --------------------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.svc {
  position: relative; background: var(--surface); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: box-shadow .4s var(--ease-out), transform .4s var(--ease-out);
}
.svc:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.svc__img { aspect-ratio: 3/2; overflow: hidden; background: var(--beige); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.svc:hover .svc__img img { transform: scale(1.05); }
.svc__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.svc__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--brown); }
html[lang="th"] .svc__name { font-weight: 700; font-size: 1.16rem; }
.svc__desc { font-size: .9rem; color: var(--ink-soft); margin-top: .4rem; flex: 1; }
.svc__foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: 1.1rem; }
.svc__price { font-size: .82rem; color: var(--ink-soft); }
.svc__price b { font-family: var(--serif); font-size: 1.3rem; color: var(--rose); font-weight: 600; }
.svc__actions { display: flex; gap: .5rem; }
.svc-note { margin-top: 1.6rem; font-size: .82rem; color: var(--ink-faint); max-width: 70ch; display: flex; gap: .5rem; }
.svc-note svg { width: 1rem; height: 1rem; flex: none; margin-top: .18rem; color: var(--gold); }

/* ----- Filter chips ----------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.chip {
  padding: .5rem 1rem; border-radius: var(--r-pill); border: 1px solid var(--hair);
  font-size: .85rem; font-weight: 500; color: var(--ink-soft); background: transparent;
  transition: all .3s var(--ease-out);
}
.chip:hover { border-color: var(--rose); color: var(--brown); }
.chip.is-active { background: var(--brown); color: var(--ivory); border-color: var(--brown); }

/* ----- Gallery (masonry) ------------------------------------------------ */
.masonry { columns: 2; column-gap: 1rem; }
.tile {
  break-inside: avoid; margin-bottom: 1rem; border-radius: var(--r-md); overflow: hidden;
  position: relative; cursor: pointer; background: var(--beige); box-shadow: var(--sh-sm);
}
.tile img { width: 100%; height: auto; transition: transform .9s var(--ease-out); }
.tile:hover img { transform: scale(1.06); }
.tile__cap {
  position: absolute; inset: auto 0 0 0; padding: 1.3rem .9rem .8rem;
  background: linear-gradient(transparent, rgba(59,47,42,.72));
  color: #fff; font-size: .8rem; font-weight: 500;
  opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s;
}
.tile:hover .tile__cap, .tile:focus-within .tile__cap { opacity: 1; transform: none; }
.gallery__foot { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }
.gallery__empty { text-align: center; color: var(--ink-faint); padding: 3rem 0; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(43,34,30,.9); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 1rem; }
.lightbox.open { display: flex; }
.lightbox__img { max-width: min(92vw, 720px); max-height: 82vh; border-radius: var(--r-md); box-shadow: var(--sh-lg); background: var(--beige); }
.lightbox__cap { position: absolute; bottom: 1.3rem; left: 0; right: 0; text-align: center; color: #fff; font-size: .9rem; padding-inline: 1rem; }
.lightbox__cap small { display: block; color: var(--nude); margin-top: .2rem; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.lb-btn { position: absolute; width: 48px; height: 48px; border-radius: var(--r-pill); background: rgba(255,255,255,.14); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .3s; }
.lb-btn:hover { background: rgba(255,255,255,.28); }
.lb-btn svg { width: 1.4rem; height: 1.4rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb-close { top: 1rem; right: 1rem; }

/* ----- Collections ------------------------------------------------------ */
.coll-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.coll { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--sh-md); color: #fff; display: flex; align-items: flex-end; }
.coll img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.coll::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(43,34,30,.78)); }
.coll:hover img { transform: scale(1.06); }
.coll__body { position: relative; padding: 1.6rem 1.5rem; }
.coll__body h3 { color: #fff; margin-bottom: .35rem; }
.coll__body p { font-size: .88rem; color: rgba(255,255,255,.82); margin-bottom: .9rem; max-width: 30ch; }
.coll__body .link-arrow { color: #fff; }

/* ----- Promotions ------------------------------------------------------- */
.promo-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.promo { position: relative; background: var(--surface); border-radius: var(--r-md); padding: 1.6rem 1.5rem; box-shadow: var(--sh-sm); border: 1px solid var(--hair); display: flex; flex-direction: column; }
.promo__badge { align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .32rem .7rem; border-radius: var(--r-pill); margin-bottom: 1rem; }
.badge-bestseller { background: var(--rose); color: #fff; }
.badge-limited { background: var(--brown); color: var(--ivory); }
.badge-new { background: var(--gold); color: #3d2f18; }
.badge-monthly { background: var(--nude); color: var(--brown); }
.promo__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--brown); }
html[lang="th"] .promo__name { font-weight: 700; font-size: 1.3rem; }
.promo__detail { font-size: .92rem; color: var(--ink-soft); margin-top: .5rem; }
.promo__price { display: flex; align-items: baseline; gap: .6rem; margin-top: 1rem; }
.promo__now { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--rose); }
.promo__was { font-size: .95rem; color: var(--ink-faint); text-decoration: line-through; }
.promo__disc { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--rose); }
.promo__meta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--hair); font-size: .8rem; color: var(--ink-soft); display: grid; gap: .3rem; }
.promo__meta b { color: var(--brown); font-weight: 600; }
.promo__actions { display: flex; gap: .5rem; margin-top: 1.3rem; }

/* ----- Why choose us (editorial list, not identical cards) -------------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.why-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding-block: 1.4rem; border-top: 1px solid var(--hair); align-items: start; }
.why-item:last-child { border-bottom: 1px solid var(--hair); }
.why-item__ico { width: 42px; height: 42px; border-radius: var(--r-pill); background: rgba(199,165,106,.14); display: inline-flex; align-items: center; justify-content: center; color: var(--rose); }
.why-item__ico svg { width: 1.3rem; height: 1.3rem; }
.why-item h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--brown); }
html[lang="th"] .why-item h3 { font-weight: 700; font-size: 1.12rem; }
.why-item p { font-size: .9rem; color: var(--ink-soft); margin-top: .2rem; }

/* ----- Hygiene steps ---------------------------------------------------- */
.hygiene__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,4vw,3rem); align-items: center; }
.steps { display: grid; gap: .2rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding-block: 1.1rem; align-items: center; }
.step + .step { border-top: 1px solid var(--hair); }
.step__n { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--gold); width: 2.2rem; }
.step__t { font-size: 1rem; font-weight: 600; color: var(--brown); }
.hygiene__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-lg); background: var(--beige); }
.hygiene__media img { width: 100%; height: 100%; object-fit: cover; }

/* ----- Artists ---------------------------------------------------------- */
.artist-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.artist { background: var(--surface); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); transition: box-shadow .4s, transform .4s; }
.artist:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.artist__img { aspect-ratio: 1/1; overflow: hidden; background: var(--beige); }
.artist__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.artist:hover .artist__img img { transform: scale(1.05); }
.artist__body { padding: 1.3rem 1.4rem 1.5rem; }
.artist__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--brown); }
html[lang="th"] .artist__name { font-weight: 700; }
.artist__role { font-size: .82rem; letter-spacing: .04em; color: var(--gold); font-weight: 600; margin-top: .2rem; }
.artist__meta { font-size: .86rem; color: var(--ink-soft); margin-top: .8rem; }
.artist__meta b { color: var(--brown); }
.artist__skills { font-size: .84rem; color: var(--ink-soft); margin-top: .3rem; }
.artist__book { margin-top: 1.1rem; }

/* ----- Reviews ---------------------------------------------------------- */
.reviews__summary { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.reviews__score { font-family: var(--serif); font-size: 3rem; font-weight: 600; color: var(--rose); line-height: 1; }
.reviews__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .1em; }
.reviews__count { font-size: .86rem; color: var(--ink-soft); }
.rev-track-wrap { overflow: hidden; }
.rev-track { display: flex; gap: 1.1rem; transition: transform .55s var(--ease-out); }
.rev-card { flex: 0 0 100%; background: var(--surface); border-radius: var(--r-md); padding: 1.6rem 1.5rem; box-shadow: var(--sh-sm); border: 1px solid var(--hair); }
.rev-card__stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.rev-card__text { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; color: var(--brown); margin: .8rem 0 1.2rem; }
html[lang="th"] .rev-card__text { font-family: var(--sans); font-size: 1.02rem; line-height: 1.6; }
.rev-card__who { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; border-top: 1px solid var(--hair); padding-top: .9rem; }
.rev-card__name { font-weight: 600; color: var(--brown); font-size: .95rem; }
.rev-card__svc { font-size: .78rem; color: var(--gold); }
.rev-card__date { font-size: .74rem; color: var(--ink-faint); }
.rev-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; gap: 1rem; }
.rev-dots { display: flex; gap: .4rem; }
.rev-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hair); transition: background .3s, width .3s; }
.rev-dot.is-active { background: var(--rose); width: 22px; border-radius: var(--r-pill); }
.rev-arrows { display: flex; gap: .5rem; }
.rev-arrow { width: 42px; height: 42px; border: 1px solid var(--hair); border-radius: var(--r-pill); display: inline-flex; align-items: center; justify-content: center; color: var(--brown); transition: all .3s; }
.rev-arrow:hover { border-color: var(--rose); background: rgba(215,182,173,.12); }
.rev-arrow svg { width: 1.1rem; height: 1.1rem; }
.reviews__links { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }

/* ----- Process ---------------------------------------------------------- */
.proc-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.4rem; }
.proc { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; padding: 1.2rem 1.3rem; background: var(--surface); border-radius: var(--r-md); box-shadow: var(--sh-sm); }
.proc__n { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--rose); width: 2.4rem; height: 2.4rem; border-radius: var(--r-pill); background: rgba(215,182,173,.16); display: inline-flex; align-items: center; justify-content: center; }
.proc__t { font-size: .98rem; font-weight: 500; color: var(--brown); }
.proc-cta { text-align: center; }

/* ----- Booking form ----------------------------------------------------- */
.book__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,4vw,3rem); }
.form { background: var(--surface); border-radius: var(--r-lg); padding: clamp(1.4rem,4vw,2.4rem); box-shadow: var(--sh-md); border: 1px solid var(--hair); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--brown); margin-bottom: .4rem; }
.field label .opt { color: var(--ink-faint); font-weight: 400; }
.field .req { color: var(--rose); }
.control {
  width: 100%; padding: .8rem .95rem; background: var(--ivory);
  border: 1px solid var(--hair); border-radius: var(--r-sm); font-size: .95rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.control:hover { border-color: var(--nude); }
.control:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(185,135,125,.15); background: #fff; }
textarea.control { min-height: 110px; resize: vertical; }
select.control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2375655d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.4rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field.invalid .control { border-color: #c0553f; background: #fdf3f0; }
.field-error { display: none; color: #b34a35; font-size: .78rem; margin-top: .35rem; }
.field.invalid .field-error { display: block; }
.file-field input { font-size: .85rem; }
.file-hint { font-size: .74rem; color: var(--ink-faint); margin-top: .3rem; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: .6rem; align-items: start; margin: 1.2rem 0; }
.consent input { margin-top: .25rem; width: 1.1rem; height: 1.1rem; accent-color: var(--rose); flex: none; }
.consent label { font-size: .8rem; color: var(--ink-soft); line-height: 1.5; font-weight: 400; }
.consent a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
.consent .field-error { display: none; }
.consent.invalid .field-error { display: block; margin-top: .35rem; }
.form__aside { display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.form__aside .lede { margin-bottom: .5rem; }
.form-success {
  display: none; text-align: center; padding: 1.4rem; border-radius: var(--r-md);
  background: rgba(6,199,85,.08); border: 1px solid rgba(6,199,85,.3);
  color: #1c6b41; font-size: .92rem; margin-bottom: 1rem;
}
.form-success.show { display: block; animation: fadeUp .5s var(--ease-out); }
.form-success svg { width: 2rem; height: 2rem; color: var(--line-green); margin: 0 auto .5rem; }

/* ----- FAQ -------------------------------------------------------------- */
.faq { max-width: 760px; }
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.15rem 0; font-size: 1.02rem; font-weight: 600; color: var(--brown); }
.faq__q .icon { flex: none; width: 1.4rem; height: 1.4rem; color: var(--rose); transition: transform .35s var(--ease-out); }
.faq__item.open .faq__q .icon { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease-out); }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; padding-bottom: 1.15rem; color: var(--ink-soft); font-size: .94rem; max-width: 68ch; }

/* ----- Contact ---------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,4vw,3rem); }
.contact__list { display: grid; gap: 1.1rem; }
.contact__row { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.contact__row .ico { width: 40px; height: 40px; border-radius: var(--r-pill); background: rgba(199,165,106,.14); color: var(--rose); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.contact__row .ico svg { width: 1.15rem; height: 1.15rem; }
.contact__row .k { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
html[lang="th"] .contact__row .k { text-transform: none; letter-spacing: .02em; }
.contact__row .v { font-size: .96rem; color: var(--brown); }
.contact__row a.v:hover { color: var(--rose); }
.contact__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.contact__social { display: flex; gap: .6rem; margin-top: 1.6rem; }
.contact__social a { width: 44px; height: 44px; border: 1px solid var(--hair); border-radius: var(--r-pill); display: inline-flex; align-items: center; justify-content: center; color: var(--brown); transition: all .3s; }
.contact__social a:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.contact__social svg { width: 1.2rem; height: 1.2rem; }
.map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 4/3; background: var(--beige); border: 1px solid var(--hair); }
.map iframe { width: 100%; height: 100%; border: 0; }

/* ----- Instagram -------------------------------------------------------- */
.ig-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.ig-cell { aspect-ratio: 1/1; border-radius: var(--r-sm); overflow: hidden; position: relative; background: var(--beige); }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.ig-cell:hover img { transform: scale(1.08); }
.ig-cell::after { content: ""; position: absolute; inset: 0; background: rgba(185,135,125,0); transition: background .3s; }
.ig-cell:hover::after { background: rgba(185,135,125,.18); }
.ig-foot { text-align: center; margin-top: 1.6rem; }

/* ----- Footer ----------------------------------------------------------- */
.footer { background: var(--brown); color: rgba(250,247,242,.8); padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer a { color: rgba(250,247,242,.8); transition: color .25s; }
.footer a:hover { color: var(--gold); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
.footer__brand .brand__name { color: var(--ivory); }
.footer__brand .brand__tag { color: var(--gold); }
.footer__tag { font-size: .88rem; margin-top: 1rem; max-width: 34ch; color: rgba(250,247,242,.65); }
.footer__social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer__social a { width: 40px; height: 40px; border: 1px solid rgba(250,247,242,.2); border-radius: var(--r-pill); display: inline-flex; align-items: center; justify-content: center; }
.footer__social a:hover { border-color: var(--gold); }
.footer__social svg { width: 1.1rem; height: 1.1rem; }
.footer__col h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
html[lang="th"] .footer__col h4 { text-transform: none; letter-spacing: .04em; }
.footer__col ul { display: grid; gap: .6rem; font-size: .9rem; }
.footer__news form { display: flex; gap: .5rem; margin-top: .3rem; }
.footer__news input { flex: 1; padding: .7rem .9rem; border-radius: var(--r-sm); border: 1px solid rgba(250,247,242,.2); background: rgba(250,247,242,.06); color: var(--ivory); font-size: .88rem; }
.footer__news input::placeholder { color: rgba(250,247,242,.5); }
.footer__news input:focus { outline: none; border-color: var(--gold); }
.footer__news .msg { font-size: .8rem; color: var(--gold); margin-top: .6rem; display: none; }
.footer__news .msg.show { display: block; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(250,247,242,.15); font-size: .8rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; }

/* ----- Floating buttons ------------------------------------------------- */
.fab { position: fixed; right: 1rem; bottom: 1rem; z-index: 50; display: flex; flex-direction: column; gap: .6rem; align-items: flex-end; }
.fab__group { display: flex; flex-direction: column; gap: .6rem; transition: opacity .3s, transform .3s; }
.fab.hidden .fab__group { opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none; }
.fab__btn { width: 54px; height: 54px; border-radius: var(--r-pill); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--sh-lg); color: #fff; position: relative; transition: transform .3s var(--ease-out); }
.fab__btn:hover { transform: scale(1.08); }
.fab__btn svg { width: 1.5rem; height: 1.5rem; }
.fab__btn--line { background: var(--line-green); }
.fab__btn--call { background: var(--brown); }
.fab__btn--book { background: var(--rose); width: auto; padding: 0 1.2rem; height: 54px; gap: .5rem; font-weight: 600; font-size: .92rem; }
.fab__label { position: absolute; right: calc(100% + .6rem); background: var(--brown); color: #fff; font-size: .78rem; padding: .3rem .6rem; border-radius: var(--r-sm); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s; }
.fab__btn:hover .fab__label { opacity: 1; }
.fab__toggle { width: 34px; height: 34px; border-radius: var(--r-pill); background: rgba(69,56,51,.55); backdrop-filter: blur(4px); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.fab__toggle svg { width: 1rem; height: 1rem; transition: transform .3s; }
.fab.hidden .fab__toggle svg { transform: rotate(180deg); }

/* ----- Reveal animation ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2){transition-delay:.06s}
.reveal-stagger.in > *:nth-child(3){transition-delay:.12s}
.reveal-stagger.in > *:nth-child(4){transition-delay:.18s}
.reveal-stagger.in > *:nth-child(5){transition-delay:.24s}
.reveal-stagger.in > *:nth-child(6){transition-delay:.30s}
.reveal-stagger.in > *:nth-child(7){transition-delay:.36s}
.reveal-stagger.in > *:nth-child(8){transition-delay:.42s}
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity:1; transform:none;} }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .12s !important; }
  .svc:hover .svc__img img, .tile:hover img, .artist:hover .artist__img img, .coll:hover img, .ig-cell:hover img { transform: none; }
}

/* ----- Language blocks for standalone pages (Thai, else English) -------- */
.t-en { display: none; }
html:not([lang="th"]) .t-th { display: none; }
html:not([lang="th"]) .t-en { display: revert; }
.lang-select {
  padding: .45rem 1.9rem .45rem .8rem; border: 1px solid var(--hair); border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 500; color: var(--brown); background: var(--surface);
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C7A56A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .7rem center;
}
.lang-select:hover { border-color: var(--rose); }

/* ----- Legal / content pages -------------------------------------------- */
.doc { max-width: 780px; }
.doc h1.display { margin-bottom: .6rem; }
.doc .updated { font-size: .84rem; color: var(--ink-faint); margin-bottom: 2.2rem; }
.doc h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--brown); margin: 2rem 0 .6rem; }
html[lang="th"] .doc h2 { font-weight: 700; font-size: 1.3rem; }
.doc h3 { font-size: 1.05rem; color: var(--brown); margin: 1.4rem 0 .4rem; }
.doc p, .doc li { color: var(--ink-soft); font-size: .96rem; }
.doc p { margin-bottom: .9rem; }
.doc ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: .4rem; margin-bottom: 1rem; }
.doc .note { background: rgba(199,165,106,.1); border: 1px solid var(--hair-gold); border-radius: var(--r-md); padding: 1rem 1.2rem; font-size: .88rem; color: var(--ink-soft); margin: 1.4rem 0; }
.doc .note b { color: var(--brown); }

/* ----- Responsive ------------------------------------------------------- */
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .artist-grid { grid-template-columns: repeat(2,1fr); }
  .promo-grid { grid-template-columns: repeat(2,1fr); }
  .coll-grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 768px) {
  body { font-size: 16.5px; }
  .masonry { columns: 3; }
  .stats { grid-template-columns: repeat(4,1fr); }
  .rev-card { flex-basis: calc(50% - .55rem); }
  .why-grid { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
  .why-item { border-top: none; padding-block: 1rem; }
  .why-item:last-child { border-bottom: none; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; }
  .proc-grid { grid-template-columns: repeat(2,1fr); }
  .scroll-cue { display: flex; }
}
@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__book { display: inline-flex; }
  .hamburger { display: none; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .about__grid { grid-template-columns: .9fr 1.1fr; }
  .hygiene__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .book__grid { grid-template-columns: 1.3fr .7fr; }
  .svc-grid { grid-template-columns: repeat(3,1fr); }
  .artist-grid { grid-template-columns: repeat(3,1fr); }
  .promo-grid { grid-template-columns: repeat(3,1fr); }
  .coll-grid { grid-template-columns: repeat(3,1fr); }
  .rev-card { flex-basis: calc(33.333% - .74rem); }
  .ig-grid { grid-template-columns: repeat(6,1fr); }
}
@media (min-width: 1100px) {
  .fab__btn--book { display: none; } /* on desktop the nav Book button covers this */
}
