/* =========================================================
   Versailles — Aesthetic Home
   Chanel-inspired editorial · warm white + GOLD lettering
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Noto+Serif+Georgian:wght@400;500;600;700&family=Noto+Sans+Georgian:wght@200;300;400;500&display=swap');

/* ---------- Tokens ---------- */
:root {
  --paper: #ffffff;
  --warm-white: #faf7f1;
  --warm-white-2: #f3ece0;
  --ink: #2a2620;            /* dark warm — body text only */
  --ink-soft: #6f685c;
  --gold: #b8903d;
  --gold-soft: #cda761;
  --gold-bright: #d8b877;    /* on dark backgrounds */
  --gold-deep: #8a6a23;      /* headings / lettering */
  --gold-ink: #7c5f1f;
  --line: #e9e0d0;
  --line-soft: #f1ebdf;
  --dark: #211d17;

  --serif: 'Noto Serif Georgian', 'Cormorant Garamond', Georgia, serif;
  --serif-latin: 'Cormorant Garamond', 'Noto Serif Georgian', Georgia, serif;
  --sans: 'Noto Sans Georgian', 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1320px;
  --maxw-text: 760px;
  --gutter: clamp(20px, 5vw, 70px);
  --header-h: 118px;
  --header-h-sm: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h-sm); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans); font-weight: 300; color: var(--ink-soft);
  background: var(--paper); line-height: 1.75; letter-spacing: .2px; overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

/* ---------- Typography — GOLD lettering ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.16; letter-spacing: .4px; color: var(--gold-deep); overflow-wrap: break-word; }

.eyebrow { font-family: var(--sans); font-size: .68rem; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.display { font-size: clamp(2.1rem, 5vw, 3.8rem); }
.section-title { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.lead { font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--ink-soft); font-weight: 300; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }

.section { padding-block: clamp(70px, 11vw, 150px); }
.section--tint { background: var(--warm-white); }
.section--cream { background: var(--warm-white-2); }

.section-head { max-width: var(--maxw-text); margin: 0 auto clamp(46px, 6vw, 76px); text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head .lead { margin-top: 20px; }

.divider { width: 46px; height: 1px; background: var(--gold); margin: 24px auto 0; }

/* ---------- Underlined text links (Chanel CTA) ---------- */
.link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold-deep);
  padding-bottom: 6px; position: relative;
}
.link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold); transform-origin: right; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.link:hover::after { transform: scaleX(0); }
.link .arrow { transition: transform .4s ease; }
.link:hover .arrow { transform: translateX(5px); }
.link--light { color: var(--gold-bright); }
.link--light::after { background: var(--gold-bright); }

/* ---------- Bordered button (Chanel "SEE MORE") ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: .7rem; letter-spacing: 2.8px; text-transform: uppercase;
  padding: 16px 42px; border: 1px solid var(--gold); background: transparent; color: var(--gold-deep);
  transition: all .45s cubic-bezier(.2,.7,.2,1);
}
.btn:hover { background: var(--gold); color: #fff; }
.btn--solid { background: var(--gold); color: #fff; }
.btn--solid:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--light { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(0,0,0,.12); backdrop-filter: blur(2px); }
.btn--light:hover { background: var(--gold-bright); color: var(--dark); border-color: var(--gold-bright); }

/* =========================================================
   Header — centered logo
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0);
  /* fast bg fill so scrolling hero content (the V monogram) never shows through the nav */
  transition: background .12s ease, box-shadow .12s ease, padding .45s ease;
  padding-block: 22px;
}
.site-header.scrolled, .site-header.solid {
  background: rgba(255,255,255,.98); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); padding-block: 12px;
}
/* the hero V-monogram fades via inline style from main.js while scrolling,
   so it never collides with the fixed nav; keep the fade smooth */
.hero-logo { transition: opacity .15s linear; }

.nav { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.nav-top { display: flex; align-items: center; justify-content: center; position: relative; }

.brand { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.brand img { width: 46px; height: 46px; transition: width .4s ease, height .4s ease; }
.site-header.scrolled .brand img, .site-header.solid .brand img { width: 34px; height: 34px; }
.brand .name { font-family: var(--serif-latin); font-size: 1.85rem; letter-spacing: 8px; line-height: 1; color: var(--gold-deep); padding-left: 8px; }
.brand .tag { font-size: .6rem; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold); }
.site-header.scrolled .brand .name, .site-header.solid .brand .name { font-size: 1.55rem; }

.nav-actions { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 22px; }
.nav-actions .link { font-size: .76rem; letter-spacing: 2.2px; }

/* language switcher */
.lang-switch { display: inline-flex; align-items: center; }
.lang-switch button { font-family: var(--sans); font-size: .66rem; letter-spacing: 1.5px; color: var(--gold-ink);
  padding: 4px 9px; background: none; border: 0; cursor: pointer; position: relative; transition: color .3s; }
.lang-switch button + button::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 11px; background: var(--gold-soft); opacity: .5; }
.lang-switch button:hover { color: var(--gold-deep); }
.lang-switch button.active { color: var(--gold-deep); font-weight: 600; }
/* light variant over the transparent home hero */
.site-header:not(.scrolled):not(.solid) .lang-switch button { color: rgba(255,255,255,.7); }
.site-header:not(.scrolled):not(.solid) .lang-switch button.active { color: #fff; }
.site-header:not(.scrolled):not(.solid) .lang-switch button + button::before { background: rgba(255,255,255,.5); }

.nav-links { display: flex; gap: 22px; justify-content: center; margin-top: 20px; transition: margin .4s ease; }
.site-header.scrolled .nav-links { margin-top: 14px; }
.nav-links a { font-size: .78rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-ink); position: relative; padding: 4px 0; transition: color .3s; white-space: nowrap; }
/* mid-size desktops: tighten further so all 9 items stay on one line */
@media (max-width: 1280px) and (min-width: 1101px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: .72rem; letter-spacing: .9px; }
}
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* transparent header over dark hero (home) → light lettering */
.site-header:not(.scrolled):not(.solid) .brand .name,
.site-header:not(.scrolled):not(.solid) .brand .tag { color: var(--gold-bright); }
.site-header:not(.scrolled):not(.solid) .nav-links a { color: rgba(255,255,255,.85); }
.site-header:not(.scrolled):not(.solid) .nav-links a:hover,
.site-header:not(.scrolled):not(.solid) .nav-links a.active { color: var(--gold-bright); }
.site-header:not(.scrolled):not(.solid) .nav-actions .link { color: var(--gold-bright); }
.site-header:not(.scrolled):not(.solid) .nav-actions .link::after { background: var(--gold-bright); }
.site-header:not(.scrolled):not(.solid) .nav-toggle span { background: #fff; }
body.menu-open .nav-toggle span { background: var(--gold-deep); }

.nav-toggle { display: none; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 30px; height: 20px; z-index: 120; }
.nav-toggle span { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--gold-deep); transition: .35s; }
.nav-toggle span:nth-child(1) { top: 1px; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 17px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 9px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* =========================================================
   Image helper — photo on top of elegant gold fallback
   ========================================================= */
.ph { position: relative; overflow: hidden; background-color: var(--warm-white-2);
  background-image:
    radial-gradient(120% 90% at 30% 20%, rgba(184,144,61,.18), transparent 55%),
    repeating-linear-gradient(45deg, rgba(184,144,61,.06) 0 1px, transparent 1px 26px);
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.ph::after { content: attr(data-label); position: absolute; bottom: 18px; left: 0; right: 0; text-align: center;
  font-size: .56rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); z-index: 1; }
.ph .ph-mono { font-family: var(--serif-latin); font-size: clamp(3.5rem, 9vw, 7rem); color: var(--gold); opacity: .5; }
.ph .cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.ph--4by5 { aspect-ratio: 4/5; }
.ph--3by4 { aspect-ratio: 3/4; }
.ph--16by9 { aspect-ratio: 16/9; }
.ph--3by2 { aspect-ratio: 3/2; }

/* =========================================================
   Hero (home) — full-bleed photo + overlay
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: var(--header-h) var(--gutter) 90px; overflow: hidden;
  background: linear-gradient(160deg, var(--dark), #38301f);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .55; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(130% 115% at 50% 44%, rgba(22,17,11,.24), rgba(22,17,11,.40) 55%, rgba(22,17,11,.66) 100%); }
.hero-bg { object-position: 50% 35%; }
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-logo { width: clamp(86px, 12vw, 128px); height: auto; margin: 0 auto 28px; filter: drop-shadow(0 6px 24px rgba(0,0,0,.4)); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6.4vw, 5rem); line-height: 1.06; }
.hero h1 .latin { font-family: var(--serif-latin); font-weight: 500; letter-spacing: clamp(4px, 1.4vw, 14px); display: block; text-transform: uppercase; color: var(--gold-bright); }
.hero h1 .ka { font-size: .4em; letter-spacing: 6px; text-transform: uppercase; color: #fff; display: block; margin-top: 18px; font-family: var(--sans); font-weight: 300; opacity: .9; }
.hero .lead { margin: 28px auto 40px; max-width: 600px; color: rgba(255,255,255,.94); }
.hero .lead, .hero-line, .hero-tagline { text-shadow: 0 1px 22px rgba(20,16,10,.6); }
.hero-cta { display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 2; font-size: .56rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.65); }
.scroll-hint .line { width: 1px; height: 44px; background: linear-gradient(var(--gold-bright), transparent); animation: pulse 2.6s infinite; }
@keyframes pulse { 0%,100% { opacity: .25; transform: scaleY(.65); } 50% { opacity: 1; transform: scaleY(1); } }

/* =========================================================
   Full-bleed editorial PANELS (Chanel signature)
   ========================================================= */
.panel { position: relative; min-height: clamp(520px, 78vh, 880px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 90px var(--gutter); overflow: hidden;
  background: linear-gradient(160deg, #2c2519, #4a3c22); }
.panel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.panel::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,16,10,.30), rgba(20,16,10,.55)); }
.panel--soft::after { background: linear-gradient(180deg, rgba(20,16,10,.15), rgba(20,16,10,.42)); }
.panel-content { position: relative; z-index: 2; max-width: 640px; }
.panel-eyebrow { display: block; font-size: .68rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; }
.panel-title { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3.4rem); line-height: 1.1; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.panel-text { color: rgba(255,255,255,.85); margin-top: 18px; max-width: 480px; margin-inline: auto; }
.panel-content .btn { margin-top: 32px; }

/* =========================================================
   Inner page hero
   ========================================================= */
.page-hero { padding-top: calc(var(--header-h) + clamp(40px, 7vw, 90px)); padding-bottom: clamp(46px, 7vw, 86px); text-align: center;
  background: radial-gradient(130% 90% at 50% -10%, rgba(184,144,61,.12), transparent 52%), var(--paper); }
.page-hero .eyebrow { display: block; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
.page-hero .lead { max-width: 620px; margin: 20px auto 0; }
.page-hero .divider { margin-top: 30px; }

/* =========================================================
   Split editorial (about / inner)
   ========================================================= */
.editorial { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.editorial--reverse .ed-media { order: 2; }
.ed-media { position: relative; min-height: 460px; }
.ed-media .ph { position: absolute; inset: 0; aspect-ratio: auto; border: 0; }
.ed-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 7vw, 110px); background: var(--paper); }
.editorial--tint .ed-body { background: var(--warm-white); }
.editorial--cream .ed-body { background: var(--warm-white-2); }
.ed-body .eyebrow { display: block; margin-bottom: 18px; }
.ed-body h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
.ed-body p { margin-top: 22px; max-width: 460px; }
.ed-body .actions { margin-top: 38px; }

/* ---------- Rating ---------- */
.rating { display: inline-flex; align-items: center; gap: 16px; margin-top: 34px; padding: 16px 26px; border: 1px solid var(--line); background: var(--paper); }
.rating .score { font-family: var(--serif-latin); font-size: 2.6rem; line-height: 1; color: var(--gold-deep); }
.rating .stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.rating .stars + div { font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

/* =========================================================
   Tiles
   ========================================================= */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tile { background: var(--paper); padding: clamp(32px, 4.5vw, 56px); transition: background .4s ease; min-width: 0; }
.tile:hover { background: var(--warm-white); }
.tile .num { font-family: var(--serif-latin); font-size: 1.5rem; color: var(--gold); letter-spacing: 2px; }
.tile h3 { font-size: 1.4rem; margin-top: 14px; }
.tile p { margin-top: 14px; font-size: .95rem; }
.tile .link { margin-top: 24px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stats .num { font-family: var(--serif-latin); font-size: clamp(2.4rem, 5.5vw, 3.6rem); color: var(--gold-deep); }
.stats .lbl { font-size: .68rem; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

/* =========================================================
   PRICE MENU — clean, editorial, single column
   ========================================================= */
.menu { max-width: 820px; margin: 0 auto; }
.menu-cat { margin-top: clamp(64px, 9vw, 110px); }
.menu-cat:first-of-type { margin-top: 0; }
.menu-cat-head { text-align: center; margin-bottom: 44px; }
.menu-cat-head .eyebrow { display: block; margin-bottom: 14px; }
.menu-cat-head h3 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.menu-cat-head .sub { font-size: .8rem; letter-spacing: 1px; color: var(--ink-soft); margin-top: 8px; }

.menu { padding-inline: 20px; }
.menu-row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 21px 0; border-bottom: 1px solid var(--line-soft); position: relative; cursor: pointer; transition: padding-left .35s ease, box-shadow .35s ease; }
.menu-row:hover { padding-left: 16px; box-shadow: inset 3px 0 0 var(--gold); }
.menu-name { display: flex; flex-direction: column; min-width: 0; } /* min-width:0 → long Georgian names shrink+wrap instead of pushing the row off-screen */
.menu-name .t { color: var(--ink); font-size: 1.06rem; transition: color .3s; }
.menu-row:hover .menu-name .t { color: var(--gold-deep); }
.menu-name .d { font-size: .76rem; letter-spacing: .5px; color: var(--ink-soft); margin-top: 3px; }
.menu-price { font-family: var(--serif-latin); font-size: 1.5rem; color: var(--gold-deep); white-space: nowrap; }
.menu-price--note { font-family: var(--sans); font-size: .82rem; letter-spacing: .6px; color: var(--gold-ink);
  white-space: normal; text-align: right; max-width: 170px; line-height: 1.4; }
.menu-footnote { text-align: center; font-size: .8rem; color: var(--ink-soft); margin: 20px auto 0; max-width: 560px; line-height: 1.7; }

/* course cards */
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 28px; }
.course-grid .course-card { min-width: 0; }
.course-card { background: var(--paper); border: 1px solid var(--line); padding: 36px; display: flex; flex-direction: column; transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease; }
.course-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px -34px rgba(120,90,30,.4); border-color: var(--gold-soft); }
.course-card .ctype { font-size: .64rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.course-card h4 { font-size: 1.3rem; margin-top: 14px; line-height: 1.3; }
.course-card p { margin-top: 14px; font-size: .92rem; flex: 1; }
.course-card .c-price { font-family: var(--serif-latin); font-size: 1.85rem; color: var(--gold-deep); margin-top: 24px; }
.course-card .link { margin-top: 22px; }

.note { max-width: 820px; margin: 50px auto 0; padding: 24px 30px; border-left: 2px solid var(--gold); background: var(--warm-white); font-size: .92rem; }

/* =========================================================
   Services — sticky category nav + editorial banners
   ========================================================= */
.cat-nav { position: sticky; top: 112px; z-index: 60;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cat-nav-inner { display: flex; gap: 5px 20px; justify-content: center; flex-wrap: wrap;
  padding: 12px var(--gutter); max-width: var(--maxw); margin: 0 auto;
  -ms-overflow-style: none; scrollbar-width: none; }
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav a { white-space: nowrap; font-size: .8rem; letter-spacing: .7px; text-transform: uppercase;
  color: var(--gold-ink); padding: 3px 0; position: relative; transition: color .3s; }
.cat-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s ease; }
.cat-nav a:hover, .cat-nav a.active { color: var(--gold-deep); }
.cat-nav a:hover::after, .cat-nav a.active::after { width: 100%; }

.svc-cat { scroll-margin-top: 250px; padding-top: clamp(70px, 10vw, 130px); }
.anchor-alias { scroll-margin-top: 250px; } /* legacy #intimate → spa-care section */
.svc-cat:first-of-type { padding-top: clamp(48px, 6vw, 80px); }

.cat-banner { position: relative; width: 100%; height: clamp(240px, 33vw, 430px);
  overflow: hidden; display: flex; align-items: flex-end; justify-content: center;
  background: linear-gradient(160deg, #2c2519, #4a3c22); }
.cat-banner .ph { position: absolute; inset: 0; border: 0; aspect-ratio: auto; }
.cat-banner .ph::after { display: none; }
.cat-banner .ph .cover { z-index: 1; }
.cat-banner::after { content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(20,16,10,.12), rgba(20,16,10,.52)); }
.cat-banner-content { position: relative; z-index: 3; text-align: center; padding: 0 var(--gutter) clamp(30px, 4vw, 56px); }
.cat-banner-content .eyebrow { display: block; color: var(--gold-bright); margin-bottom: 12px; }
.cat-banner-content h2 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.1rem); text-shadow: 0 2px 26px rgba(0,0,0,.45); }

.svc-cat .menu { margin-top: clamp(44px, 6vw, 76px); }
.cat-lead { max-width: 560px; margin: -8px auto clamp(20px, 3vw, 34px); text-align: center; font-size: .9rem; color: var(--ink-soft); }

.menu-subhead { text-align: center; font-size: .7rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin: clamp(40px, 5vw, 60px) 0 22px; position: relative; }
.menu-subhead:first-child { margin-top: 0; }

.cat-cta { text-align: center; margin-top: clamp(38px, 5vw, 56px); }
.btn-mini { display: inline-flex; align-items: center; gap: 10px; font-size: .66rem; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--gold-soft); padding: 12px 30px; transition: all .4s ease; }
.btn-mini:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* =========================================================
   Booking forms
   ========================================================= */
.form-tabs { display: flex; justify-content: center; margin-bottom: 50px; border: 1px solid var(--gold-soft); width: fit-content; margin-inline: auto; }
.form-tab { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-ink); padding: 15px 36px; transition: .35s; }
.form-tab + .form-tab { border-left: 1px solid var(--gold-soft); }
.form-tab.active { background: var(--gold); color: #fff; }

.form-panel { display: none; max-width: 760px; margin: 0 auto; }
.form-panel.active { display: block; animation: fade .55s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.form-card { background: var(--paper); border: 1px solid var(--line); padding: clamp(30px, 5vw, 60px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-grid > .field { min-width: 0; } /* grid items must be allowed to shrink on phones */
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .68rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold-deep); }
.field input, .field select, .field textarea { width: 100%; min-width: 0; font-family: var(--sans); font-size: .95rem; color: var(--ink); padding: 14px 15px; border: 1px solid var(--line); background: var(--warm-white); transition: border-color .3s, background .3s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--paper); }
.field textarea { resize: vertical; min-height: 120px; }
.form-card .btn { margin-top: 34px; width: 100%; }
.form-note { font-size: .78rem; color: var(--ink-soft); margin-top: 18px; text-align: center; }

/* multi-service picker */
.svc-picker { border: 1px solid var(--line); max-height: 360px; overflow-y: auto; background: var(--warm-white); }
.svc-group { border-bottom: 1px solid var(--line); }
.svc-group:last-child { border-bottom: 0; }
.svc-group > summary { list-style: none; cursor: pointer; padding: 15px 18px; font-size: .8rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-deep); display: flex; align-items: center; justify-content: space-between;
  background: var(--paper); transition: background .3s; }
.svc-group > summary::-webkit-details-marker { display: none; }
.svc-group > summary::after { content: '+'; font-size: 1.1rem; color: var(--gold); font-weight: 400; }
.svc-group[open] > summary::after { content: '–'; }
.svc-group > summary:hover { background: var(--warm-white); }
.svc-sub { padding: 12px 18px 4px; font-size: .64rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.svc-row { display: flex; align-items: center; gap: 12px; padding: 11px 18px; cursor: pointer; border-top: 1px solid var(--line-soft); transition: background .2s; }
.svc-row:hover { background: var(--paper); }
.svc-row input { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }
.svc-row .svc-n { flex: 1; min-width: 0; color: var(--ink); font-size: .95rem; }
.svc-row .svc-p { font-family: var(--serif-latin); font-size: 1.1rem; color: var(--gold-deep); white-space: nowrap; }
.svc-row .svc-p.svc-p--note { font-family: var(--sans); font-size: .72rem; letter-spacing: .4px; color: var(--gold-ink); white-space: normal; text-align: right; }

.booking-total { display: flex; align-items: baseline; justify-content: space-between; margin-top: 20px; padding: 16px 18px;
  border: 1px solid var(--gold-soft); background: var(--paper); }
.booking-total span { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-deep); }
.booking-total strong { font-family: var(--serif-latin); font-size: 28px; color: #C9A961; font-weight: 600; }
.svc-note { font-size: .76rem; color: var(--ink-faint); margin-top: 10px; }
.svc-error { font-size: .82rem; color: #a14a3a; margin-top: 12px; display: none; }

/* account / auth */
.auth-wrap { max-width: 540px; margin: 0 auto; }
.auth-section { padding-top: calc(var(--header-h) + clamp(44px, 7vw, 84px)); padding-bottom: clamp(72px, 10vw, 130px); background: var(--warm-white); }
.auth-card { max-width: 460px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line);
  padding: clamp(34px, 6vw, 56px); text-align: center; box-shadow: 0 28px 70px -42px rgba(120,90,30,.32); }
.auth-logo { width: 54px; height: 54px; margin: 0 auto 18px; display: block; }
.auth-title { font-size: clamp(1.6rem, 3.6vw, 2.2rem); }
.auth-sub { color: var(--ink-soft); font-size: .92rem; margin: 8px 0 30px; }
.auth-card form { text-align: left; }
.auth-card .form-tabs { width: 100%; margin-bottom: 24px; }
.auth-card .form-tab { flex: 1; padding-inline: 12px; }
.auth-card .field + .field { margin-top: 18px; }
.auth-card .btn { width: 100%; margin-top: 24px; }
.profile-card .auth-logo { margin-bottom: 14px; }
.auth-loading { display: flex; justify-content: center; align-items: center; padding: clamp(60px, 12vh, 120px) 0; }
.auth-spin { width: 36px; height: 36px; border: 2px solid var(--line); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
/* account: profile bar + embedded chat */
.account-bar { max-width: 760px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.account-who { display: flex; align-items: center; gap: 14px; min-width: 0; }
.account-logo { width: 44px; height: 44px; flex-shrink: 0; }
.account-hi { font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.15; }
.account-meta { color: var(--ink-soft); font-size: .85rem; margin-top: 4px; word-break: break-word; }
.account-meta .dot { margin: 0 8px; color: var(--gold); }
.account-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.account-actions .btn { flex-shrink: 0; padding: 12px 28px; }
.chat-card--embed { height: clamp(440px, 60vh, 640px); }
@media (max-width: 600px) {
  .account-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .account-who { justify-content: center; }
  .account-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .account-actions .btn { width: 100%; }
  .chat-card--embed { height: clamp(420px, 66vh, 600px); }
}
.field-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.auth-msg { display: none; margin-top: 18px; padding: 13px 16px; font-size: .9rem; text-align: center; border: 1px solid transparent; }
.auth-msg.show { display: block; }
.auth-msg.error { color: #a14a3a; background: rgba(161,74,58,.06); border-color: rgba(161,74,58,.22); }
.auth-msg.ok { color: var(--gold-deep); background: var(--warm-white); border-color: var(--gold-soft); }
.profile-card { max-width: 540px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); padding: clamp(32px, 5vw, 60px); }
.profile-card h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.profile-row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line-soft); }
.profile-row:last-of-type { border-bottom: 0; }
.profile-row .k { font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.profile-row .v { color: var(--ink); font-size: 1.02rem; }
.profile-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.profile-actions .btn { flex: 1; min-width: 140px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

/* chat */
.chat-section { padding-top: calc(var(--header-h) + 20px); padding-bottom: 20px; background: var(--warm-white); }
.chat-card { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; overflow: hidden;
  height: calc(100svh - var(--header-h) - 40px); min-height: 440px;
  background: var(--paper); border: 1px solid var(--line); box-shadow: 0 28px 70px -44px rgba(120,90,30,.3); }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 14px 22px; border-bottom: 1px solid var(--line); background: var(--warm-white); }
.chat-head img { width: 36px; height: 36px; flex-shrink: 0; }
.chat-name { font-family: var(--serif-latin); letter-spacing: 1px; color: var(--gold-deep); font-size: 1.02rem; line-height: 1.1; }
.chat-status { font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.chat-back { margin-left: auto; font-size: .62rem; letter-spacing: 1.5px; }
.chat-body { flex: 1; overflow-y: auto; padding: 24px 22px; display: flex; flex-direction: column; gap: 14px; }
.chat-empty { margin: auto; text-align: center; color: var(--ink-soft); font-size: .92rem; max-width: 340px; line-height: 1.6; padding: 10px; }
.chat-empty-logo { display: block; width: 54px; height: 54px; margin: 0 auto 14px; }
.chat-empty-title { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-deep); margin-bottom: 10px; }
.chat-empty-text { color: var(--ink-soft); font-size: .92rem; line-height: 1.7; }
.msg { display: flex; flex-direction: column; max-width: 78%; animation: fade .4s ease; }
.msg--client { align-self: flex-end; align-items: flex-end; }
.msg--salon { align-self: flex-start; align-items: flex-start; }
.msg-who { font-size: .58rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.bubble { padding: 12px 16px; border-radius: 16px; font-size: .95rem; line-height: 1.55; white-space: pre-wrap; word-wrap: break-word; overflow-wrap: anywhere; }
.msg--client .bubble { background: var(--gold); color: #fff; border-bottom-right-radius: 4px; }
.msg--salon .bubble { background: var(--warm-white-2); color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.msg-time { font-size: .6rem; color: var(--ink-faint); margin-top: 5px; }
.chat-input { display: flex; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--line); background: var(--paper); }
.chat-input textarea { flex: 1; min-width: 0; resize: none; max-height: 120px; padding: 12px 14px; border: 1px solid var(--line);
  background: var(--warm-white); font-family: var(--sans); font-size: .95rem; color: var(--ink); line-height: 1.5; }
.chat-input textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.chat-send { width: 50px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: #fff; border: 0; cursor: pointer; transition: background .3s; }
.chat-send:hover { background: var(--gold-deep); }
.chat-send svg { width: 19px; height: 19px; }
@media (max-width: 600px) {
  .chat-section { padding-top: calc(var(--header-h) + 10px); padding-bottom: 10px; }
  .chat-card { height: calc(100svh - var(--header-h) - 20px); }
  .msg { max-width: 86%; }
  .chat-back { display: none; }
}

/* success / thank-you state */
.form-success { text-align: center; padding: clamp(52px, 8vw, 88px) clamp(28px, 5vw, 60px); animation: fade .55s ease; }
.success-mark { width: 66px; height: 66px; border-radius: 50%; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 26px;
  font-size: 1.7rem; color: var(--gold-deep); }
.form-success h3 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.form-success p { margin: 14px auto 0; max-width: 420px; color: var(--ink-soft); }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.info-item { display: flex; gap: 20px; align-items: flex-start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.info-item:first-child { padding-top: 0; }
.info-ico { font-family: var(--serif-latin); font-size: 1.5rem; color: var(--gold); width: 30px; flex-shrink: 0; text-align: center; }
.info-item .k { font-size: .64rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.info-item .v { font-size: 1.05rem; color: var(--ink); margin-top: 7px; }
.info-item .v a:hover { color: var(--gold-deep); }

.social-row { display: flex; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.info-item > div { min-width: 0; }
.social-row a { width: 46px; height: 46px; border: 1px solid var(--gold-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-deep); transition: .35s; }
.social-row a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.social-row svg { width: 18px; height: 18px; }

.map-wrap { border: 1px solid var(--line); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; filter: grayscale(.35) contrast(.95); }

.wa-float { position: fixed; right: 24px; bottom: 110px; z-index: 90; /* raised above the Botpress chat bubble (bottom-right) */ width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 32px -10px rgba(0,0,0,.45); transition: transform .3s; }

/* back-to-top: desktop sits above the WhatsApp float (right column), mobile bottom-left */
.to-top { position: fixed; right: 24px; bottom: 182px; z-index: 90; width: 48px; height: 48px; border-radius: 50%;
  background: #C9A961; color: #fff; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px -10px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease, visibility 0s .4s, background .3s ease; }
.to-top.show { opacity: 1; visibility: visible; transform: none; transition: opacity .4s ease, transform .4s ease, visibility 0s, background .3s ease; }
.to-top:hover { background: #B8912F; }
.to-top svg { width: 20px; height: 20px; }
@media (max-width: 1100px) {
  .to-top { right: auto; left: 16px; bottom: 20px; width: 46px; height: 46px; }
  /* services: when the selection bubble is showing bottom-left, hop above it */
  body:has(.select-bubble.show) .to-top { bottom: 88px; }
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* =========================================================
   CTA strip (dark) — layered warm gradient + soft gold glow
   ========================================================= */
.cta-strip { position: relative; overflow: hidden; color: #fff; text-align: center;
  background:
    radial-gradient(90% 130% at 50% -20%, rgba(216,184,119,.16), transparent 55%),
    radial-gradient(75% 100% at 50% 115%, rgba(184,144,61,.12), transparent 60%),
    linear-gradient(160deg, #221c12, #2e2515 48%, #191510); }
.cta-strip::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, rgba(216,184,119,.03) 0 1px, transparent 1px 24px); }
.cta-strip::after { content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: min(420px, 60%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,184,119,.55), transparent); }
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip .eyebrow { color: var(--gold-bright); display: block; margin-bottom: 18px; }
.cta-strip h2 { color: var(--gold-bright); font-size: clamp(1.9rem, 4vw, 3rem); }
.cta-strip .lead { color: rgba(255,255,255,.72); margin: 22px auto 40px; max-width: 520px; }
.cta-strip .divider { background: var(--gold-bright); }
.cta-strip .hero-cta { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--warm-white); border-top: 1px solid var(--line); padding-block: clamp(56px, 8vw, 90px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-col h4 { font-family: var(--sans); font-size: .66rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; color: var(--ink-soft); font-size: .92rem; margin-bottom: 11px; }
.footer-col a { transition: color .3s; }
.footer-col a:hover { color: var(--gold-deep); }
.footer-brand .brand { align-items: flex-start; margin-bottom: 18px; }
.footer-brand .brand .name { letter-spacing: 5px; }
.footer-brand p { max-width: 290px; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .74rem; color: var(--ink-soft); letter-spacing: .5px; }

/* =========================================================
   Reveal
   ========================================================= */
/* FAIL-SAFE: content is visible by default. The scroll-reveal start state is
   applied only when js/city.js has confirmed scripting works (html.js), so a
   blocked/failed script can never leave the page blank. */
.reveal { transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1); }
html.js .reveal { opacity: 0; transform: translateY(24px); }
/* must out-specify the rule above (html.js .reveal), hence the html.js prefix */
html.js .reveal.in, .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  /* html.js prefix so this still beats `html.js .reveal` */
  html.js .reveal, .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Editorial polish — air, typography, motion
   ========================================================= */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
h1, h2, h3, h4 { line-height: 1.13; }
.hero h1 { line-height: 1.05; }
.lead { line-height: 1.85; }
.eyebrow { letter-spacing: 5px; }

/* more breathing room */
.section { padding-block: clamp(84px, 12vw, 175px); }
.section-head { margin-bottom: clamp(54px, 7vw, 88px); }
.svc-cat { padding-top: clamp(84px, 11vw, 150px); }
.menu-row { padding: 22px 0; }

/* gentle, cohesive image motion on hover */
.panel-img, .cat-banner .ph .cover, .ed-media .ph .cover {
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1); will-change: transform; backface-visibility: hidden;
}
.panel:hover .panel-img,
.cat-banner:hover .ph .cover,
.ed-media:hover .ph .cover { transform: scale(1.055); }

/* consistent legibility on imagery */
.panel-title, .cat-banner-content h2, .hero h1 { text-shadow: 0 2px 34px rgba(20,16,10,.42); }
.panel-eyebrow, .cat-banner-content .eyebrow { text-shadow: 0 1px 20px rgba(20,16,10,.4); }

/* refined link/arrow motion */
.link .arrow { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.btn, .btn-mini, .btn--light { transition: all .5s cubic-bezier(.2,.7,.2,1); }

/* =========================================================
   Payment (booking) — scaffold for future BoG iPay / TBC E-Commerce
   ========================================================= */
.pay-method { margin-top: 8px; }
.pay-method-label { display: block; font-family: var(--sans); font-size: .72rem; letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.pay-options { display: flex; flex-wrap: wrap; gap: 14px; }
.pay-opt { display: inline-flex; align-items: center; gap: 9px; flex: 1; min-width: 168px; padding: 13px 15px; border: 1px solid #E5E5E5; border-radius: 8px; cursor: pointer; font-size: .95rem; color: var(--ink); transition: border-color .3s ease, background .3s ease; }
.pay-opt:hover { border-color: var(--gold-soft); }
.pay-opt input { accent-color: #C9A961; width: 16px; height: 16px; flex-shrink: 0; }
.pay-opt:has(input:checked) { border-color: #C9A961; background: #fcf9f1; }

.card-fields { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); animation: fade .4s ease; }
.card-fields-title { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-deep); margin-bottom: 16px; }
.card-fields .field { margin-bottom: 16px; }
.card-fields label { display: block; font-size: .74rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.card-fields input { width: 100%; font-family: var(--sans); font-size: .98rem; color: var(--ink); background: #fff; border: 1px solid #E5E5E5; border-radius: 8px; padding: 12px 14px; transition: border-color .3s ease, box-shadow .3s ease; }
.card-fields input::placeholder { color: #b8b1a3; letter-spacing: .5px; }
.card-fields input:focus { outline: none; border-color: #C9A961; box-shadow: 0 0 0 3px rgba(201,169,97,.14); }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.card-input { position: relative; }
.card-brands { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: flex; gap: 5px; pointer-events: none; }
.card-brands .cb { width: 30px; height: 20px; }
.card-input #pay-number { padding-right: 118px; }
.card-cvc-ic { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.card-cvc-ic svg { width: 22px; height: 22px; display: block; }
.card-input #pay-cvc { padding-right: 42px; }

.card-fields input.invalid { border-color: #d0021b; }
.card-fields input.invalid:focus { box-shadow: 0 0 0 3px rgba(208,2,27,.12); }
.card-err { display: none; margin: 6px 0 0; font-size: .78rem; color: #d0021b; }
.card-err.show { display: block; }

.btn--pay { width: 100%; margin-top: 6px; background: #C9A961; color: #fff; border: 0; padding: 15px 20px; border-radius: 8px; cursor: pointer; font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; transition: background .3s ease; }
.btn--pay:hover { background: #B8912F; }
.btn--pay:disabled { opacity: .6; cursor: default; }
.pay-secure { text-align: center; margin: 14px 0 0; font-size: .74rem; letter-spacing: .4px; color: var(--ink-soft); }

/* =========================================================
   Services → Booking selection (+ buttons, floating bubble, toast)
   ========================================================= */
.menu-name { flex: 1; }
.svc-add { width: 28px; height: 28px; flex-shrink: 0; padding: 0; border: 1.5px solid #C9A961; border-radius: 50%;
  background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease, border-color .2s ease; }
.svc-add::before { content: '+'; color: #C9A961; font-family: var(--sans); font-size: 1.15rem; line-height: 1; transition: color .2s ease; }
.svc-add:hover { background: #C9A961; }
.svc-add:hover::before { color: #fff; }
.menu-row.selected .svc-add { background: #C9A961; border-color: #C9A961; animation: svcPulse 1.5s ease infinite; }
.menu-row.selected .svc-add::before { content: '✓'; color: #fff; font-size: .95rem; }
@keyframes svcPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,97,.45); } 50% { box-shadow: 0 0 0 5px rgba(201,169,97,0); } }

.select-bubble { position: fixed; left: 20px; bottom: 20px; z-index: 95; display: flex; align-items: center; gap: 14px;
  background: #C9A961; color: #fff; padding: 12px 20px; border-radius: 28px; box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transform: translateY(160%); opacity: 0; transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .4s ease; pointer-events: none; }
.select-bubble.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.select-count { font-family: var(--sans); font-size: .9rem; letter-spacing: .3px; white-space: nowrap; }
.select-book { color: #fff; font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .5px;
  text-decoration: none; white-space: nowrap; padding-left: 14px; border-left: 1px solid rgba(255,255,255,.4); }
.select-book:hover { text-decoration: underline; }

.svc-toast { position: fixed; left: 50%; top: 84px; transform: translateX(-50%) translateY(-14px); z-index: 130;
  background: var(--gold-deep); color: #fff; padding: 12px 22px; border-radius: 999px; font-size: .88rem;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.4); opacity: 0; transition: opacity .35s ease, transform .35s ease; pointer-events: none; }
.svc-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   Setmore online-booking CTA (booking page)
   ========================================================= */
.setmore-cta { text-align: center; margin: 0 auto 42px; max-width: 640px; }
.btn--setmore { display: inline-block; max-width: 100%; background: #C9A961; color: #fff; font-family: var(--sans);
  font-size: clamp(.92rem, 2.2vw, 1.08rem); font-weight: 600; letter-spacing: .4px; line-height: 1.4;
  padding: 18px 40px; border-radius: 12px; text-decoration: none; cursor: pointer;
  box-shadow: 0 12px 30px -12px rgba(201,169,97,.65); transition: background .3s ease, transform .3s ease; }
.btn--setmore:hover { background: #B8912F; transform: translateY(-2px); }
.setmore-note { margin: 16px 0 0; font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 520px) { .btn--setmore { display: block; padding: 16px 22px; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .editorial--reverse .ed-media { order: 0; }
  .ed-media { min-height: 60vw; }
  .tiles { grid-template-columns: 1fr; }
}
/* hamburger kicks in early (≤1100px) — 9 nav items don't fit on tablets */
@media (max-width: 1100px) {
  :root { --header-h: 64px; }
  .site-header { padding-block: 0; height: var(--header-h-sm); display: flex; align-items: center; }
  .site-header.scrolled, .site-header.solid { padding-block: 0; }
  .nav-actions { gap: 0; }
  .nav-actions .link { display: none; }
  .lang-switch button { font-size: .62rem; padding: 4px 7px; }
  .nav-toggle { display: block; }
  /* compact, left-aligned brand so it fits the 64px bar and never overlaps the language switch */
  .nav-top { justify-content: flex-start; }
  .brand { flex-direction: row; align-items: center; gap: 8px; margin-left: 42px; text-align: left; }
  .brand .tag { display: none; }
  .site-header .brand img,
  .site-header.solid .brand img,
  .site-header.scrolled .brand img { width: 28px; height: 28px; }
  .site-header .brand .name,
  .site-header.solid .brand .name,
  .site-header.scrolled .brand .name { font-size: 1.15rem; letter-spacing: 3px; padding-left: 0; }
  .nav-toggle { z-index: 10000; } /* stays above the drawer so the X can close it */
  .nav-links { position: fixed; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; min-height: 100vh;
    background: #fff; flex-direction: column; justify-content: center; align-items: center; gap: 4px; margin: 0; padding: 24px;
    transform: translateX(100%); transition: transform .4s ease; z-index: 9999; overflow-y: auto; }
  body.menu-open .nav-links { transform: none; }
  body.menu-open { overflow: hidden; } /* lock page scroll while the menu is open */
  .nav-links a { font-size: 1.1rem; letter-spacing: 2.5px; padding: 16px 24px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-tabs { width: 100%; }
  .form-tab { flex: 1; padding-inline: 14px; }
  .cat-nav { top: 60px; }
  /* one scrollable row on mobile — full names stay readable, finger-swipeable */
  .cat-nav-inner { justify-content: flex-start; gap: 22px; flex-wrap: nowrap; overflow-x: auto; }
  .svc-cat { scroll-margin-top: 124px; }
  .anchor-alias { scroll-margin-top: 124px; }
}
@media (max-width: 520px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero-cta, .cta-strip .hero-cta { flex-direction: column; gap: 18px; }
  .footer-bottom { flex-direction: column; }
  .menu-price { font-size: 1.3rem; }
  .menu-price--note { font-size: .78rem; } /* the 1.3rem bump above must not inflate text prices */
  .menu-row { gap: 14px; }
  .menu { padding-inline: 6px; }
  .section-title { font-size: clamp(1.65rem, 7vw, 2.2rem); } /* long Georgian words fit ≤380px screens */
}

/* =========================================================
   Booking — auth gate (forms are for signed-in users only)
   ========================================================= */
.booking-auth { max-width: 560px; margin: 0 auto 46px; text-align: center; background: var(--paper);
  border: 1px solid var(--line); padding: clamp(36px, 6vw, 60px);
  box-shadow: 0 28px 70px -42px rgba(120,90,30,.25); }
.booking-auth h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.booking-auth p { margin: 14px auto 0; max-width: 400px; color: var(--ink-soft); font-size: .95rem; }
.booking-auth .btn { margin-top: 26px; }

/* =========================================================
   Loyalty — discount cards + visit counter
   ========================================================= */
.loyalty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1060px; margin: 0 auto; }
.tier-card { position: relative; background: var(--paper); border: 1px solid var(--line); text-align: center;
  padding: clamp(36px, 4.5vw, 54px) 28px; overflow: hidden;
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease; }
.tier-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--tier-c, var(--gold)); }
.tier-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px -34px rgba(120,90,30,.4); border-color: var(--gold-soft); }
.tier-card--bronze { --tier-c: #b08d57; }
.tier-card--silver { --tier-c: #a7abb4; }
.tier-card--gold { --tier-c: #C9A961; border-color: #C9A961; box-shadow: 0 22px 54px -30px rgba(201,169,97,.55); }
.tier-tag { font-size: .68rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); }
.tier-card--silver .tier-tag { color: #8d929c; }
.tier-disc { font-family: var(--serif-latin); font-size: clamp(3rem, 6vw, 4.2rem); line-height: 1; color: var(--gold-deep); margin-top: 18px; }
.tier-card--gold .tier-disc { color: #C9A961; }
.tier-req { font-size: .7rem; letter-spacing: 2.4px; text-transform: uppercase; color: var(--ink-soft); margin-top: 12px; }
.tier-card p { font-size: .92rem; margin-top: 18px; }
.tier-vip { position: absolute; top: 14px; right: 14px; font-size: .6rem; letter-spacing: 2px;
  padding: 5px 12px; background: #C9A961; color: #fff; border-radius: 999px; }

.loy-panel { max-width: 640px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line);
  padding: clamp(34px, 5vw, 56px); }
.loy-total-num { font-family: var(--serif-latin); font-size: clamp(3.6rem, 9vw, 5.2rem); line-height: 1; color: #C9A961; text-align: center; }
.loy-total-lbl { text-align: center; font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-top: 10px; }
.loy-tier-now { text-align: center; margin-top: 16px; color: var(--ink-soft); font-size: .95rem; }
.loy-tier-now strong { color: var(--gold-deep); font-weight: 600; }
.loy-bar-wrap { margin-top: 32px; }
.loy-bar-head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: .72rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-soft); }
.loy-bar { height: 10px; margin-top: 10px; background: var(--warm-white-2); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.loy-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, #C9A961, #B8912F); transition: width 1s cubic-bezier(.2,.7,.2,1); }
.loy-maxed { text-align: center; color: var(--gold-deep); font-size: .95rem; margin-bottom: 12px; }
.loy-breakdown { margin-top: 40px; }
.loy-breakdown h3 { font-size: 1.15rem; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.loy-row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.loy-row .n { color: var(--ink); font-size: .95rem; }
.loy-row .c { font-family: var(--serif-latin); font-size: 1.2rem; color: var(--gold-deep); white-space: nowrap; }
.loy-empty { text-align: center; color: var(--ink-soft); margin-top: 26px; }
.loy-err { text-align: center; color: #a14a3a; }
@media (max-width: 900px) { .loyalty-grid { grid-template-columns: 1fr; max-width: 460px; } }

/* =========================================================
   Motion — hero entrance, hover lift/zoom (soft, premium)
   ========================================================= */
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
html.js .hero .hero-logo { animation: heroIn .8s cubic-bezier(.22,.61,.36,1) both; }
/* Safety net for the hero entrance: these animations use fill-mode `both`, so
   an animation that never advances (throttled in-app webview) would hold the
   hero at opacity 0. js/city.js sets html.anim-safe a few seconds in — long
   after a healthy run has finished — which forces the finished state. */
html.anim-safe .hero-logo, html.anim-safe .hero h1, html.anim-safe .hero .lead,
html.anim-safe .hero .hero-cta, html.anim-safe .hero-tagline, html.anim-safe .hero-line {
  animation: none !important; opacity: 1 !important; transform: none !important;
}
html.js .hero h1        { animation: heroIn .8s cubic-bezier(.22,.61,.36,1) .15s both; }
html.js .hero .lead     { animation: heroIn .8s cubic-bezier(.22,.61,.36,1) .3s both; }
html.js .hero .hero-cta { animation: heroIn .8s cubic-bezier(.22,.61,.36,1) .45s both; }

/* cards lift softly on hover */
.tile { transition: background .4s ease, transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s ease; }
.tile:hover { transform: translateY(-6px); box-shadow: 0 24px 54px -34px rgba(120,90,30,.35); }

/* buttons grow slightly */
.btn:hover { transform: scale(1.03); }
.btn-mini:hover { transform: scale(1.03); }
.btn--setmore:hover { transform: translateY(-2px) scale(1.03); }
.btn--pay { transition: background .3s ease, transform .3s ease; }
.btn--pay:hover { transform: scale(1.02); }
.chat-send { transition: background .3s, transform .3s ease; }
.chat-send:hover { transform: scale(1.05); }

/* images zoom slowly inside any .ph frame (banners/editorial keep their own slower zoom) */
.ph .cover { transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.ph:hover .cover { transform: scale(1.05); }

/* =========================================================
   Unread chat badge (nav "აქაუნტი" link) — js/badge.js
   ========================================================= */
.nav-badge { position: absolute; top: -7px; right: -20px; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: #e0473d; color: #fff; font-family: var(--sans);
  font-size: 11px; font-weight: 600; line-height: 18px; letter-spacing: 0; text-transform: none;
  text-align: center; box-shadow: 0 2px 8px -2px rgba(224,71,61,.6); }
@media (max-width: 1100px) {
  .nav-badge { top: 10px; right: -4px; }
}

/* =========================================================
   Team cards (about + academy)
   ========================================================= */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)); gap: 28px; }
.team-grid .team-card { min-width: 0; }
.team-grid--2 { max-width: 640px; margin-inline: auto; }
.team-card { background: var(--paper); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s ease, border-color .45s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px -34px rgba(120,90,30,.4); border-color: var(--gold-soft); }
.team-photo { position: relative; aspect-ratio: 4 / 5; border: 0; border-bottom: 1px solid var(--line); }
.team-photo::after { display: none; } /* no data-label caption inside cards */
.team-photo .ph-mono { font-size: clamp(3rem, 7vw, 4.5rem); }
.team-body { padding: 24px 22px 28px; text-align: center; flex: 1; }
.team-card h3 { font-size: 1.25rem; line-height: 1.3; }
.team-role { font-size: .64rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-top: 9px; line-height: 1.7; }
.team-card p { font-size: .88rem; margin-top: 13px; color: var(--ink-soft); line-height: 1.7; }
.team-card .team-extra { font-size: .8rem; color: var(--ink-soft); border-top: 1px solid var(--line-soft); padding-top: 12px; }
.team-sub { text-align: center; margin: clamp(48px, 7vw, 76px) 0 34px; }
.team-sub span { font-size: .78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-deep); }
.team-sub .divider { margin-top: 16px; }

/* =========================================================
   Admin panel — premium dashboard system (scoped to .adm-body
   so the public pages' .form-tabs / .field styles stay untouched)
   ========================================================= */
.adm-body {
  --adm-gold: #C9A961;
  --adm-gold-lt: #D4AF6A;
  --adm-gold-pale: #E5D5A8;
  --adm-field-bg: #FBFAF7;
  --adm-field-line: #E8E0D0;
  --adm-card-shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px rgba(160,130,60,.10);
  --adm-card-shadow-hi: 0 2px 4px rgba(0,0,0,.05), 0 20px 46px rgba(160,130,60,.17);
  background: linear-gradient(170deg, #FAF7F0 0%, #F3EDE2 100%);
  background-attachment: fixed;
}
/* soft gold light-pool under the header */
.adm-body::before {
  content: ''; position: fixed; inset: 0 0 auto 0; height: 60vh; pointer-events: none; z-index: 0;
  background: radial-gradient(58% 70% at 50% 0%, rgba(201,169,97,.13), rgba(201,169,97,.04) 45%, transparent 72%);
}
.adm-body .auth-section { background: transparent; position: relative; z-index: 1; }
.adm-body .container { max-width: 1080px; }

/* ---------- shared surface ---------- */
.adm-body .adm-card,
.adm-body #adm-prices, .adm-body #adm-images, .adm-body #adm-contact,
.adm-body #adm-texts, .adm-body #adm-loyalty,
.adm-body .auth-card, .adm-body .booking-auth,
.adm-body .adm-tablewrap, .adm-body .inv-tablewrap, .adm-body .inv-bcard,
.adm-body .inv-empty {
  position: relative; background: #fff; border: 0; border-radius: 16px;
  box-shadow: var(--adm-card-shadow); overflow: hidden;
}
/* 3px gold rule across the top edge of every surface */
.adm-body .adm-card::before,
.adm-body #adm-prices::before, .adm-body #adm-images::before, .adm-body #adm-contact::before,
.adm-body #adm-texts::before, .adm-body #adm-loyalty::before,
.adm-body .auth-card::before, .adm-body .booking-auth::before,
.adm-body .adm-tablewrap::before, .adm-body .inv-tablewrap::before, .adm-body .inv-bcard::before,
.adm-body .inv-empty::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--adm-gold-pale), var(--adm-gold), var(--adm-gold-pale));
}
.adm-body .inv-bcard:hover, .adm-body .adm-tablewrap:hover, .adm-body .inv-tablewrap:hover {
  transform: translateY(-3px); box-shadow: var(--adm-card-shadow-hi);
}
.adm-body .inv-bcard, .adm-body .adm-tablewrap, .adm-body .inv-tablewrap {
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease;
}

/* ---------- page head ---------- */
.adm-body .adm-head { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.adm-body .adm-head h1 { font-family: var(--serif); font-size: clamp(1.7rem, 3.6vw, 2.35rem); letter-spacing: .3px; }
.adm-body .adm-head p { margin-top: 14px; color: var(--ink-soft); font-size: .84rem; line-height: 1.75; }
.adm-body .adm-head strong { color: var(--gold-deep); font-weight: 400; }

/* ---------- pill tab bar ---------- */
.adm-body .adm-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px;
  width: fit-content; max-width: 100%; margin: 0 auto 30px;
  padding: 6px; border: 0; border-radius: 999px; background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 22px rgba(160,130,60,.10);
}
.adm-body .adm-tabs .form-tab {
  flex: 0 0 auto; border: 0; border-radius: 999px; cursor: pointer; background: transparent;
  padding: 11px 22px; font-family: var(--sans); font-size: .68rem; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--gold-ink); white-space: nowrap;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.adm-body .adm-tabs .form-tab + .form-tab { border-left: 0; }
.adm-body .adm-tabs .form-tab:hover { background: rgba(201,169,97,.08); color: var(--gold-deep); }
.adm-body .adm-tabs .form-tab.active {
  background: linear-gradient(135deg, var(--adm-gold-lt), var(--adm-gold));
  color: #fff; box-shadow: 0 4px 14px rgba(201,169,97,.35);
}

/* ---------- panels ---------- */
.adm-body #adm-panel .form-panel { max-width: 100%; margin: 0 auto; }
.adm-body #adm-prices, .adm-body #adm-images, .adm-body #adm-contact,
.adm-body #adm-texts, .adm-body #adm-loyalty { padding: clamp(24px, 3.4vw, 38px); }
.adm-body #adm-bookings, .adm-body #adm-inventory { background: transparent; box-shadow: none; }
.adm-body .form-panel.active { animation: adm-panel-in .3s cubic-bezier(.22,.61,.36,1) both; }
@keyframes adm-panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* section title + 60px gold rule */
.adm-body .adm-sec-title {
  font-family: var(--serif); font-size: 1.35rem; letter-spacing: .4px; color: var(--gold-deep); margin-bottom: 18px;
}
.adm-body .adm-sec-title::after {
  content: ''; display: block; width: 60px; height: 1px; margin-top: 12px;
  background: linear-gradient(90deg, var(--adm-gold), rgba(201,169,97,.18));
}
.adm-body #adm-bookings .adm-sec-title, .adm-body #adm-inventory .adm-sec-title { margin-left: 2px; }

/* meta-style hint */
.adm-body .adm-hint {
  margin: 0 0 22px; padding: 0; background: transparent; border: 0;
  font-size: .78rem; line-height: 1.7; letter-spacing: .2px; color: var(--ink-soft); max-width: 640px;
}

/* ---------- rows: label on top, control below ---------- */
.adm-body .adm-row {
  display: grid; grid-template-columns: 1fr auto; gap: 10px 12px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line-soft);
}
.adm-body .adm-row:last-child { border-bottom: 0; }
.adm-body .adm-lab { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.adm-body .adm-name {
  font-family: var(--sans); font-size: .64rem; letter-spacing: 1.7px; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
}
.adm-body .adm-sub { font-size: .74rem; letter-spacing: .2px; color: var(--ink-soft); text-transform: none; }
.adm-body .adm-input {
  flex: none; width: 100%; min-width: 0; font-family: var(--sans); font-size: .95rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--adm-field-line); border-radius: 12px; background: var(--adm-field-bg);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.adm-body textarea.adm-input { grid-column: 1; resize: vertical; }
.adm-body .adm-input:focus {
  outline: none; border-color: var(--adm-gold); background: #fff;
  box-shadow: 0 0 0 4px rgba(201,169,97,.15);
}
.adm-body .adm-input::placeholder { color: #b9ae9c; }

/* ---------- buttons ---------- */
.adm-body .adm-save, .adm-body .inv-btn-primary {
  flex-shrink: 0; min-width: 120px; padding: 13px 22px; border: 0; border-radius: 12px; cursor: pointer;
  background: linear-gradient(135deg, var(--adm-gold-lt), var(--adm-gold)); color: #fff;
  font-family: var(--sans); font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(201,169,97,.35);
  transition: transform .2s ease, box-shadow .25s ease, filter .25s ease, background .25s ease;
}
.adm-body .adm-save:hover, .adm-body .inv-btn-primary:hover {
  transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 8px 22px rgba(201,169,97,.45);
}
.adm-body .adm-save:active, .adm-body .inv-btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(201,169,97,.3); }
.adm-body .adm-save:disabled, .adm-body .inv-btn-primary:disabled { opacity: .6; cursor: default; transform: none; box-shadow: none; }
/* success / error states as soft pills — snap (no colour transition, the
   gradient would drop to transparent mid-way) and pop into place instead */
.adm-body .adm-save.ok, .adm-body .adm-reset.ok {
  background-image: none; background-color: #E8F6ED; color: #2C7A4B; border-color: transparent;
  box-shadow: none; transition: none; animation: adm-pop .32s cubic-bezier(.22,.61,.36,1);
}
.adm-body .adm-save.err, .adm-body .adm-reset.err {
  background-image: none; background-color: #FDEBEA; color: #C0392B; border-color: transparent;
  box-shadow: none; transition: none; animation: adm-pop .32s cubic-bezier(.22,.61,.36,1);
}
@keyframes adm-pop { 0% { transform: scale(.9); opacity: .5; } 60% { transform: scale(1.05); } 100% { transform: scale(1); opacity: 1; } }
/* secondary */
.adm-body .adm-reset {
  padding: 13px 20px; border: 1px solid rgba(201,169,97,.5); border-radius: 12px; background: #fff;
  color: var(--gold-deep); font-family: var(--sans); font-size: .68rem; letter-spacing: 1.3px;
  text-transform: uppercase; cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
}
.adm-body .adm-reset:hover { background: rgba(201,169,97,.08); border-color: var(--adm-gold); transform: translateY(-1px); }
.adm-body .adm-reset:disabled { opacity: .55; cursor: default; transform: none; }

/* ---------- collapsible groups (prices) ---------- */
.adm-body .adm-group {
  border: 1px solid var(--line-soft); border-radius: 14px; background: var(--adm-field-bg);
  margin-bottom: 12px; overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease;
}
.adm-body .adm-group:hover { border-color: rgba(201,169,97,.4); }
.adm-body .adm-group[open] { background: #fff; box-shadow: 0 6px 20px rgba(160,130,60,.08); border-color: rgba(201,169,97,.35); }
.adm-body .adm-group > summary {
  list-style: none; cursor: pointer; padding: 16px 20px; font-size: .68rem; letter-spacing: 1.7px;
  text-transform: uppercase; color: var(--gold-deep); display: flex; justify-content: space-between;
  align-items: center; gap: 12px; transition: background .25s ease;
}
.adm-body .adm-group > summary:hover { background: rgba(201,169,97,.06); }
.adm-body .adm-group > summary::-webkit-details-marker { display: none; }
.adm-body .adm-group > summary::after {
  content: ''; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  background: rgba(201,169,97,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A961' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/11px no-repeat;
  transition: transform .3s ease;
}
.adm-body .adm-group[open] > summary::after { transform: rotate(180deg); }
.adm-body .adm-group .adm-row { padding-inline: 20px; }
.adm-body .adm-group .adm-row:last-child { border-bottom: 0; padding-bottom: 18px; }

/* ---------- image manager ---------- */
.adm-body .adm-img-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 0; border-bottom: 1px solid var(--line-soft);
}
.adm-body .adm-img-row:last-child { border-bottom: 0; }
.adm-body .adm-thumb {
  width: 92px; height: 64px; object-fit: cover; border: 1px solid var(--adm-field-line);
  border-radius: 12px; background: var(--adm-field-bg); flex-shrink: 0;
}
.adm-body .adm-img-row .adm-lab { flex: 1 1 200px; grid-column: auto; }
.adm-body .adm-img-btns { display: flex; gap: 8px; flex-shrink: 0; }
.adm-body .adm-upload { display: inline-flex; align-items: center; justify-content: center; }
.adm-body .adm-upload.busy { opacity: .7; pointer-events: none; }

/* ---------- bookings ---------- */
.adm-body .adm-branch-head { display: flex; align-items: baseline; gap: 12px; margin: 26px 2px 12px; }
.adm-body .adm-branch-head h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-deep); }
.adm-body .adm-branch-count { font-size: .64rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--adm-gold); }
.adm-body .adm-tablewrap { overflow-x: auto; }
.adm-body .adm-table { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 640px; }
.adm-body .adm-table th {
  text-align: left; background: rgba(201,169,97,.07); color: var(--gold-deep);
  font-family: var(--sans); font-weight: 500; font-size: .6rem; letter-spacing: 1.8px; text-transform: uppercase;
  padding: 15px 18px; border-bottom: 1px solid var(--line-soft); white-space: nowrap;
}
.adm-body .adm-table td { padding: 15px 18px; border-bottom: 1px solid var(--line-soft); vertical-align: top; color: var(--ink); }
.adm-body .adm-table tbody tr:last-child td { border-bottom: 0; }
.adm-body .adm-table tbody tr { transition: background .22s ease; }
.adm-body .adm-table tbody tr:hover { background: rgba(201,169,97,.05); }

/* ---------- login / denied cards ---------- */
.adm-body .auth-card, .adm-body .booking-auth { padding: clamp(30px, 4vw, 44px); text-align: center; }
.adm-body .auth-title { font-family: var(--serif); }
.adm-body .auth-card .field input {
  border-radius: 12px; background: var(--adm-field-bg); border: 1px solid var(--adm-field-line);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.adm-body .auth-card .field input:focus { border-color: var(--adm-gold); background: #fff; box-shadow: 0 0 0 4px rgba(201,169,97,.15); }
.adm-body .auth-card .field label {
  font-size: .62rem; letter-spacing: 1.7px; text-transform: uppercase; color: var(--gold-deep);
}
.adm-body .auth-card .btn--solid {
  border: 0; border-radius: 12px; background: linear-gradient(135deg, var(--adm-gold-lt), var(--adm-gold));
  box-shadow: 0 4px 14px rgba(201,169,97,.35); transition: transform .2s ease, box-shadow .25s ease, filter .25s ease;
}
.adm-body .auth-card .btn--solid:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 8px 22px rgba(201,169,97,.45); }

@media (max-width: 700px) {
  .adm-body .adm-tabs { border-radius: 20px; padding: 8px; gap: 6px; width: 100%; }
  .adm-body .adm-tabs .form-tab { flex: 1 1 auto; padding: 11px 14px; font-size: .62rem; letter-spacing: 1.1px; }
  .adm-body .adm-row { grid-template-columns: 1fr; }
  .adm-body .adm-save, .adm-body .adm-reset { width: 100%; }
  .adm-body .adm-img-btns { width: 100%; }
  .adm-body .adm-img-btns .adm-save, .adm-body .adm-img-btns .adm-reset { flex: 1; width: auto; min-width: 0; }
  .adm-body #adm-prices, .adm-body #adm-images, .adm-body #adm-contact,
  .adm-body #adm-texts, .adm-body #adm-loyalty { padding: 22px 18px; border-radius: 14px; }
}

/* =========================================================
   Products — coming soon
   ========================================================= */
.coming-soon { max-width: 640px; margin: 0 auto; text-align: center;
  padding: clamp(40px, 8vw, 90px) 20px; }
.coming-soon .cs-star { display: block; font-size: 1.5rem; color: var(--gold); margin-bottom: 20px; }
.coming-soon h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
.coming-soon .divider { margin-top: 26px; }
.coming-soon p { margin-top: 24px; color: var(--ink-soft); }

/* =========================================================
   Brand concept blocks — hero tagline + home intro (index),
   concept / approach / directions / academy / standard / vision (about)
   ========================================================= */
.hero-tagline { margin-top: 26px; font-size: .7rem; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold-bright); }
.hero-line { margin-top: 14px; font-size: clamp(1.02rem, 2.4vw, 1.4rem); letter-spacing: .6px; color: #fff; opacity: .96; }
html.js .hero .hero-tagline { animation: heroIn .8s cubic-bezier(.22,.61,.36,1) .22s both; }
html.js .hero .hero-line { animation: heroIn .8s cubic-bezier(.22,.61,.36,1) .3s both; }

.prose { max-width: var(--maxw-text); margin: 0 auto; text-align: center; }
.prose p { line-height: 1.9; }
.prose p + p { margin-top: 20px; }
.prose-accent { color: var(--gold-deep); }

.steps-flow { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 14px 34px; max-width: 980px; margin: 44px auto 0; padding: 0; counter-reset: step; }
.steps-flow li { position: relative; counter-increment: step; border: 1px solid var(--line); background: var(--paper); padding: 14px 20px; font-size: .82rem; letter-spacing: .6px; text-align: center; min-width: 0; }
.steps-flow li::before { content: counter(step, decimal-leading-zero); display: block; font-family: var(--serif-latin); font-size: .72rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 6px; }
.steps-flow li:not(:last-child)::after { content: '→'; position: absolute; right: -26px; top: 50%; transform: translateY(-50%); color: var(--gold); }
.steps-note { margin-top: 28px; text-align: center; font-size: .86rem; letter-spacing: .5px; color: var(--gold-deep); }
@media (max-width: 600px) {
  .steps-flow { flex-direction: column; align-items: stretch; gap: 30px; }
  .steps-flow li:not(:last-child)::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -26px; transform: translateX(-50%); }
}

.dir-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 880px; margin: 0 auto; padding: 0; }
.dir-list li { border: 1px solid var(--line); background: var(--paper); padding: 11px 20px; font-size: .82rem; letter-spacing: .6px; min-width: 0; }

.acad-block { max-width: 880px; margin: 44px auto 0; text-align: center; }
.acad-block h3 { font-family: var(--sans); font-size: .72rem; letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }
.acad-block .dir-list { margin-top: 20px; }

.std-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.std-card { background: var(--paper); padding: clamp(28px, 3.5vw, 44px); min-width: 0; }
.std-latin { font-family: var(--serif-latin); font-size: .8rem; letter-spacing: 3px; color: var(--gold); }
.std-card h3 { margin-top: 12px; font-size: 1.15rem; }
.std-card p { margin-top: 12px; font-size: .9rem; }

/* specialists: single-card city grid (Batumi) + footer city labels */
.team-grid--1 { max-width: 320px; margin-inline: auto; }
.footer-city { font-size: .6rem; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold); margin-top: 12px; }

/* admin: bookings-by-branch + generic data table */
.adm-branch-head { display: flex; align-items: baseline; gap: 12px; margin: 38px 0 12px; }
.adm-branch-head h3 { font-size: 1.15rem; }
.adm-branch-count { font-size: .72rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); }
.adm-tablewrap { overflow-x: auto; border: 1px solid var(--line); background: var(--paper); }
.adm-table { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 640px; }
.adm-table th { text-align: left; font-family: var(--sans); font-weight: 500; font-size: .66rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); padding: 12px 14px; border-bottom: 1px solid var(--line); white-space: nowrap; background: var(--warm-white); }
.adm-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink); }
.adm-table tbody tr:last-child td { border-bottom: 0; }
.adm-table tbody tr:hover { background: var(--warm-white); }

/* =========================================================
   Admin · 📦 Inventory — branch cards, table, modals
   (surface/radius/shadow/top-rule come from the .adm-body system above)
   ========================================================= */
.inv-bcards { display: grid; grid-template-columns: 1fr 1fr .78fr; gap: 16px; margin-bottom: 26px; }
.inv-bcard { padding: 26px 26px 24px; min-width: 0; }
.inv-bcard-top { display: flex; align-items: center; gap: 12px; }
.inv-bcard-ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: rgba(201,169,97,.12);
  display: inline-flex; align-items: center; justify-content: center; color: #C9A961;
}
.inv-bcard-ico svg { width: 21px; height: 21px; }
.inv-bcard-city { font-family: var(--sans); font-size: .66rem; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }
.inv-bcard-stock { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.inv-bcard-stock .n { font-family: var(--serif); font-size: clamp(2.25rem, 3.2vw, 2.6rem); line-height: 1; color: var(--gold-deep); }
.inv-bcard-stock .u { font-size: .58rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--ink-soft); }
.inv-bcard-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.inv-bcard--total { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.inv-total-n { font-size: .72rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-soft); }
.inv-total-n .n { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-deep); margin-right: 8px; letter-spacing: 0; }

/* status / action badges — soft pills */
.inv-badge {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-size: .64rem; letter-spacing: .8px; padding: 6px 13px; border-radius: 999px; border: 0;
}
.inv-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.inv-badge--ok      { background: #E8F6ED; color: #2C7A4B; }
.inv-badge--ok::before      { background: #35A165; }
.inv-badge--low     { background: #FEF6E0; color: #B98900; }
.inv-badge--low::before     { background: #E0A800; }
.inv-badge--out     { background: #FDEBEA; color: #C0392B; }
.inv-badge--out::before     { background: #D9503F; }
.inv-badge--neutral { background: #F4F1EA; color: var(--ink-soft); }
.inv-badge--neutral::before { background: #C3B9A8; }

/* branch view pills */
.inv-vtabs {
  display: inline-flex; gap: 4px; padding: 6px; border: 0; border-radius: 999px; background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 22px rgba(160,130,60,.10);
  margin-bottom: 18px; max-width: 100%; overflow-x: auto;
}
.inv-vtabs button {
  flex: 0 0 auto; background: transparent; border: 0; border-radius: 999px; cursor: pointer;
  font-family: var(--sans); font-size: .66rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold-ink);
  padding: 10px 24px; transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.inv-vtabs button + button { border-left: 0; }
.inv-vtabs button:hover { background: rgba(201,169,97,.08); color: var(--gold-deep); }
.inv-vtabs button.active {
  background: linear-gradient(135deg, #D4AF6A, #C9A961); color: #fff; box-shadow: 0 4px 14px rgba(201,169,97,.35);
}

/* toolbar */
.inv-toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 20px; }
.inv-toolbar input[type="search"], .inv-toolbar select {
  font-family: var(--sans); font-size: .88rem; color: var(--ink); background: #FBFAF7;
  padding: 13px 15px; border: 1px solid #E8E0D0; border-radius: 12px; min-width: 0;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.inv-toolbar input[type="search"] { flex: 1 1 210px; }
.inv-toolbar input[type="search"]:focus, .inv-toolbar select:focus {
  outline: none; border-color: #C9A961; background: #fff; box-shadow: 0 0 0 4px rgba(201,169,97,.15);
}
.inv-btn-primary.has-ico { display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
.inv-btn-primary.has-ico svg { width: 15px; height: 15px; flex-shrink: 0; }

/* table */
.inv-tablewrap { overflow: hidden; }
.inv-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.inv-table th {
  text-align: left; background: rgba(201,169,97,.07); color: var(--gold-deep);
  font-family: var(--sans); font-weight: 500; font-size: .6rem; letter-spacing: 1.8px; text-transform: uppercase;
  padding: 16px 18px; border-bottom: 1px solid var(--line-soft); white-space: nowrap;
}
.inv-table td { padding: 16px 18px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; color: var(--ink); }
.inv-table tbody tr:last-child td { border-bottom: 0; }
.inv-table tbody tr { transition: background .22s ease; }
.inv-table tbody tr:hover { background: rgba(201,169,97,.05); }
.inv-name { font-family: var(--serif); font-size: 1rem; color: var(--gold-deep); }
.inv-num { font-family: var(--serif); font-size: 1.06rem; color: var(--ink); }
.inv-td-actions { text-align: right; white-space: nowrap; }
.inv-ico-btns { display: inline-flex; gap: 6px; }
.inv-ico {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--adm-field-line, #E8E0D0); border-radius: 10px; background: #fff; color: var(--gold-ink);
  cursor: pointer; padding: 0;
  transition: border-color .22s ease, color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.inv-ico svg { width: 16px; height: 16px; }
.inv-ico:hover {
  border-color: transparent; color: #fff; background: linear-gradient(135deg, #D4AF6A, #C9A961);
  transform: translateY(-2px); box-shadow: 0 6px 16px rgba(201,169,97,.4);
}

/* empty state */
.inv-empty { text-align: center; padding: clamp(44px, 7vw, 76px) 24px; }
.inv-empty-ico {
  width: 78px; height: 78px; margin: 0 auto 20px; border-radius: 50%; background: rgba(201,169,97,.12);
  display: flex; align-items: center; justify-content: center; color: #C9A961;
}
.inv-empty-ico svg { width: 34px; height: 34px; }
.inv-empty h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-deep); }
.inv-empty p { margin-top: 10px; color: var(--ink-soft); font-size: .88rem; }
.inv-empty .inv-btn-primary { margin-top: 24px; }

/* history rows (inside modal) */
.inv-hist-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.inv-hist-row:last-child { border-bottom: 0; }
.inv-hist-date { font-size: .72rem; letter-spacing: .5px; color: var(--ink-soft); min-width: 116px; }
.inv-hist-qty { font-family: var(--serif); font-size: 1rem; color: var(--gold-deep); }
.inv-hist-city { font-size: .78rem; color: var(--ink); }
.inv-hist-note { flex-basis: 100%; font-size: .78rem; color: var(--ink-soft); font-style: italic; }

/* modal */
.vmodal-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(38,31,20,.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px; overflow-y: auto;
  animation: vmodal-in .22s ease both;
}
.vmodal {
  position: relative; width: 100%; max-width: 520px; background: #fff; border: 0; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.06), 0 40px 90px -30px rgba(60,45,20,.45);
  max-height: calc(100vh - 40px); display: flex; flex-direction: column;
  animation: vmodal-rise .3s cubic-bezier(.22,.61,.36,1) both;
}
.vmodal::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, #E5D5A8, #C9A961, #E5D5A8);
}
@keyframes vmodal-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes vmodal-rise { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
.vmodal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 22px 26px 18px; border-bottom: 1px solid var(--line-soft);
}
.vmodal-head h3 { font-family: var(--serif); font-size: 1.14rem; letter-spacing: .3px; color: var(--gold-deep); min-width: 0; overflow-wrap: break-word; }
.vmodal-close {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: #F6F2E9; border: 0; cursor: pointer;
  font-size: 1.3rem; line-height: 1; color: var(--gold-ink); display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease;
}
.vmodal-close:hover { background: rgba(201,169,97,.2); color: var(--gold-deep); }
.vmodal-body { padding: 24px 26px 26px; overflow-y: auto; }
.vmodal-sub { font-size: .8rem; color: var(--ink-soft); margin-bottom: 20px; padding: 12px 16px; background: #FBFAF7; border-radius: 12px; }
.vmodal-field { margin-bottom: 16px; }
.vmodal-field label {
  display: block; font-size: .6rem; letter-spacing: 1.7px; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; margin-bottom: 8px;
}
.vmodal-field input, .vmodal-field select {
  width: 100%; font-family: var(--sans); font-size: .95rem; color: var(--ink);
  background: #FBFAF7; padding: 13px 15px; border: 1px solid #E8E0D0; border-radius: 12px; min-width: 0;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.vmodal-field input:focus, .vmodal-field select:focus {
  outline: none; border-color: #C9A961; background: #fff; box-shadow: 0 0 0 4px rgba(201,169,97,.15);
}
.vmodal-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vmodal-body .inv-btn-primary { width: 100%; margin-top: 10px; padding: 15px 24px; }
.vmodal-err { display: block; margin-top: 14px; padding: 11px 15px; border-radius: 10px; background: #FDEBEA; color: #C0392B; font-size: .82rem; }
.vmodal-err:empty { display: none; }

@media (max-width: 900px) {
  .inv-bcards { grid-template-columns: 1fr 1fr; }
  .inv-bcard--total { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; }
}
/* phone: table becomes cards, no horizontal scrolling */
@media (max-width: 700px) {
  .inv-bcards { grid-template-columns: 1fr; }
  .inv-vtabs { display: flex; width: 100%; border-radius: 20px; }
  .inv-vtabs button { flex: 1; padding-inline: 10px; }
  .inv-toolbar > * { flex: 1 1 100%; }
  .inv-toolbar .inv-btn-primary { width: 100%; }
  .adm-body .inv-tablewrap { background: transparent; box-shadow: none; border-radius: 0; overflow: visible; }
  .adm-body .inv-tablewrap::before { display: none; }
  .adm-body .inv-tablewrap:hover { transform: none; box-shadow: none; }
  .inv-table, .inv-table tbody, .inv-table tr, .inv-table td { display: block; width: 100%; }
  .inv-table thead { display: none; }
  .inv-table tr {
    position: relative; border: 0; border-radius: 16px; background: #fff; margin-bottom: 14px; padding: 8px 18px 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px rgba(160,130,60,.10); overflow: hidden;
  }
  .inv-table tr::before {
    content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
    background: linear-gradient(90deg, #E5D5A8, #C9A961, #E5D5A8);
  }
  .inv-table tbody tr:hover { background: #fff; }
  .inv-table td {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 11px 0; border-bottom: 1px solid var(--line-soft); text-align: right;
  }
  .inv-table td::before {
    content: attr(data-label); font-size: .58rem; letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--gold-deep); text-align: left; flex-shrink: 0;
  }
  .inv-table td:empty, .inv-table td[data-label=""]::before { display: none; }
  .inv-td-name { border-bottom: 1px solid var(--line-soft); padding-top: 14px; }
  .inv-td-name .inv-name { font-size: 1.08rem; }
  .inv-td-actions { border-bottom: 0; justify-content: flex-end; padding-top: 16px; }
  .inv-ico { width: 44px; height: 44px; }
  .inv-ico svg { width: 18px; height: 18px; }
  .vmodal-grid2 { grid-template-columns: 1fr; }
  .vmodal-head { padding: 20px 20px 16px; }
  .vmodal-body { padding: 20px; }
}

/* =========================================================
   City (branch) selector — first-visit gate + header switcher
   ========================================================= */
/* Before a city is chosen an opaque cover is PAINTED OVER the page (a pseudo
   element on <html>, so it needs no DOM work and appears with the first frame).
   The page itself is never hidden: if the gate fails to build, js/city.js drops
   .city-pending and the site is simply there. Nothing here can blank the page. */
html.city-pending { overflow: hidden; }
html.city-pending::before {
  content: ''; position: fixed; inset: 0; z-index: 4999; background: #17130D;
}
/* the chat widget injects itself with a very high z-index — keep it under wraps
   while the gate is up */
html.city-pending .wa-float, html.city-pending [class*="bpWebchat"], html.city-pending [id^="bp-web"] { display: none !important; }

/* The gate carries NO entrance animation on purpose. An animation that is
   "running" but never advances (throttled in-app webview, backgrounded tab)
   would leave it at opacity 0 — an invisible gate over a covered page is a
   blank screen. It is opaque from the first frame; only the content inside
   animates, and only with transforms, which cannot hide anything. */
.city-gate {
  position: fixed; inset: 0; z-index: 5000; display: flex; flex-direction: column;
  background: #17130D;
}
.city-gate.is-leaving { animation: city-gate-out .45s ease both; pointer-events: none; }
@keyframes city-gate-out { from { opacity: 1; } to { opacity: 0; } }

.city-gate-head {
  position: absolute; top: clamp(26px, 5vh, 54px); left: 0; right: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-inline: 20px; pointer-events: none;
}
.city-gate-logo { width: clamp(46px, 6vw, 62px); height: auto; filter: drop-shadow(0 6px 22px rgba(0,0,0,.5)); }
.city-gate-brand {
  margin-top: 12px; font-family: var(--serif-latin); font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: clamp(5px, 1vw, 9px); color: var(--gold-bright); text-transform: uppercase;
}
.city-gate-tag { margin-top: 4px; font-size: .56rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.65); }
.city-gate-title {
  margin-top: clamp(18px, 3vh, 30px); font-family: var(--serif); color: #fff;
  font-size: clamp(1.3rem, 2.8vw, 2rem); letter-spacing: .5px; text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.city-gate-sub { margin-top: 10px; font-size: .84rem; letter-spacing: .4px; color: rgba(255,255,255,.7); }

.city-gate-panels { flex: 1; display: grid; grid-template-columns: 1fr 1fr; min-height: 0; }
.city-panel {
  position: relative; overflow: hidden; border: 0; padding: 0; cursor: pointer; background: none;
  display: flex; align-items: flex-end; justify-content: center; min-width: 0;
}
.city-panel + .city-panel { border-left: 1px solid rgba(201,169,97,.35); }
/* warm gradient underneath — also the graceful fallback if the photo fails */
.city-panel-bg {
  position: absolute; inset: 0; background-color: #241C12;
  background-image: linear-gradient(160deg, #3A2C1B, #1B150E);
  background-size: cover; background-position: center;
  transform: scale(1.02); opacity: 0;
  transition: transform .8s cubic-bezier(.22,.61,.36,1), filter .6s ease, opacity .7s ease;
}
.city-panel-bg.is-loaded { opacity: 1; }
/* legibility scrim + warm tint so both cities read as one premium set */
.city-panel::after {
  content: ''; position: absolute; inset: 0; z-index: 1; transition: background .5s ease;
  background:
    linear-gradient(to top, rgba(20,15,9,.86) 0%, rgba(20,15,9,.42) 45%, rgba(20,15,9,.5) 100%),
    linear-gradient(200deg, rgba(150,110,45,.24), rgba(60,40,15,.2));
}
.city-panel:hover .city-panel-bg, .city-panel:focus-visible .city-panel-bg {
  transform: scale(1.09); filter: brightness(1.14) saturate(1.05);
}
.city-panel:hover::after, .city-panel:focus-visible::after {
  background:
    linear-gradient(to top, rgba(20,15,9,.72) 0%, rgba(20,15,9,.24) 50%, rgba(20,15,9,.34) 100%),
    linear-gradient(200deg, rgba(190,145,60,.22), rgba(60,40,15,.14));
}
.city-panel:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: -6px; }
.city-panel-inner {
  position: relative; z-index: 2; padding: 0 24px clamp(46px, 9vh, 96px);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.city-panel:hover .city-panel-inner { transform: translateY(-6px); }
.city-panel-name {
  font-family: var(--serif); font-size: clamp(1.9rem, 5.2vw, 3.6rem); line-height: 1.05; color: #fff;
  letter-spacing: 1px; text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.city-panel-addr {
  position: relative; padding-top: 14px; font-size: .74rem; letter-spacing: 2.4px;
  text-transform: uppercase; color: rgba(255,255,255,.82);
}
.city-panel-addr::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 1px; background: var(--gold-bright); transition: width .5s ease;
}
.city-panel:hover .city-panel-addr::before { width: 78px; }

@media (max-width: 760px) {
  .city-gate-panels { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .city-panel + .city-panel { border-left: 0; border-top: 1px solid rgba(201,169,97,.35); }
  .city-panel-inner { padding-bottom: clamp(20px, 4vh, 40px); gap: 8px; }
  .city-gate-head { top: 18px; }
  .city-gate-logo { width: 40px; }
  .city-gate-title { font-size: 1.1rem; margin-top: 12px; }
  .city-gate-sub { display: none; }
  .city-panel-name { font-size: clamp(1.7rem, 8vw, 2.4rem); }
}
@media (prefers-reduced-motion: reduce) {
  .city-panel-bg, .city-panel-inner { transition: none; }
  .city-panel:hover .city-panel-bg { transform: scale(1.02); }
}

/* ---------- header switcher ---------- */
.city-switch { position: relative; flex-shrink: 0; }
.city-switch-btn {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  background: transparent; border: 1px solid var(--gold-soft); border-radius: 999px;
  padding: 6px 12px; font-family: var(--sans); font-size: .66rem; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--gold-ink); white-space: nowrap;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.city-switch-btn:hover { background: rgba(201,169,97,.1); color: var(--gold-deep); border-color: var(--gold); }
.city-switch-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.city-switch-btn svg:last-child { width: 11px; height: 11px; opacity: .75; transition: transform .3s ease; }
.city-switch.is-open .city-switch-btn svg:last-child { transform: rotate(180deg); }
/* on the transparent (home) header the switcher sits on the photo */
.site-header:not(.solid):not(.scrolled) .city-switch-btn { color: #fff; border-color: rgba(255,255,255,.5); }
.site-header:not(.solid):not(.scrolled) .city-switch-btn:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }

.city-switch-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 120; min-width: 168px;
  background: #fff; border-radius: 14px; padding: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 18px 40px -18px rgba(90,68,25,.45);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.city-switch.is-open .city-switch-menu { opacity: 1; visibility: visible; transform: none; }
.city-switch-opt {
  display: block; width: 100%; text-align: left; cursor: pointer; background: transparent; border: 0;
  border-radius: 10px; padding: 11px 14px; font-family: var(--sans); font-size: .8rem;
  letter-spacing: .6px; color: var(--ink); transition: background .22s ease, color .22s ease;
}
.city-switch-opt:hover { background: rgba(201,169,97,.1); color: var(--gold-deep); }
.city-switch-opt.is-current { color: var(--gold-deep); background: rgba(201,169,97,.14); }
.city-switch-opt.is-current::after { content: '✓'; float: right; color: var(--gold); }

@media (max-width: 1100px) {
  .nav-actions { gap: 8px; }
  .city-switch-btn { padding: 5px 9px; font-size: .58rem; letter-spacing: .8px; gap: 4px; }
  .city-switch-btn svg { width: 11px; height: 11px; }
  .city-switch-menu { min-width: 150px; }
}
/* phones: the brand and the nav actions share one row, so the switcher drops to
   the pin alone (the open menu still marks the current city) and the wordmark
   tightens just enough to clear it */
@media (max-width: 460px) {
  .city-switch-btn .city-switch-name { display: none; }
  .city-switch-btn { padding: 7px 9px; }
  .city-switch-btn svg:last-child { display: none; }
  .city-switch-menu { min-width: 156px; }
  .nav-actions { gap: 6px; }
  .site-header .brand .name,
  .site-header.solid .brand .name,
  .site-header.scrolled .brand .name { font-size: 1rem; letter-spacing: 2px; }
  .site-header .brand img,
  .site-header.solid .brand img,
  .site-header.scrolled .brand img { width: 25px; height: 25px; }
  .brand { margin-left: 38px; gap: 6px; }
}

/* ---------- branch blocks (footer + contact page) ---------- */
.branch-also {
  display: block; font-size: .58rem; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--gold); opacity: .85; margin-bottom: 2px;
}
.footer-branch + .footer-branch { margin-top: 14px; }
.footer-branch.is-secondary { opacity: .68; }
.footer-branch.is-secondary .footer-city { font-size: .55rem; }
.footer-branch.is-secondary p:not(.footer-city) { font-size: .82rem; }
.info-item.is-secondary { opacity: .72; }
.info-item.is-secondary .v { font-size: .92rem; }

/* =========================================================
   Admin · სალარო (POS) — cashier.html + the boss's „სალარო" tab
   Uses the .adm-body system above; .adm-card gives the white
   surface + gold top rule to the big cards.
   ========================================================= */
/* branch banner — the cashier must never be unsure which branch they are in */
.cash-branch {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 0 auto 18px; padding: 12px 24px; border-radius: 999px;
  background: linear-gradient(135deg, #D4AF6A, #C9A961); color: #fff;
  width: fit-content; max-width: 100%;
  box-shadow: 0 6px 20px rgba(201,169,97,.35);
}
.cash-branch-ico { display: inline-flex; }
.cash-branch-ico svg { width: 19px; height: 19px; }
.cash-branch-name { font-family: var(--serif); font-size: 1.2rem; letter-spacing: .8px; }
.cash-branch-tabs { display: flex; margin: 0 auto 22px; }

/* welcome / mini guide */
.cash-guide { position: relative; padding: 22px 52px 22px 24px; margin-bottom: 22px; }
.cash-guide h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-deep); }
.cash-guide p { margin-top: 8px; font-size: .88rem; line-height: 1.7; color: var(--ink-soft); }
.cash-guide strong { color: var(--gold-deep); font-weight: 500; }
.cash-guide-x {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border: 0; cursor: pointer;
  border-radius: 50%; background: #F6F2E9; color: var(--gold-ink); font-size: 1.2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .25s ease;
}
.cash-guide-x:hover { background: rgba(201,169,97,.2); }
.cash-err-tech { margin-top: 14px; font-size: .74rem; color: var(--ink-soft); word-break: break-word; }

/* zones */
.cash-zone { margin-bottom: 34px; }
.cash-zone-head { margin-bottom: 16px; }
.cash-zone-head .adm-sec-title { margin-bottom: 10px; }
.cash-zone-head .adm-hint { margin-bottom: 0; }
.cash-period { margin-bottom: 26px; }
.cash-range { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; margin-top: 14px; max-width: 560px; }
.cash-range .vmodal-field { margin-bottom: 0; }

/* zone 1 — the day's headline number */
.cash-hero { padding: 26px 28px; margin-bottom: 14px; }
.cash-hero-top { display: flex; align-items: center; gap: 12px; }
.cash-hero-ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: rgba(201,169,97,.12);
  display: inline-flex; align-items: center; justify-content: center; color: #C9A961;
}
.cash-hero-ico svg { width: 21px; height: 21px; }
.cash-hero-label { font-size: .66rem; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }
.cash-hero-num { font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 3.4rem); line-height: 1.05; color: var(--gold-deep); margin-top: 14px; }
.cash-hero-split { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cash-hero-chip {
  font-size: .76rem; letter-spacing: .3px; padding: 7px 14px; border-radius: 999px;
  background: var(--warm-white); color: var(--ink); border: 1px solid var(--line-soft);
}
.cash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr)); gap: 12px; }
.cash-stat { padding: 18px 20px; min-width: 0; }
.cash-stat .n { font-family: var(--serif); font-size: 1.5rem; line-height: 1.15; color: var(--gold-deep); overflow-wrap: break-word; }
.cash-stat .l { font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

/* zone 2 — the one action that matters */
.cash-add-zone { margin-bottom: 34px; }
.cash-add-btn {
  width: 100%; display: flex; align-items: center; gap: 18px; cursor: pointer; text-align: left;
  padding: 22px 26px; border: 0; border-radius: 16px; color: #fff;
  background: linear-gradient(135deg, #D4AF6A, #C9A961);
  box-shadow: 0 10px 30px rgba(201,169,97,.4);
  transition: transform .22s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, filter .25s ease;
}
.cash-add-btn:hover { transform: translateY(-3px); filter: brightness(1.05); box-shadow: 0 16px 40px rgba(201,169,97,.5); }
.cash-add-btn:active { transform: translateY(0); }
.cash-add-ico {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; background: rgba(255,255,255,.22);
  display: inline-flex; align-items: center; justify-content: center;
}
.cash-add-ico svg { width: 26px; height: 26px; stroke-width: 2.2; }
.cash-add-txt { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cash-add-txt strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; letter-spacing: .4px; }
.cash-add-txt small { font-size: .78rem; opacity: .92; line-height: 1.5; }

/* zone 3 — the visit feed */
.cash-list { display: grid; gap: 12px; }
.cash-card {
  position: relative; background: #fff; border-radius: 14px; padding: 18px 20px 18px 22px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 22px rgba(160,130,60,.08);
  transition: transform .22s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease;
}
.cash-card:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(0,0,0,.05), 0 16px 34px rgba(160,130,60,.14); }
.cash-card::before {
  content: ''; position: absolute; left: 0; top: 14px; bottom: 14px; width: 3px; border-radius: 0 3px 3px 0;
  background: #C9A961;
}
.cash-card--cash::before   { background: #35A165; }
.cash-card--card::before   { background: #E0A800; }
.cash-card--online::before { background: #C9A961; }
.cash-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.cash-card-who { min-width: 0; }
.cash-card-client { font-family: var(--serif); font-size: 1.08rem; color: var(--gold-deep); overflow-wrap: break-word; }
.cash-card-service { font-size: .84rem; color: var(--ink-soft); margin-top: 3px; overflow-wrap: break-word; }
.cash-card-amt { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); white-space: nowrap; flex-shrink: 0; }
.cash-card-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; align-items: center; }
.cash-chip {
  font-size: .68rem; letter-spacing: .4px; padding: 5px 11px; border-radius: 999px;
  background: var(--warm-white); color: var(--ink-soft); border: 1px solid var(--line-soft); white-space: nowrap;
}
.cash-chip--time { margin-left: auto; }
.cash-card-calc { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line-soft); font-size: .78rem; color: var(--gold-ink); }
.cash-card-note { margin-top: 8px; font-size: .78rem; color: var(--ink-soft); font-style: italic; }
.cash-card-ops { position: absolute; top: 14px; right: 14px; display: none; gap: 6px; }
.cash-card:hover .cash-card-ops, .cash-card:focus-within .cash-card-ops { display: flex; }
.inv-ico--danger:hover { background: linear-gradient(135deg, #E06A5C, #C0392B); box-shadow: 0 6px 16px rgba(192,57,43,.4); }

/* modal: numbered steps, hints, payment picker, live calculation */
.vmodal-step {
  margin: 22px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line-soft);
  font-size: .64rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep); font-weight: 500;
}
.vmodal-step:first-child { margin-top: 4px; }
.vmodal-hint { display: block; margin-top: 6px; font-size: .72rem; color: var(--ink-soft); line-height: 1.5; }
.cash-pay { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cash-pay-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer;
  padding: 14px 6px; border: 1px solid var(--adm-field-line, #E8E0D0); border-radius: 12px; background: #FBFAF7;
  font-family: var(--sans); font-size: .74rem; color: var(--ink); min-width: 0;
  transition: border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.cash-pay-ico { font-size: 1.3rem; line-height: 1; }
.cash-pay-btn:hover { border-color: #C9A961; transform: translateY(-2px); }
.cash-pay-btn.is-on {
  border-color: transparent; color: #fff; background: linear-gradient(135deg, #D4AF6A, #C9A961);
  box-shadow: 0 6px 18px rgba(201,169,97,.4);
}
.cash-calc { margin-top: 22px; padding: 16px 18px; border-radius: 12px; background: #FBFAF7; border: 1px solid var(--line-soft); }
.cash-calc-title { font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.cash-calc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: .88rem; color: var(--ink-soft); }
.cash-calc-row strong { font-family: var(--serif); font-size: 1.05rem; color: var(--gold-deep); font-weight: 500; }
.cash-calc-row--mat strong { color: var(--ink-soft); }
.cash-confirm { display: flex; gap: 10px; margin-top: 18px; }
.cash-confirm > * { flex: 1; }
.cash-danger { background: linear-gradient(135deg, #E06A5C, #C0392B) !important; box-shadow: 0 4px 14px rgba(192,57,43,.35) !important; }

/* saved confirmation */
.cash-toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 3000;
  display: flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px;
  background: #E8F6ED; color: #2C7A4B; font-size: .88rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.06), 0 18px 40px -14px rgba(44,122,75,.5);
  animation: cash-toast-in .3s cubic-bezier(.22,.61,.36,1);
}
.cash-toast svg { width: 17px; height: 17px; stroke-width: 2.4; }
.cash-toast.is-out { opacity: 0; transition: opacity .5s ease; }
@keyframes cash-toast-in { from { opacity: 0; transform: translate(-50%, 14px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* =========================================================
   Admin · ჩატი კლიენტებთან — list + thread
   ========================================================= */
.achat {
  display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: 14px;
  margin-top: 18px; align-items: start;
}
.achat-list {
  display: flex; flex-direction: column; gap: 8px;
  max-height: 620px; overflow-y: auto; padding-right: 4px;
}
.achat-item {
  position: relative; text-align: left; cursor: pointer; border: 0; border-radius: 14px;
  background: #fff; padding: 14px 16px; width: 100%;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 6px 18px rgba(160,130,60,.07);
  transition: transform .2s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, background .25s ease;
}
.achat-item:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(0,0,0,.05), 0 12px 26px rgba(160,130,60,.14); }
.achat-item.is-active { background: var(--warm-white); box-shadow: 0 2px 4px rgba(0,0,0,.05), inset 3px 0 0 #C9A961; }
.achat-item-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.achat-item-name { font-family: var(--serif); font-size: 1rem; color: var(--gold-deep); min-width: 0; overflow-wrap: anywhere; }
.achat-item-time { font-size: .66rem; letter-spacing: .4px; color: var(--ink-soft); flex-shrink: 0; }
.achat-item-prev {
  margin-top: 5px; font-size: .8rem; color: var(--ink-soft); line-height: 1.45;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.achat-item-meta { display: flex; align-items: center; gap: 7px; margin-top: 9px; }
.achat-badge {
  margin-left: auto; min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px;
  background: #e0473d; color: #fff; font-size: .68rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}

.achat-thread {
  display: flex; flex-direction: column; min-width: 0; background: #fff; border-radius: 16px;
  overflow: hidden; height: 620px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px rgba(160,130,60,.10);
}
.achat-thread::before {
  content: ''; height: 3px; flex-shrink: 0;
  background: linear-gradient(90deg, var(--adm-gold-pale, #E5D5A8), #C9A961, var(--adm-gold-pale, #E5D5A8));
}
.achat-head { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line-soft); }
.achat-back {
  display: none; width: 34px; height: 34px; flex-shrink: 0; border: 0; border-radius: 50%;
  background: #F6F2E9; color: var(--gold-ink); cursor: pointer;
  align-items: center; justify-content: center; transition: background .25s ease;
}
.achat-back svg { width: 17px; height: 17px; }
.achat-back:hover { background: rgba(201,169,97,.2); }
.achat-head-who { min-width: 0; }
.achat-head-name { font-family: var(--serif); font-size: 1.08rem; color: var(--gold-deep); overflow-wrap: anywhere; }
.achat-head-sub { font-size: .68rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.achat-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; background: var(--warm-white); }
.achat-input { display: flex; align-items: flex-end; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--line-soft); background: #fff; }
.achat-input textarea {
  flex: 1; min-width: 0; resize: none; font-family: var(--sans); font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--adm-field-line, #E8E0D0); border-radius: 12px; background: #FBFAF7;
  line-height: 1.5; max-height: 110px;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.achat-input textarea:focus { outline: none; border-color: #C9A961; background: #fff; box-shadow: 0 0 0 4px rgba(201,169,97,.15); }
.achat-send {
  width: 46px; height: 46px; flex-shrink: 0; border: 0; border-radius: 12px; cursor: pointer; color: #fff;
  background: linear-gradient(135deg, #D4AF6A, #C9A961); box-shadow: 0 4px 14px rgba(201,169,97,.35);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, box-shadow .25s ease, filter .25s ease;
}
.achat-send svg { width: 19px; height: 19px; }
.achat-send:hover { transform: translateY(-2px); filter: brightness(1.06); }
.achat-send:disabled { opacity: .6; cursor: default; transform: none; }
.achat-err:empty { display: none; }
.achat-err { padding: 10px 16px; background: #FDEBEA; color: #C0392B; font-size: .8rem; }
.achat-placeholder {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--ink-soft); font-size: .88rem; padding: 40px 20px;
}
.achat-placeholder .inv-empty-ico { margin: 0; }

/* phone: one pane at a time */
@media (max-width: 860px) {
  .achat { grid-template-columns: 1fr; }
  .achat-list { max-height: none; }
  .achat-thread { display: none; height: 70vh; }
  .achat.is-open .achat-list { display: none; }
  .achat.is-open .achat-thread { display: flex; }
  .achat-back { display: flex; }
}

/* clickable table rows (staff income, clients) + auto-filled amount flash */
.inv-table tbody tr.is-clickable { cursor: pointer; }
.inv-table tbody tr.is-clickable:hover .inv-name { color: var(--gold); }
.inv-table tbody tr.is-clickable .inv-td-name { position: relative; }
.inv-td-name .cash-chip { margin-left: 8px; }
.vmodal-field input.is-autofilled {
  border-color: #C9A961; background: #FFFBF0;
  box-shadow: 0 0 0 4px rgba(201,169,97,.18);
}

/* the boss's specialist-percentage editor */
.cash-pct-row { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.cash-pct-row:last-child { border-bottom: 0; }
.cash-pct-name { min-width: 0; }
.cash-pct-name b { display: block; font-family: var(--serif); font-size: 1rem; color: var(--gold-deep); font-weight: 500; }
.cash-pct-name span { font-size: .68rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold); }
.cash-pct-row input { width: 92px; text-align: center; }
.cash-pct-field { margin-bottom: 0; }
.cash-pct-field label { white-space: nowrap; }
.cash-pct-rest { display: block; margin-top: 5px; font-size: .66rem; letter-spacing: .3px; color: var(--ink-soft); white-space: nowrap; }
.cash-pct-all { display: flex; flex-wrap: wrap; gap: 10px; align-items: end; margin-bottom: 20px; }
.cash-pct-all input { width: 110px; }
.cash-pct-all .vmodal-field { margin-bottom: 0; }
.cash-pct-warn {
  margin: 0 0 22px; padding: 14px 18px; border-radius: 12px;
  background: #FEF6E0; color: #8A6A23; font-size: .82rem; line-height: 1.65;
  border-left: 3px solid #E0A800;
}
.cash-pct-warn strong { color: #B98900; }

@media (max-width: 700px) {
  .cash-branch { width: 100%; border-radius: 14px; padding: 14px 18px; }
  .cash-branch-name { font-size: 1.05rem; }
  .cash-hero { padding: 22px 20px; }
  .cash-hero-num { font-size: clamp(2.3rem, 12vw, 3rem); }
  .cash-stats { grid-template-columns: 1fr 1fr; }
  .cash-add-btn { padding: 20px; gap: 14px; }
  .cash-add-ico { width: 46px; height: 46px; }
  .cash-add-txt strong { font-size: 1.05rem; }
  .cash-add-txt small { font-size: .72rem; }
  .cash-range { grid-template-columns: 1fr; }
  /* touch: the row actions are always visible, no hover to discover them */
  .cash-card-ops { display: flex; position: static; margin-top: 14px; justify-content: flex-end; }
  .cash-card { padding: 16px 16px 16px 18px; }
  .cash-card-amt { font-size: 1.25rem; }
  .cash-chip--time { margin-left: 0; }
  .cash-pay-btn { padding: 16px 4px; font-size: .7rem; }
  .cash-pct-row { grid-template-columns: 1fr auto; }
  .cash-pct-row input { width: 80px; }
  .cash-toast { left: 16px; right: 16px; bottom: 16px; transform: none; justify-content: center; }
  @keyframes cash-toast-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  .cash-toast.is-out { transform: none; }
}

/* branch picker (booking form) — city radio-cards */
.branch-pick { display: flex; gap: 12px; flex-wrap: wrap; }
.branch-opt { position: relative; flex: 1 1 190px; cursor: pointer; min-width: 0; }
.branch-opt input { position: absolute; opacity: 0; pointer-events: none; }
.branch-card { display: block; text-align: center; padding: 18px 16px 16px; border: 1px solid var(--line); background: #fff; transition: border-color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease; }
.branch-city { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); letter-spacing: .6px; transition: color .3s ease; }
.branch-addr { display: block; margin-top: 6px; font-size: .72rem; letter-spacing: .8px; color: var(--ink-soft); }
.branch-card::before { content: '✦'; display: block; font-size: .8rem; color: var(--line); margin-bottom: 8px; transition: color .3s ease; }
.branch-opt:hover .branch-card { border-color: #C9A961; transform: translateY(-2px); }
.branch-opt input:checked + .branch-card { border-color: #C9A961; background: var(--warm-white); box-shadow: 0 14px 34px -22px rgba(160,125,55,.55), inset 0 2px 0 #C9A961; }
.branch-opt input:checked + .branch-card::before { color: #C9A961; }
.branch-opt input:checked + .branch-card .branch-city { color: var(--gold-deep); }
.branch-opt input:focus-visible + .branch-card { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

.brand-close { margin-top: clamp(64px, 9vw, 100px); text-align: center; }
.brand-close .eyebrow { display: block; margin-bottom: 18px; }
.brand-close-title { font-family: var(--serif-latin); font-size: clamp(1.7rem, 4.4vw, 2.6rem); letter-spacing: clamp(2px, .8vw, 6px); color: var(--gold-deep); }
.brand-close-lines { margin-top: 24px; line-height: 2.15; }
.brand-close-final { margin-top: 26px; font-size: .84rem; letter-spacing: 1.2px; color: var(--gold-ink); }
