/* ============================================================
   Gangnam Tones Clinic — Hero Variant A · accent #BB2649 · DM Sans
   ============================================================ */

:root {
  /* Surfaces — warm clinical whites */
  --bg:        #fbfaf7;
  --bg-alt:    #f4f0e8;   /* beige section band */
  --bg-deep:   #1e1c17;   /* dark band (doctors / footer) */
  --card:      #ffffff;

  /* Ink */
  --ink:       #1d1b16;
  --ink-soft:  #6f685b;
  --ink-faint: #9a9284;
  --on-dark:   #f5f1ea;
  --on-dark-soft: #b8b0a1;

  /* Lines */
  --line:      #e8e2d6;
  --line-soft: #f0ebe1;

  /* Accent — rose red (final) */
  --accent:      #bb2649;
  --accent-deep: #971d3a;
  --accent-tint: #f8e7eb;

  /* Type */
  --font: "DM Sans", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1400px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- Type scale ---------- */
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
h1, h2, h3 { font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; }
.display { font-size: clamp(38px, 6vw, 72px); font-weight: 600; letter-spacing: -0.03em; }
.h2      { font-size: clamp(28px, 3.6vw, 44px); }
.lede    { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); line-height: 1.62; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 14px 24px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px -10px var(--accent); }
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 12px 28px -10px var(--accent-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--accent-tint); color: var(--accent-deep); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Image placeholders ---------- */
.ph {
  position: relative; overflow: hidden;
  background-color: #efe9dd;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 9px, rgba(140,108,52,.07) 9px, rgba(140,108,52,.07) 18px
  );
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: #a08f6f;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: .04em; text-align: center;
  padding: 6px 12px; background: rgba(255,255,255,.7);
  border: 1px solid rgba(160,143,111,.3); border-radius: 6px;
  max-width: 80%;
}
.ph.dark { background-color: #2a271f; background-image: repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(255,255,255,.04) 9px, rgba(255,255,255,.04) 18px); border-color: rgba(255,255,255,.08); }
.ph.dark::after { background: rgba(0,0,0,.35); color: #cdbf9c; border-color: rgba(255,255,255,.12); }

/* ---------- Section scaffolding ---------- */
section { scroll-margin-top: 84px; }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head p { margin-top: 18px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,247,.82); backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 17px; letter-spacing: -.04em;
}
.brand .name { display: flex; flex-direction: column; line-height: 1.05; }
.brand .name b { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.brand .name span { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14.5px; color: var(--ink-soft); font-weight: 500; transition: color .15s; }
.nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang {
  display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  color: var(--ink-soft); padding: 7px 12px; border: 1px solid var(--line); border-radius: 100px; cursor: pointer;
  background: transparent;
}
.lang:hover { border-color: var(--accent); color: var(--accent-deep); }
.menu-toggle {
  display: none; cursor: pointer; padding: 9px 11px;
  background: rgba(40,30,10,.02);
  border: 1px solid var(--line); border-radius: 11px;
  transition: border-color .15s ease, background .15s ease;
}
.menu-toggle:hover { border-color: var(--accent); background: rgba(40,30,10,.04); }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

/* Treatments mega-menu */
.has-mega { position: static; display: flex; align-items: center; }
.mega-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font); font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  background: none; border: none; padding: 26px 0; cursor: pointer; transition: color .15s;
}
.mega-trigger:hover, .has-mega.mega-open .mega-trigger { color: var(--ink); }
.mega-trigger svg { transition: transform .2s ease; }
.has-mega.mega-open .mega-trigger svg { transform: rotate(180deg); }

.mega-wrap {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 49;
  padding: 12px var(--pad) 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-mega.mega-open .mega-wrap { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.mega {
  max-width: var(--maxw); margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: 0 30px 64px -30px rgba(60,48,20,.5); padding: 40px 44px 32px;
}
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 40px; }
.mega-col h5 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; margin-bottom: 14px; }
.mega-col a { display: block; font-size: 14.5px; color: var(--ink-soft); padding: 6px 0; transition: color .15s; }
.mega-col a:hover { color: var(--accent-deep); }
.mega-foot { margin-top: 26px; }
.mega-foot a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); border-top: 1px solid var(--line); padding-top: 18px; transition: gap .2s ease, color .15s; }
.mega-foot a:hover { color: var(--accent-deep); gap: 12px; }

/* Hamburger -> X animation */
.menu-toggle span { transition: transform .25s ease, opacity .2s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer — full-screen panel below the header */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0; z-index: 48;
  background: var(--bg, #fbfaf7);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-nav {
  min-height: 100%;
  padding: 22px var(--pad) 40px;
  transform: translateY(-12px); transition: transform .24s ease;
  display: flex; flex-direction: column; gap: 22px;
}
.mobile-menu.open .mobile-nav { transform: none; }
.mobile-section { display: flex; flex-direction: column; }
.mobile-section > h5 {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 700; margin-bottom: 12px;
}
.mobile-section > a {
  font-size: 16px; font-weight: 500; color: var(--ink-soft);
  padding: 11px 0; border-bottom: 1px solid var(--line-soft);
}
.mobile-acc {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; cursor: pointer; text-align: left;
  font-family: var(--font);
  font-size: 16px; font-weight: 500; color: var(--ink-soft);
  padding: 11px 0; border: none; border-bottom: 1px solid var(--line-soft);
}
.mobile-acc svg { color: var(--ink-faint); transition: transform .2s ease; }
.mobile-acc.open svg { transform: rotate(180deg); }
.mobile-acc-panel { padding-top: 12px; }
.mobile-cat { margin-bottom: 14px; }
.mobile-cat-label {
  display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600; margin: 4px 0 2px;
}
.mobile-cat a { display: block; font-size: 15px; color: var(--ink-soft); padding: 7px 0; }
.mobile-nav .btn { justify-content: center; width: 100%; }

@media (max-width: 920px) {
  .nav, .header-actions .lang, .header-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .brand .mark { display: none; }
}
@media (min-width: 921px) {
  .mobile-menu { display: none; }
}

/* ============================================================
   HERO — Variant A (full-bleed image with overlay)
   ============================================================ */
.hero { position: relative; }

/* Trust strip under hero */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.trust-strip .row { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: space-between; padding-block: 22px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.trust-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

/* Split hero — copy left, auto-rolling doctor gallery right */
.hero-split { display: grid; grid-template-columns: 1.02fr .98fr; min-height: 620px; background: var(--bg); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 72px); }
.hero-copy .inner { width: 100%; max-width: 560px; margin-left: auto; }
.hero-split .eyebrow { display: block; margin-bottom: 18px; }
.hero-split .display { max-width: 14ch; }
.hero-split .lede { margin-top: 22px; max-width: 46ch; }
.hero-split .cta-row { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* avatar roster */
.hero-roster { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-avatars { display: flex; }
.hero-avatars button {
  width: 44px; height: 44px; border-radius: 50%; margin-left: -10px; padding: 0;
  border: 2px solid var(--bg); background: var(--accent-tint); color: var(--accent-deep);
  font-family: var(--font); font-weight: 700; font-size: 15px;
  display: grid; place-items: center; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease; overflow: hidden;
}
.hero-avatars button img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.hero-avatars button:first-child { margin-left: 0; }
.hero-avatars button:hover { transform: scale(1.08); }
.hero-avatars button.active { box-shadow: 0 0 0 2px var(--accent); transform: scale(1.14); position: relative; z-index: 2; }
.hero-roster .count { font-size: 14px; color: var(--ink-soft); font-weight: 500; }

/* media side */
.hero-media { position: relative; overflow: hidden; background: linear-gradient(140deg, var(--bg-alt) 0%, #efe6db 55%, var(--accent-tint) 135%); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide .ph, .hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border: none; }
.hero-badge {
  position: absolute; z-index: 3; top: clamp(20px, 4vw, 40px); right: clamp(20px, 4vw, 40px);
  background: #fff; border-radius: 16px; padding: 16px 22px; min-width: 150px;
  box-shadow: 0 24px 50px -24px rgba(60,48,20,.45);
}
.hero-badge .bn { font-size: 19px; font-weight: 700; letter-spacing: -.02em; color: var(--accent-deep); }
.hero-badge .br { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-copy { order: 2; }
  .hero-copy .inner { margin-left: 0; max-width: none; }
  .hero-media { order: 1; min-height: 380px; }
  .hero-badge { padding: 7px 11px; min-width: 0; border-radius: 11px; top: 14px; right: 14px; }
  .hero-badge .bn { font-size: 15px; }
  .hero-badge .br { font-size: 11.5px; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-top: 56px; }
.why-card { background: var(--card); padding: 38px 34px; }
.why-card .ix { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 22px; }
.why-card h3 { font-size: 20px; margin-bottom: 10px; }
.why-card p { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TREATMENTS
   ============================================================ */
.treat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.treat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
}
.treat-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(60,48,20,.5); border-color: #ddd2bd; }
.treat-card .thumb .ph { aspect-ratio: 4/3; border: none; border-bottom: 1px solid var(--line); }
.treat-card .thumb .treat-thumb-img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top center; border: none; border-bottom: 1px solid var(--line); }
.treat-card .body { padding: 18px 20px 22px; }
.treat-card .tag { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); font-weight: 600; }
.treat-card h3 { font-size: 18.5px; margin: 8px 0 6px; }
.treat-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.treat-card .more { margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease; }
.treat-card:hover .more { gap: 10px; }
@media (max-width: 960px) { .treat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .treat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DOCTORS
   ============================================================ */
.doctors { background: var(--bg-deep); color: var(--on-dark); }
.doctors .eyebrow { color: #e7cf9f; }
.doctors .lede { color: var(--on-dark-soft); }
.doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 56px; }
.doc-card { display: grid; grid-template-columns: 150px 1fr; gap: 26px; align-items: start; }
.doc-card .photo .ph { aspect-ratio: 3/4; border-radius: var(--radius); }
.doc-card h3 { font-size: 22px; color: #fff; }
.doc-card .role { color: #e7cf9f; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; margin-top: 4px; }
.doc-card .cred { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.doc-card .cred li { list-style: none; font-size: 14px; color: var(--on-dark-soft); display: flex; gap: 10px; }
.doc-card .cred li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-top: 9px; flex: none; }
@media (max-width: 860px) { .doc-grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .doc-card { grid-template-columns: 110px 1fr; gap: 18px; } }

/* ---- Doctors slider (DB-driven) ---- */
.doc-slider { position: relative; display: flex; align-items: center; gap: 14px; margin-top: 56px; }
.doc-viewport { overflow: hidden; flex: 1; min-width: 0; }
.doc-track { display: flex; gap: 24px; transition: transform .45s cubic-bezier(.4, 0, .2, 1); }
.doc-card2 {
  flex: 0 0 calc((100% - 48px) / 3); min-width: 0;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg); overflow: hidden;
}
.doc-photo2 img, .doc-photo2 .ph { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top center; display: block; border: none; border-radius: 0; }
.doc-card2 h3 { font-size: 20px; color: #fff; padding: 18px 22px 0; letter-spacing: -.01em; }
.doc-card2 .role { color: #e7cf9f; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; padding: 5px 22px 22px; }
.doc-nav {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .06); color: #fff;
  cursor: pointer; display: grid; place-items: center;
  transition: background .15s ease, border-color .15s ease, opacity .15s ease;
}
.doc-nav:hover { background: var(--accent); border-color: var(--accent); }
.doc-nav:disabled { opacity: .3; cursor: default; }
@media (max-width: 960px) { .doc-card2 { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 620px) { .doc-card2 { flex: 0 0 100%; } .doc-slider { gap: 8px; } .doc-nav { width: 40px; height: 40px; } }

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.ba-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.ba-card .pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-card .pair .ph { aspect-ratio: 1; border: none; }
.ba-card .pair .ba-img { aspect-ratio: 1; background: var(--bg-alt) center / cover no-repeat; }
.ba-card .pair > * + * { border-left: 1px solid var(--line); }
.ba-card .cap { padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; }
.ba-card .cap b { font-size: 15px; }
.ba-card .cap span { font-size: 12.5px; color: var(--ink-faint); }
.ba-note { margin-top: 26px; font-size: 12.5px; color: var(--ink-faint); text-align: center; }
@media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { position: relative; overflow: hidden; background: var(--bg-deep); }
.reviews .rev-bg { position: absolute; inset: 0; }
.reviews .rev-bg img { width: 100%; height: 100%; object-fit: cover; }
.reviews .rev-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,14,.52) 0%, rgba(20,18,14,.60) 60%, rgba(20,18,14,.66) 100%); }
.reviews .wrap { position: relative; z-index: 1; }
.reviews .eyebrow { color: #e7cf9f; }
.reviews .h2 { color: #fff; }
.rev-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.gscore { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 22px; }
.gscore .g { font-size: 26px; font-weight: 700; }
.gscore .meta .stars { color: var(--accent); letter-spacing: 2px; font-size: 15px; }
.gscore .meta .sub { font-size: 12.5px; color: var(--ink-soft); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.rev-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; }
.rev-card .stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }
.rev-card .quote { margin-top: 14px; font-size: 15px; line-height: 1.6; color: var(--ink); }
.rev-card .quote::before { content: '\201C'; }
.rev-card .quote::after  { content: '\201D'; }
.rev-card .who { margin-top: auto; padding-top: 20px; display: flex; align-items: center; gap: 12px; }
.rev-card .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-deep); display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.rev-card .who b { font-size: 14px; display: block; }
.rev-card .who span { font-size: 12px; color: var(--ink-faint); }
@media (max-width: 960px) { .rev-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LOCATION + FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; margin-top: 52px; }
.map .ph { aspect-ratio: 4/3; border-radius: var(--radius); }
.map .map-embed { display: block; width: 100%; aspect-ratio: 4/3; border: 0; border-radius: var(--radius); }
.facts { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.fact { display: flex; gap: 14px; }
.fact .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-tint); color: var(--accent-deep); display: grid; place-items: center; flex: none; }
.fact .k { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.fact .v { font-size: 15px; color: var(--ink); }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); }
.form-card h3 { font-size: 24px; }
.form-card .reply { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13px; color: var(--accent-deep); font-weight: 600; }
.field { margin-top: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 22px; }
.form-ok { text-align: center; padding: 30px 10px; }
.form-ok .check { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-deep); display: grid; place-items: center; margin: 0 auto 16px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ---- appointment request form (label-left rows) ---- */
.appt-form .appt-row { display: grid; grid-template-columns: 92px 1fr; align-items: start; gap: 14px; margin-top: 16px; }
.appt-label { font-size: 13px; font-weight: 600; color: var(--ink-soft); padding-top: 13px; }
.appt-input input, .appt-input select, .appt-input textarea {
  width: 100%; font-family: var(--font); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
}
.appt-input textarea { resize: vertical; min-height: 84px; }
.appt-input input:focus, .appt-input select:focus, .appt-input textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }

/* gender toggle */
.gender-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gender-toggle .gt-btn {
  font-family: var(--font); font-size: 15px; font-weight: 600; cursor: pointer;
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  background: #e9eaec; color: var(--ink-soft); transition: all .15s;
}
.gender-toggle .gt-btn.is-on { background: var(--accent); border-color: var(--accent); color: #fff; }

/* phone group: prefix select + two inputs */
.phone-group { display: grid; grid-template-columns: 96px 1fr 1fr; gap: 12px; }

/* messenger grid */
.msgr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.msgr-grid .msgr-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer;
  font-family: var(--font); font-size: 15px; font-weight: 500; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg);
  transition: all .15s;
}
.msgr-grid .msgr-btn img { width: 22px; height: 22px; object-fit: contain; flex: none; }
.msgr-grid .msgr-btn:hover { border-color: var(--accent); }
.msgr-grid .msgr-btn.is-on { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-tint); background: var(--accent-tint); }
.msgr-grid .msgr-etc { justify-content: center; }

/* reservation date picker (popup) + time select inside the contact form */
.appt-date-wrap { position: relative; display: block; }
.appt-date-wrap input { padding-right: 38px; cursor: pointer; }
.appt-date-ic { position: absolute; top: 50%; right: 13px; transform: translateY(-50%); color: var(--ink-faint); pointer-events: none; }
.appt-input select:disabled { color: var(--ink-faint); cursor: not-allowed; background-color: var(--bg-alt); }

/* validation: flagged fields + error note */
.appt-input input.is-invalid,
.appt-input select.is-invalid,
.appt-input textarea.is-invalid { border-color: var(--accent); background: var(--accent-tint); }
.appt-input input.is-invalid:focus,
.appt-input select.is-invalid:focus,
.appt-input textarea.is-invalid:focus { box-shadow: 0 0 0 3px var(--accent-tint); }
.appt-err { margin-top: 16px; color: var(--accent-deep); font-size: 14px; font-weight: 600; }
.appt-err[hidden] { display: none; }

@media (max-width: 520px) {
  .appt-form .appt-row { grid-template-columns: 1fr; gap: 6px; }
  .appt-label { padding-top: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-deep); color: var(--on-dark-soft); padding-block: 56px 30px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.site-footer .brand .name b { color: #fff; }
.site-footer .brand .name span { color: var(--on-dark-soft); }
.foot-blurb { margin-top: 18px; font-size: 14px; max-width: 36ch; line-height: 1.6; }
.foot-col h4 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.foot-col a { display: block; font-size: 14px; color: var(--on-dark-soft); padding: 5px 0; transition: color .15s; }
.foot-col a:hover { color: #e7cf9f; }
.foot-bot { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; }
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr 1fr; } .site-footer .brand { grid-column: 1 / -1; } }

/* ============================================================
   FLOATING CHANNELS
   ============================================================ */
.floats {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.floats-btns {
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  overflow: hidden;
  max-height: 400px; opacity: 1;
  transition: max-height .35s ease, opacity .25s ease;
}
.floats.closed .floats-btns { max-height: 0; opacity: 0; pointer-events: none; }

.float-btn.book { display: none; background: var(--accent); }
@media (max-width: 920px) { .float-btn.book { display: grid; } }
.float-btn {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; cursor: pointer;
  transition: transform .15s ease; position: relative;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.float-btn.yt  { background: #ff0000; }
.float-btn.wa  { background: #25D366; }
.float-btn.ln  { background: #06C755; }
.float-btn.phn { background: #0A7CFF; }
.float-btn.bk  { background: var(--accent); }
.float-btn .tip {
  position: absolute; right: 54px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 10px;
  border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .15s;
}
.float-btn:hover .tip { opacity: 1; }

.floats-toggle {
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  display: grid; place-items: center;
  background: rgba(30,30,30,.72); color: #fff;
  transition: background .15s, transform .25s ease;
}
.floats-toggle:hover { background: rgba(30,30,30,.9); }
.floats-toggle svg { transition: transform .25s ease; }
.floats.closed .floats-toggle svg { transform: rotate(180deg); }

/* ============================================================
   COOKIE BAR
   ============================================================ */
.cookie { position: fixed; left: 18px; bottom: 18px; z-index: 55; max-width: 340px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; box-shadow: 0 20px 44px -20px rgba(60,48,20,.45); }
.cookie.hide, .cookie[hidden] { display: none; }
.cookie p { font-size: 13px; color: var(--ink-soft); }
.cookie .row { display: flex; gap: 10px; margin-top: 14px; }
@media (max-width: 600px) { .cookie { left: 12px; right: 12px; max-width: none; } .floats { bottom: 24px; } }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   TREATMENT DETAIL PAGE
   ============================================================ */
.crumb { display: flex; align-items: center; gap: 9px; padding-top: 28px; font-size: 13px; color: var(--ink-faint); flex-wrap: wrap; }
.crumb a { color: var(--ink-soft); transition: color .15s; }
.crumb a:hover { color: var(--accent-deep); }
.crumb .here { color: var(--ink); font-weight: 600; }

.td-hero { background: var(--bg); padding-bottom: clamp(40px, 6vw, 72px); }
.td-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; margin-top: clamp(28px, 4vw, 48px); }
.td-hero-copy .eyebrow { display: block; margin-bottom: 16px; }
.td-h1 { font-size: clamp(34px, 4.6vw, 54px); font-weight: 600; letter-spacing: -.03em; line-height: 1.08; }
.td-tagline { font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-soft); margin-top: 16px; line-height: 1.55; max-width: 38ch; }
.td-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.td-chip { border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; min-width: 92px; }
.td-chip .k { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.td-chip .v { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 3px; }
.td-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.td-hero-media .ph { aspect-ratio: 4/3; border-radius: var(--radius-lg); height: 100%; }
.td-hero-media .td-hero-img { display: block; width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top center; border-radius: var(--radius-lg); }

/* Current offers */
.td-offers { background: var(--bg-alt); }
.td-offers-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.td-offers-head .section-head { max-width: none; }
.td-offers-all { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--accent-deep); transition: gap .2s ease; white-space: nowrap; }
.td-offers-all:hover { gap: 12px; }
.td-offers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; align-items: start; }
.offer-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 28px; }
.offer-top { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; }
.offer-top h3 { font-size: 20px; }
.offer-badge { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; line-height: 1; white-space: nowrap; }
.offer-badge.value { background: var(--accent-tint); color: var(--accent-deep); }
.offer-badge.neutral { background: #ece5d8; color: var(--ink-soft); }
.offer-badge.vip { background: var(--bg-deep); color: #fff; }
.offer-desc { font-size: 14px; color: var(--ink-soft); margin-top: 10px; }
.offer-price { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 15px 16px 15px 18px; }
.offer-price-text { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.offer-price .was { font-size: 14px; color: var(--ink-faint); text-decoration: line-through; }
.offer-price .now { font-size: 22px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.offer-price .off { font-size: 11px; font-weight: 700; background: var(--accent); color: #fff; padding: 5px 9px; border-radius: 8px; letter-spacing: .03em; }
.offer-go { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--accent); color: #fff; display: grid; place-items: center; transition: background .2s ease, transform .15s ease; }
.offer-go:hover { background: var(--accent-deep); transform: translateX(2px); }
.td-offers-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 24px; }
@media (max-width: 860px) { .td-offers-grid { grid-template-columns: 1fr; } }

.td-about { background: var(--bg); }
.td-about-grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(36px, 5vw, 72px); align-items: start; margin-top: 0; }
.td-about-lede { margin-top: 18px; max-width: 60ch; }
.td-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 36px; }
.td-col-h { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; margin-bottom: 16px; }
.td-check { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.td-check li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink); line-height: 1.45; }
.td-check li svg { flex: none; margin-top: 4px; color: #fff; background: var(--accent); border-radius: 50%; padding: 3px; width: 20px; height: 20px; }

/* Pricing card */
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; position: sticky; top: 96px; box-shadow: 0 22px 48px -32px rgba(60,48,20,.4); }
.price-card h3 { font-size: 20px; }
.price-note { font-size: 13px; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }
.price-rows { list-style: none; margin-top: 18px; }
.price-rows li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; color: var(--ink); }
.price-rows li:first-child { border-top: 1px solid var(--line-soft); }
.price-vat { margin-top: 18px; background: var(--accent-tint); color: var(--accent-deep); font-size: 12.5px; font-weight: 600; text-align: center; padding: 10px 12px; border-radius: 10px; }
.price-card .btn-primary { width: 100%; justify-content: center; margin-top: 16px; }
.price-fine { text-align: center; font-size: 11.5px; color: var(--ink-faint); margin-top: 12px; }

/* How it works */
.td-how { background: var(--bg); }
.td-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 52px; }
.td-step .num { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.td-step h4 { font-size: 17px; margin-bottom: 8px; }
.td-step p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 860px) { .td-steps { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .td-steps { grid-template-columns: 1fr; } }

/* Before & After */
.td-ba-section { background: var(--bg-alt); }
.td-ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; max-width: 760px; margin-inline: auto; }
@media (max-width: 640px) { .td-ba-grid { grid-template-columns: 1fr; } }

/* Recovery */
.td-recovery { background: var(--bg); }
.td-recovery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.td-recovery-list { padding-top: 6px; }
@media (max-width: 860px) { .td-recovery-grid { grid-template-columns: 1fr; } }

/* FAQ */
.td-faq { background: var(--bg-alt); }
.td-faq-wrap { max-width: 760px; margin: 44px auto 0; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; cursor: pointer; padding: 22px 4px; font-family: var(--font); font-size: 16.5px; font-weight: 600; color: var(--ink); text-align: left; }
.faq-toggle { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 18px; line-height: 1; background: var(--accent-tint); color: var(--accent-deep); transition: background .15s, color .15s; }
.faq-item.open .faq-toggle { background: var(--accent); color: #fff; }
.faq-a { padding: 0 40px 24px 4px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* CTA band */
.td-cta { background: var(--bg-deep); color: var(--on-dark); text-align: center; padding-block: clamp(56px, 8vw, 104px); }
.td-cta .eyebrow { display: block; margin-bottom: 14px; color: #e7cf9f; }
.td-cta .h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.td-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.td-cta-fine { font-size: 13px; color: var(--on-dark-soft); margin-top: 20px; }

/* Related */
.td-related { background: var(--bg); }
.td-related .eyebrow { display: block; margin-bottom: 14px; }
.td-related .h2 { margin-bottom: 28px; }
.td-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.td-pill { display: inline-flex; align-items: center; padding: 11px 22px; border: 1px solid var(--line); border-radius: 100px; font-size: 14.5px; font-weight: 600; color: var(--ink); background: var(--card); transition: border-color .15s, color .15s, background .15s; }
.td-pill:hover { border-color: var(--accent); color: var(--accent-deep); background: var(--accent-tint); }

@media (max-width: 860px) {
  .td-hero-grid { grid-template-columns: 1fr; }
  .td-hero-media { order: -1; }
  .td-about-grid { grid-template-columns: 1fr; }
  .price-card { position: static; }
}
@media (max-width: 540px) { .td-cols { grid-template-columns: 1fr; } }


/* ============================================================
   Events page — left categories / right content (full width)
   Matches the reference: search + category rail on the left,
   event banner + price-option cards on the right, sticky bottom bar.
   ============================================================ */
.ev-top { background: var(--bg); padding-top: 4px; padding-bottom: clamp(20px, 3vw, 36px); }
.ev-top-head { max-width: 720px; margin-top: 22px; }
.ev-top-head .eyebrow { display: block; margin-bottom: 14px; }
.ev-top-head .lede { margin-top: 16px; }

.ev-shell { background: var(--bg); padding-bottom: 132px; }

.ev-layout {
  display: grid;
  grid-template-columns: 258px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}

/* ---------------- LEFT rail ---------------- */
.ev-side { position: sticky; top: 88px; }
.ev-search { position: relative; margin-bottom: 18px; }
.ev-search input {
  width: 100%; font-family: var(--font); font-size: 14px; color: var(--ink);
  background: var(--bg-alt); border: 1px solid transparent; border-radius: 10px;
  padding: 12px 40px 12px 15px;
}
.ev-search input:focus { outline: none; border-color: var(--accent); background: var(--bg); box-shadow: 0 0 0 3px var(--accent-tint); }
.ev-search-ic { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); display: grid; place-items: center; pointer-events: none; }

.ev-cats { display: flex; flex-direction: column; }
.ev-cat-btn {
  width: 100%; display: flex; align-items: center; gap: 9px;
  font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--ink-soft);
  text-align: left; cursor: pointer; background: transparent; border: none;
  border-bottom: 1px solid var(--line); padding: 13px 14px; transition: background .15s, color .15s;
}
.ev-cats li:first-child .ev-cat-btn { border-top: 1px solid var(--line); }
.ev-cat-btn:hover { background: var(--card); color: var(--ink); }
.ev-cat-btn.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
  border-radius: 8px; font-weight: 600;
}
.ev-cat-ic { flex: none; font-size: 14px; }
.ev-cat-label { min-width: 0; }
.ev-cat-badge {
  margin-left: auto; flex: none; min-width: 20px; height: 20px; padding: 0 6px; box-sizing: border-box;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; line-height: 1; color: #fff;
  background: var(--accent); border-radius: 999px;
}
.ev-cat-btn.active .ev-cat-badge { background: #fff; color: var(--accent); }
.ev-cat-badge[hidden] { display: none; }

/* ---------------- RIGHT content ---------------- */
.ev-content { min-width: 0; }

/* Filter row */
.ev-filterbar { display: flex; align-items: center; gap: 18px 22px; flex-wrap: wrap; margin-bottom: 26px; }
.ev-filter-label { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--ink); }
.ev-filter-chk { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); cursor: pointer; }
.ev-filter-chk input { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }

/* Group header */
.ev-grouphead { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.ev-group-title { display: inline-flex; align-items: center; gap: 9px; font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; letter-spacing: -.02em; }
.ev-group-ic { font-size: .9em; }
.ev-group-period { font-size: 14px; color: var(--ink-soft); }

/* Featured banner */
.ev-banner { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.ev-banner img, .evm-banner img { display: block; width: 100%; height: auto; }
.ev-banner .ph { width: 100%; aspect-ratio: 1000 / 360; border: none; border-radius: 0; }

/* Section wrapper — transparent to layout, used for section-aware search */
.ev-section, .evm-section { display: contents; }
.ev-section[hidden], .evm-section[hidden] { display: none; }

/* Section heading */
.ev-heading { font-size: clamp(17px, 1.8vw, 21px); font-weight: 700; letter-spacing: -.01em; margin: 34px 0 18px; }

/* Item cards */
.ev-items { display: flex; flex-direction: column; gap: 18px; }
.evi { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 24px; }
.evi-head { display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap; }
.evi-zoom { flex: none; margin-top: 2px; color: var(--ink-faint); }
.evi-title { font-size: 16px; font-weight: 700; letter-spacing: -.01em; line-height: 1.4; flex: 1; min-width: 200px; }
.evi-title a { color: var(--ink); transition: color .15s; }
.evi-title a:hover { color: var(--accent-deep); }
.evi-flags { display: flex; gap: 6px; flex-wrap: wrap; flex: none; }
.evi-flag { font-size: 10.5px; font-weight: 700; letter-spacing: .03em; padding: 4px 9px; border-radius: 100px; line-height: 1; white-space: nowrap; }
.evi-flag.flag-value   { background: #fdeede; color: #a4631a; }
.evi-flag.flag-best    { background: var(--accent-tint); color: var(--accent-deep); }
.evi-flag.flag-vip     { background: var(--bg-deep); color: #fff; }
.evi-flag.flag-director{ background: #ece5d8; color: var(--ink-soft); }
.evi-flag.flag-age2030 { background: #e6effb; color: #2c5d97; }
.evi-flag.flag-age4050 { background: #ede9f7; color: #5a4a93; }
.evi-desc { font-size: 13.5px; color: var(--ink-faint); margin-top: 8px; }

/* Price option columns — auto-fit so the columns always stretch to fill
   100% of the row width based on how many options the item has. */
.evi-options {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px; margin-top: 18px;
}
.evo { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 14px; transition: border-color .15s, box-shadow .15s; cursor: pointer; }
.evo:hover { border-color: var(--accent); }
.evo.selected { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-tint); }
.evo-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; min-height: 34px; }
.evo-name { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.evo-add {
  flex: none; width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line);
  background: var(--card); color: var(--ink-soft); font-size: 17px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .15s, color .15s, border-color .15s;
}
.evo-add:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.evo-add.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.evo-stepper { flex: none; display: inline-flex; align-items: center; gap: 2px; }
.evo-stepper button {
  width: 26px; height: 26px; border-radius: 7px; border: none; background: var(--accent); color: #fff;
  font-size: 16px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .15s;
}
.evo-stepper button:hover { background: var(--accent-deep); }
.evo-stepper span { min-width: 20px; text-align: center; font-size: 13px; font-weight: 700; }
.evo-was { display: block; font-size: 12px; color: var(--ink-faint); text-decoration: line-through; margin-top: 10px; }
.evo-now { display: block; font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-top: 2px; }

.ev-empty { text-align: center; color: var(--ink-soft); padding: 48px 0; }

/* ---------------- Sticky booking bar ---------------- */
.ev-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--card); border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px -18px rgba(0,0,0,.25);
}
.ev-bar-inner { display: flex; align-items: center; gap: 18px 24px; padding-block: 14px; flex-wrap: wrap; }
.ev-bar-note { font-size: 12.5px; color: var(--ink-soft); }
.ev-bar-mark { color: var(--accent); font-weight: 700; }
.ev-bar-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.ev-bar-total { display: inline-flex; align-items: baseline; gap: 10px; }
.ev-bar-k { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.ev-bar-sum { font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.ev-bar-reset {
  width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg);
  color: var(--ink-soft); cursor: pointer; display: grid; place-items: center; transition: border-color .15s, color .15s;
}
.ev-bar-reset:hover { border-color: var(--accent); color: var(--accent-deep); }
.ev-bar-cta { white-space: nowrap; }
.ev-bar-cta.is-disabled { opacity: .5; pointer-events: none; }
.ev-bar-agree { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-soft); cursor: pointer; }
.ev-bar-agree input { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }


/* ============================================================
   Events page — desktop / mobile view toggle (separate layouts)
   Mirrors the reference site's .pc / .mob swap at the 1000px breakpoint.
   ============================================================ */
.ev-desktop { display: block; }
.ev-mobile { display: none; }

@media (max-width: 1000px) {
  .ev-desktop { display: none; }
  .ev-mobile { display: block; }
}

/* ============================================================
   MOBILE layout (.evm-*) — dedicated stacked view
   ============================================================ */
.evm-shell { background: var(--bg); padding-inline: var(--pad); padding-bottom: 150px; }

/* Search */
.evm-search { position: relative; margin-top: 4px; margin-bottom: 14px; }
.evm-search input {
  width: 100%; font-family: var(--font); font-size: 15px; color: var(--ink);
  background: var(--bg-alt); border: 1px solid transparent; border-radius: 10px;
  padding: 13px 15px 13px 42px;
}
.evm-search input:focus { outline: none; border-color: var(--accent); background: var(--bg); box-shadow: 0 0 0 3px var(--accent-tint); }
.evm-search-ic { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); display: grid; place-items: center; pointer-events: none; }

/* Category strip + "all events" chevron — swipeable, sticky under header */
.evm-topbar {
  position: sticky; top: 72px; z-index: 30;
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); border-bottom: 1px solid var(--line);
  margin-inline: calc(-1 * var(--pad)); padding-inline: var(--pad);
}
.evm-cats {
  flex: 1; min-width: 0;
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding: 8px 0;
}
.evm-cats::-webkit-scrollbar { display: none; }
.evm-topbar-more {
  flex: none; width: 40px; height: 38px; border-radius: 10px; border: none;
  background: var(--accent); color: #fff; cursor: pointer;
  display: grid; place-items: center;
}
.evm-cat {
  flex: none; white-space: nowrap; cursor: pointer;
  font-family: var(--font); font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 9px 15px;
  transition: background .15s, color .15s, border-color .15s;
}
.evm-cat.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.evm-cat-badge {
  display: inline-flex; align-items: center; justify-content: center; margin-left: 6px;
  min-width: 18px; height: 18px; padding: 0 5px; box-sizing: border-box;
  font-size: 11px; font-weight: 700; line-height: 1; color: #fff; background: var(--accent); border-radius: 999px;
}
.evm-cat.active .evm-cat-badge { background: #fff; color: var(--accent); }
.evm-cat-badge[hidden] { display: none; }

/* Group header */
.evm-head { margin-top: 20px; margin-bottom: 14px; }
.evm-title { font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.evm-period { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 6px; }

/* Banner */
.evm-banner { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.evm-banner .ph { width: 100%; aspect-ratio: 16 / 9; border: none; border-radius: 0; }

/* Filter chips — horizontal scroll */
.evm-filters {
  display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none;
  margin-top: 18px; margin-inline: calc(-1 * var(--pad)); padding-inline: var(--pad); padding-bottom: 2px;
}
.evm-filters::-webkit-scrollbar { display: none; }
.evm-filter-label { flex: none; color: var(--ink); display: grid; place-items: center; }
.evm-chip {
  flex: none; white-space: nowrap; cursor: pointer;
  font-family: var(--font); font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 7px 13px;
  transition: background .15s, color .15s, border-color .15s;
}
.evm-chip.active { background: var(--accent-tint); color: var(--accent-deep); border-color: var(--accent); }

/* Section heading */
.evm-heading { font-size: 17px; font-weight: 700; letter-spacing: -.01em; margin: 26px 0 14px; }

/* Item cards */
.evm-items { display: flex; flex-direction: column; gap: 14px; }
.evm-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px 16px; }
.evm-item-head { display: flex; flex-direction: column; gap: 8px; }
.evm-item-title { font-size: 15.5px; font-weight: 700; line-height: 1.4; }
.evm-item-title a { color: var(--ink); }
.evm-flags { display: flex; gap: 6px; flex-wrap: wrap; }
.evm-item-desc { font-size: 13px; color: var(--ink-faint); margin-top: 8px; }

/* Options — vertical rows */
.evm-opts { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.evm-opt {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 13px;
  cursor: pointer;
}
.evm-opt.selected { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-tint); }
.evm-opt-name { font-size: 13px; font-weight: 600; color: var(--ink); flex: 1; min-width: 0; line-height: 1.35; }
.evm-opt-price { display: flex; flex-direction: column; align-items: flex-end; flex: none; }
.evm-opt-was { font-size: 11px; color: var(--ink-faint); text-decoration: line-through; }
.evm-opt-now { font-size: 15px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.evm-add {
  flex: none; width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--card); color: var(--ink-soft); font-size: 19px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .15s, color .15s, border-color .15s;
}
.evm-add:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.evm-add.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.evm-stepper { flex: none; display: inline-flex; align-items: center; gap: 2px; }
.evm-stepper button {
  width: 30px; height: 30px; border-radius: 8px; border: none; background: var(--accent); color: #fff;
  font-size: 17px; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.evm-stepper > span { min-width: 22px; text-align: center; font-size: 14px; font-weight: 700; }

/* Mobile sticky booking bar */
.evm-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--card); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -16px rgba(0,0,0,.3);
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
}
.evm-bar-agree { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-soft); cursor: pointer; margin-bottom: 10px; }
.evm-bar-agree input { width: 16px; height: 16px; accent-color: var(--accent); flex: none; }
.evm-bar-row { display: flex; align-items: center; gap: 10px; }
.evm-bar-total { display: flex; flex-direction: column; line-height: 1.15; }
.evm-bar-k { font-size: 11px; color: var(--ink-soft); font-weight: 600; }
.evm-bar-total b { font-size: 19px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.evm-bar-reset {
  margin-left: auto; flex: none; width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--bg); color: var(--ink-soft);
  cursor: pointer; display: grid; place-items: center;
}
.evm-bar-cta { flex: none; padding-inline: 22px; }

/* Overall Event overlay (opened by the top-bar chevron) */
.evm-allmodal { position: fixed; inset: 0; z-index: 80; display: flex; }
.evm-allmodal[hidden] { display: none; }
.evm-allmodal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.evm-allmodal-panel {
  position: relative; margin-left: auto; width: min(86vw, 360px); height: 100%;
  background: var(--bg); display: flex; flex-direction: column;
  box-shadow: -12px 0 40px -20px rgba(0,0,0,.5); animation: evm-all-in .22s ease;
}
@keyframes evm-all-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
.evm-allmodal-head {
  flex: none; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
}
.evm-allmodal-title { font-size: 17px; font-weight: 700; }
.evm-allmodal-x {
  width: 40px; height: 40px; border: none; background: var(--accent); color: #fff;
  cursor: pointer; display: grid; place-items: center; border-radius: 0;
}
.evm-alllist { flex: 1; overflow-y: auto; list-style: none; margin: 0; padding: 6px 0; }
.evm-allitem {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 18px; font-size: 15px; font-weight: 600; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.evm-allitem.active { color: var(--accent); font-weight: 700; }
.evm-allitem-label { flex: 1; min-width: 0; }
.evm-allmodal-foot {
  flex: none; display: flex; align-items: stretch; gap: 0;
  border-top: 1px solid var(--line);
}
.evm-allmodal-reset {
  flex: none; width: 56px; border: none; border-right: 1px solid var(--line);
  background: var(--bg); color: var(--ink-soft); cursor: pointer; display: grid; place-items: center;
}
.evm-allmodal-book {
  flex: 1; border-radius: 0; padding: 18px; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.evm-bar-cta.is-disabled { opacity: .5; pointer-events: none; }

/* Events page is capped to the site container width (--maxw: 1400px), same as
   the rest of the site. Side padding (var(--pad)) keeps content off the edges. */
.ev-top > .wrap,
.ev-desktop .ev-layout.wrap,
.ev-desktop .ev-bar-inner.wrap { max-width: var(--maxw); }

/* ============================================================
   Booking modal (events only)
   ============================================================ */
.ev-modal { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.ev-modal[hidden] { display: none; }
.ev-modal-backdrop { position: absolute; inset: 0; background: rgba(20, 18, 14, .5); backdrop-filter: blur(2px); }
.ev-modal-panel {
  position: relative; width: min(1080px, 100%); max-height: calc(100vh - 48px);
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--card); border-radius: var(--radius-lg); box-shadow: 0 30px 80px -24px rgba(20, 18, 14, .5);
}
.ev-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--line);
}
.ev-modal-title { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.ev-modal-x {
  width: 36px; height: 36px; border: 0; background: transparent; color: var(--ink-soft);
  border-radius: 10px; cursor: pointer; display: grid; place-items: center;
}
.ev-modal-x:hover { background: var(--bg-alt); color: var(--ink); }
.ev-modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: 24px; overflow: auto; }
.ev-modal-sub { font-size: 17px; font-weight: 700; margin-bottom: 16px; }

/* left: selected treatments */
.ev-modal-cart { display: flex; flex-direction: column; background: var(--bg-alt); border-radius: var(--radius-lg); padding: 22px; }
.ev-modal-items { display: flex; flex-direction: column; gap: 12px; }
.ev-modal-item { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 40px 16px 18px; }
.ev-modal-item-x {
  position: absolute; top: 12px; right: 12px; width: 22px; height: 22px;
  border: 1px solid var(--line); background: var(--card); color: var(--ink-soft);
  border-radius: 7px; cursor: pointer; display: grid; place-items: center;
}
.ev-modal-item-x:hover { border-color: var(--accent); color: var(--accent); }
.ev-modal-item-name { font-weight: 600; line-height: 1.4; }
.ev-modal-item-price { margin-top: 8px; }
.ev-modal-was { color: var(--ink-faint); font-size: 13px; }
.ev-modal-now { font-size: 18px; font-weight: 700; }
.ev-modal-empty { color: var(--ink-soft); font-size: 14px; padding: 8px 2px; }
.ev-modal-total {
  margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between;
}
.ev-modal-total-k { color: var(--ink-soft); }
.ev-modal-total-v { color: var(--accent); font-size: 22px; font-weight: 800; }

/* right: required fields */
.ev-modal-form { display: flex; flex-direction: column; gap: 12px; }
.ev-fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ev-fld-wrap { position: relative; display: block; }
.ev-fld {
  width: 100%; box-sizing: border-box; padding: 13px 14px; font: inherit; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; outline: none;
}
.ev-fld::placeholder { color: var(--ink-faint); }
.ev-fld:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.ev-fld-wrap .ev-fld { padding-right: 38px; }
.ev-fld[readonly] { cursor: pointer; background: var(--card); }
.ev-fld-ic { position: absolute; top: 50%; right: 13px; transform: translateY(-50%); color: var(--ink-faint); pointer-events: none; }

/* datepicker popup */
.ev-dp {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 20; width: 252px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 40px -16px rgba(20, 18, 14, .35); padding: 12px;
}
.ev-dp[hidden] { display: none; }
.ev-dp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.ev-dp-title { font-size: 14px; font-weight: 700; }
.ev-dp-nav {
  width: 28px; height: 28px; border: 1px solid var(--line); background: var(--card); color: var(--ink);
  border-radius: 8px; cursor: pointer; font-size: 16px; line-height: 1; display: grid; place-items: center;
}
.ev-dp-nav:hover { border-color: var(--accent); color: var(--accent); }
.ev-dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.ev-dp-dow { text-align: center; font-size: 11px; font-weight: 600; color: var(--ink-faint); padding: 4px 0; }
.ev-dp-cell {
  aspect-ratio: 1; border: 0; background: transparent; color: var(--ink); font: inherit; font-size: 13px;
  border-radius: 8px; cursor: pointer;
}
.ev-dp-cell:not(.empty):not(.disabled):hover { background: var(--accent-tint); color: var(--accent-deep); }
.ev-dp-cell.empty { cursor: default; }
.ev-dp-cell.disabled { color: var(--ink-faint); opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* time <select> while no date chosen / loading */
.ev-fld-select:disabled { color: var(--ink-faint); cursor: not-allowed; background-color: var(--bg-alt); }
.ev-fld-select { 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='%239a9284' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; }
.ev-fld-area { resize: vertical; min-height: 92px; }
.ev-fld-invalid { border-color: var(--accent); background: var(--accent-tint); }
.ev-modal-agree { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-soft); margin-top: 2px; }
.ev-modal-agree a { color: var(--accent-deep); }
.ev-modal-submit { margin-top: 6px; padding: 15px; font-size: 15px; }
.ev-modal-submit:disabled { opacity: .5; pointer-events: none; }
.ev-modal-ok { margin-top: 4px; color: var(--accent-deep); font-size: 14px; font-weight: 600; }

/* ============================================================
   MOBILE booking page (.evb-*) — page transition from the book CTA
   ============================================================ */
.evb { background: var(--bg); }
.evb-wrap { padding: 22px var(--pad) calc(96px + env(safe-area-inset-bottom)); }
.evb-head { margin-bottom: 8px; }
.evb-head-sub { font-size: 14px; font-weight: 700; color: var(--ink); }
.evb-head-title { font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--accent); line-height: 1.3; margin-top: 4px; }
.evb-sec { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--ink); margin: 26px 0 10px; }
.evb-chk { color: var(--accent); font-weight: 800; }
.evb-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px; }
.evb-card .ev-fld-select { width: 100%; }

/* inline calendar (reuse .ev-dp grid, drop the popup chrome) */
.evb-dp { position: static; width: 100%; box-shadow: none; border: 0; padding: 0; }
.evb-dp .ev-dp-cell.selected { background: var(--accent); color: #fff; }
.ev-dp-cell.selected { background: var(--accent); color: #fff; }

.evb-form { display: flex; flex-direction: column; gap: 12px; }

/* sticky footer: Previous | Book */
.evb-foot {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: stretch; gap: 0;
  background: var(--card); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -16px rgba(0,0,0,.3);
  padding-bottom: env(safe-area-inset-bottom);
}
.evb-foot-back {
  flex: 0 0 38%; border: none; background: var(--ink); color: #fff;
  font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer; padding: 18px;
}
.evb-foot-book { flex: 1; border-radius: 0; padding: 18px; font-size: 15px; font-weight: 700; }

/* this page is mobile-only; on wide screens centre it in a column */
@media (min-width: 760px) {
  .evb-wrap { max-width: 460px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .ev-modal { padding: 0; }
  .ev-modal-panel { width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
  .ev-modal-body { grid-template-columns: 1fr; }
}
