:root {
  color-scheme: dark;
  --bg-depth-1: #06080b;
  --bg-depth-2: #0a0d12;
  --bg-depth-3: #11151c;
  --gold-core: #c8a66a;
  --gold-soft: #e4cc9c;
  --gold-stroke: rgba(200, 166, 106, 0.48);
  --gold-line: rgba(200, 166, 106, 0.34);
  --text-primary: #f4ede2;
  --text-muted: #b6ab97;
  --panel: rgba(14, 18, 24, 0.74);
  --panel-strong: rgba(14, 18, 24, 0.92);
  --ink: var(--text-primary);
  --muted: var(--text-muted);
  --accent: var(--gold-core);
  --accent-2: var(--gold-soft);
  --accent-soft: rgba(200, 166, 106, 0.16);
  --bubble-user-start: rgba(200, 166, 106, 0.96);
  --bubble-user-end: rgba(169, 136, 78, 0.96);
  --bubble-bot-start: rgba(15, 20, 28, 0.98);
  --bubble-bot-end: rgba(10, 14, 21, 0.98);
  --gold: var(--gold-core);
  --border: rgba(244, 235, 220, 0.11);
  --border-soft: rgba(244, 235, 220, 0.07);
  --shadow-lg: 0 34px 70px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 20px 38px rgba(0, 0, 0, 0.34);
  --shadow-sm: 0 12px 24px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --easing-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", "Playfair Display", serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --tg-safe-top: 0px;
  --tg-safe-bottom: 0px;
  --tg-safe-left: 0px;
  --tg-safe-right: 0px;
  --tg-content-safe-top: 0px;
  --tg-content-safe-bottom: 0px;
  --tg-content-safe-left: 0px;
  --tg-content-safe-right: 0px;
  --safe-bottom: max(env(safe-area-inset-bottom, 0px), var(--tg-content-safe-bottom));
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  background: #05070a;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
}

html,
body {
  min-height: 100dvh;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(31, 90, 81, 0.45), rgba(201, 168, 106, 0.55));
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.lux-backdrop,
.lux-vignette,
.lux-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lux-backdrop {
  background:
    radial-gradient(1280px 880px at 50% 112%, rgba(193, 149, 78, 0.2) 0%, rgba(193, 149, 78, 0.06) 36%, transparent 72%),
    radial-gradient(980px 520px at 24% -4%, rgba(255, 244, 214, 0.04) 0%, transparent 66%),
    radial-gradient(860px 440px at 78% 8%, rgba(160, 118, 56, 0.08) 0%, transparent 68%),
    linear-gradient(160deg, #05070a 0%, #090b11 42%, #10151c 100%);
}

.lux-vignette {
  background:
    radial-gradient(circle at 50% 38%, transparent 40%, rgba(0, 0, 0, 0.25) 72%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 24%, transparent 70%, rgba(0, 0, 0, 0.35) 100%);
}

.lux-particles {
  overflow: hidden;
}

.lux-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(230, 210, 168, 0.08);
  box-shadow: 0 0 7px rgba(230, 210, 168, 0.08);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  from {
    transform: translate3d(0, 10px, 0);
    opacity: 0;
  }
  15% {
    opacity: 0.22;
  }
  85% {
    opacity: 0.16;
  }
  to {
    transform: translate3d(0, -28px, 0);
    opacity: 0;
  }
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  min-height: var(--tg-viewport-stable-height, 100vh);
  padding:
    calc(24px + var(--tg-content-safe-top))
    calc(20px + var(--tg-content-safe-right))
    calc(26px + var(--safe-bottom))
    calc(20px + var(--tg-content-safe-left));
  transition: filter 0.36s var(--easing-luxury), opacity 0.36s var(--easing-luxury);
}

.topbar {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding: 18px 20px;
  border-radius: 30px;
  border: 1px solid var(--gold-line);
  background:
    radial-gradient(720px 320px at 80% -40%, rgba(200, 166, 106, 0.12) 0%, transparent 66%),
    linear-gradient(150deg, rgba(13, 17, 23, 0.94), rgba(10, 14, 20, 0.9));
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform-origin: center top;
  transition:
    transform 0.34s var(--easing-luxury),
    opacity 0.34s var(--easing-luxury),
    filter 0.34s var(--easing-luxury),
    box-shadow 0.34s var(--easing-luxury);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(200, 166, 106, 0.68), rgba(200, 166, 106, 0));
  pointer-events: none;
}

.brand-wrap {
  min-width: 0;
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  background: #0b0d0f;
  border: 1px solid rgba(200, 166, 106, 0.44);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: #f5efe6;
  background: linear-gradient(120deg, #f7f1e8 12%, #dfc89b 44%, #b99456 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin-top: 7px;
  color: rgba(214, 205, 191, 0.66);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(200, 166, 106, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(230, 213, 182, 0.88);
  background: rgba(11, 15, 21, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #90d0b7;
  box-shadow: 0 0 0 3px rgba(144, 208, 183, 0.14);
}

.shell.home-screen .topbar {
  margin-bottom: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  justify-content: flex-end;
}

.shell.home-screen .topbar::after {
  display: none;
}

.shell.home-screen .brand-wrap {
  display: none;
}

.shell.home-screen .status {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: rgba(233, 220, 193, 0.92);
}

.home-stage {
  position: relative;
  isolation: isolate;
  min-height: min(66vh, 720px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(18px, 4vw, 30px);
  border-radius: 30px;
  border: 0;
  background:
    radial-gradient(1200px 640px at 50% 112%, rgba(193, 149, 78, 0.24) 0%, rgba(193, 149, 78, 0.06) 42%, rgba(6, 8, 11, 0.95) 100%),
    radial-gradient(900px 440px at 50% 4%, rgba(255, 219, 154, 0.13) 0%, transparent 66%),
    radial-gradient(620px 340px at 12% 58%, rgba(100, 64, 31, 0.24) 0%, transparent 72%),
    radial-gradient(620px 340px at 88% 58%, rgba(100, 64, 31, 0.24) 0%, transparent 72%),
    linear-gradient(180deg, rgba(8, 11, 15, 0.55), rgba(8, 11, 15, 0.82));
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-stage::before,
.home-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.home-stage::before {
  inset: -10% -6% -16%;
  background:
    radial-gradient(760px 240px at 50% 76%, rgba(211, 159, 86, 0.2) 0%, rgba(211, 159, 86, 0.08) 34%, transparent 72%),
    radial-gradient(640px 420px at 50% 50%, rgba(64, 38, 18, 0.42) 0%, rgba(25, 17, 12, 0.18) 55%, transparent 84%),
    radial-gradient(520px 220px at 50% 8%, rgba(255, 220, 168, 0.14) 0%, transparent 68%);
  filter: blur(0.4px);
}

.home-stage::after {
  inset: -6% 8% auto;
  height: 58%;
  background:
    radial-gradient(200px 260px at 50% 0%, rgba(241, 194, 115, 0.23) 0%, rgba(241, 194, 115, 0.04) 54%, transparent 76%),
    linear-gradient(180deg, rgba(208, 160, 81, 0.16) 0%, rgba(208, 160, 81, 0.03) 32%, transparent 76%);
  filter: blur(5px);
  opacity: 0.9;
}

.home-display {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 10.2vw, 74px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.03em;
  color: #f4ead8;
  background: linear-gradient(125deg, #f8f2e9 10%, #e0ca9e 46%, #b88f51 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.home-whisper {
  margin: 0 0 8px;
  color: rgba(220, 206, 179, 0.74);
  letter-spacing: 0.06em;
  font-size: clamp(12px, 2.8vw, 14px);
  text-align: center;
  text-transform: lowercase;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  animation: heroFadeIn 0.42s var(--easing-luxury) both;
}

.shell:not(.home-screen) .hero-actions {
  display: none;
}

.home-stage .hero-actions {
  width: min(430px, 100%);
  margin: 0 auto;
}

.tab.hero-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  border: 1px solid var(--gold-stroke);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(10, 14, 20, 0.82), rgba(13, 18, 24, 0.78));
  color: rgba(240, 229, 210, 0.88);
  font-size: 15px;
  font-weight: 600;
  padding: 0 20px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition:
    transform 0.16s var(--easing-luxury),
    box-shadow 0.22s var(--easing-luxury),
    border-color 0.22s var(--easing-luxury),
    color 0.22s var(--easing-luxury),
    background 0.24s var(--easing-luxury);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -8px 16px rgba(0, 0, 0, 0.26),
    0 14px 24px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(10px);
  animation: heroActionIn 0.42s var(--easing-luxury) forwards;
}

.tab.hero-action::before {
  content: "✦";
  color: rgba(230, 206, 159, 0.9);
  font-size: 15px;
  line-height: 1;
  transform: translateY(-0.4px);
}

.hero-actions .tab.hero-action:nth-child(1) { animation-delay: 0.06s; }
.hero-actions .tab.hero-action:nth-child(2) { animation-delay: 0.16s; }
.hero-actions .tab.hero-action:nth-child(3) { animation-delay: 0.26s; }
.hero-actions .tab.hero-action:nth-child(4) { animation-delay: 0.36s; }

.tab.hero-action:hover {
  border-color: rgba(226, 201, 154, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -10px 18px rgba(0, 0, 0, 0.32),
    0 14px 28px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(200, 166, 106, 0.18);
  color: #f8f1e7;
}

.tab.hero-action:active {
  transform: scale(0.985);
}

.tab.hero-action.is-active {
  border-color: rgba(231, 208, 164, 0.74);
  color: #fbf5ec;
  background:
    linear-gradient(150deg, rgba(14, 18, 24, 0.96), rgba(18, 24, 32, 0.94)),
    radial-gradient(240px 130px at 100% 0, rgba(200, 166, 106, 0.14), transparent 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 18px rgba(0, 0, 0, 0.3),
    0 14px 28px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(200, 166, 106, 0.16);
}

.screen.is-active .panel,
.screen.is-active .chat,
.screen.is-active .screen-header {
  animation: layerIn 0.26s var(--easing-luxury) both;
}

@keyframes layerIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab.hero-action::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.12) 48%, transparent 68%);
  transform: translateX(-150%);
  pointer-events: none;
}

.app-ready .tab.hero-action::after {
  animation: heroShimmer 0.9s var(--easing-luxury) 1;
}

@keyframes heroActionIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroShimmer {
  to {
    transform: translateX(145%);
  }
}

.screens {
  position: relative;
  perspective: 1200px;
  min-height: min(66vh, 720px);
}

.screen {
  display: none;
  opacity: 0;
  transform: translateY(12px) scale(0.992) translateZ(0);
  transform-origin: center top;
  will-change: opacity, transform;
}

.screen.is-active {
  display: block;
  animation: screenIn 0.34s var(--easing-luxury) forwards;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.986) translateZ(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) translateZ(0);
  }
}

.shell.depth-active .topbar {
  opacity: 0.72;
  filter: none;
  transform: scale(0.992);
}

.shell.depth-active .hero-actions {
  opacity: 0.58;
  filter: blur(0.9px);
  transform: translateY(-2px) scale(0.996);
}

.shell.depth-stack-modal .topbar,
.shell.depth-stack-modal .hero-actions {
  opacity: 0.45;
  filter: blur(1.6px);
}

.screen-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.screen-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.screen-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.05;
  color: #f5efe6;
}

.screen-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

body,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 168, 106, 0.16);
  background:
    linear-gradient(145deg, rgba(20, 22, 26, 0.9), rgba(15, 17, 20, 0.9)),
    radial-gradient(340px 180px at 100% 0%, rgba(201, 168, 106, 0.08), transparent 74%);
  backdrop-filter: none;
  box-shadow: var(--shadow-lg);
}

.panel::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.8), rgba(46, 126, 111, 0.55));
  pointer-events: none;
}

.primary,
.ghost,
.action-chip,
.grid-button,
.input,
textarea,
.chat-form input {
  font-family: inherit;
}

.primary,
.ghost,
.action-chip,
.grid-button,
.tab,
.category-card,
.list-item,
.section-block,
.service-row,
.slot-date-chip,
.slot-time-block {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

.primary {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  color: #131416;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(201, 168, 106, 0.24);
}

.primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.primary:disabled,
.ghost:disabled,
.action-chip:disabled,
.grid-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 13px;
  cursor: pointer;
}

.ghost:hover {
  border-color: rgba(201, 168, 106, 0.3);
  color: #f1e8db;
}

.chat {
  border: 1px solid rgba(200, 166, 106, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(520px 240px at -8% -16%, rgba(200, 166, 106, 0.1), transparent 68%),
    linear-gradient(180deg, rgba(13, 17, 24, 0.95) 0%, rgba(10, 14, 20, 0.99) 100%);
  min-height: 340px;
  max-height: 460px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.chat-message {
  position: relative;
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(14px, 1.08vw, 15px);
  line-height: 1.56;
  letter-spacing: 0.004em;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  animation-duration: 0.22s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}

.chat-message::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message.user {
  align-self: flex-end;
  max-width: 82%;
  color: #111315;
  border-color: rgba(224, 195, 127, 0.55);
  background: linear-gradient(145deg, var(--bubble-user-start), var(--bubble-user-end));
  box-shadow: 0 10px 20px rgba(201, 168, 106, 0.24);
  animation-name: msgInUser;
}

.chat-message.user::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 8px;
  width: 10px;
  height: 10px;
  background: linear-gradient(145deg, var(--bubble-user-end), var(--bubble-user-start));
  transform: rotate(45deg);
  border-right: 1px solid rgba(224, 195, 127, 0.55);
  border-top: 1px solid rgba(224, 195, 127, 0.55);
}

.chat-message.bot {
  align-self: flex-start;
  max-width: 86%;
  color: #f3ede2;
  border-color: rgba(200, 166, 106, 0.28);
  background:
    linear-gradient(145deg, var(--bubble-bot-start), var(--bubble-bot-end)),
    radial-gradient(220px 120px at 0% 0%, rgba(201, 168, 106, 0.05), transparent 70%);
  animation-name: msgInBot;
}

.chat-message.bot::after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: 8px;
  width: 10px;
  height: 10px;
  background: linear-gradient(145deg, var(--bubble-bot-start), var(--bubble-bot-end));
  transform: rotate(45deg);
  border-left: 1px solid rgba(201, 168, 106, 0.26);
  border-bottom: 1px solid rgba(201, 168, 106, 0.26);
}

.chat-message.is-typing {
  color: var(--muted);
  background: rgba(17, 22, 29, 0.95);
  border: 1px solid rgba(200, 166, 106, 0.24);
}

.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.typing-indicator__label {
  font-size: 13px;
  color: #cfbea1;
}

.typing-indicator__dots {
  display: inline-flex;
  gap: 5px;
}

.typing-indicator__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(226, 204, 165, 0.82);
  animation: typingDot 0.85s infinite ease-in-out;
}

.typing-indicator__dot:nth-child(2) {
  animation-delay: 0.12s;
}

.typing-indicator__dot:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes typingDot {
  0%, 80%, 100% {
    opacity: 0.38;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.chat-message small {
  display: block;
  margin-top: 6px;
  opacity: 0.85;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.chat-message.user small {
  color: rgba(20, 22, 26, 0.72);
}

.chat-message.bot small {
  color: rgba(219, 208, 192, 0.72);
}

.chat-action-row {
  align-self: flex-start;
  display: flex;
  gap: 8px;
  margin-top: -2px;
  flex-wrap: wrap;
}

.chat-action-row.quick-actions {
  margin-top: 2px;
  padding: 8px;
  border: 1px dashed rgba(201, 168, 106, 0.25);
  border-radius: 12px;
  background: rgba(17, 19, 22, 0.7);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

.chat-form input,
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(10, 14, 20, 0.92);
  color: var(--ink);
  font-size: 15px;
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.chat-form input:focus,
.field input:focus,
.field textarea:focus {
  border-color: rgba(201, 168, 106, 0.44);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.12);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.category-card {
  position: relative;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(201, 168, 106, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(165deg, rgba(20, 22, 26, 0.95), rgba(16, 18, 21, 0.96)),
    radial-gradient(260px 120px at 95% 6%, rgba(201, 168, 106, 0.09), transparent 70%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.category-card::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.72), rgba(46, 126, 111, 0.45));
}

.category-card::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.2), rgba(201, 168, 106, 0));
  pointer-events: none;
}

.category-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.category-badge {
  border: 1px solid rgba(201, 168, 106, 0.28);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-2);
  background: rgba(201, 168, 106, 0.1);
}

.category-count {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: rgba(14, 16, 19, 0.92);
}

.list-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(20, 22, 26, 0.95), rgba(16, 18, 21, 0.96));
  padding: 12px;
}

.booking-step {
  position: relative;
  border-color: rgba(201, 168, 106, 0.25);
  background: linear-gradient(165deg, rgba(26, 29, 33, 0.96), rgba(18, 20, 24, 0.96));
}

.booking-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.8), rgba(46, 126, 111, 0.5));
}

.list-item-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.34;
  color: #f2ecdf;
}

.list-item-text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
  white-space: pre-wrap;
}

.section-block {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(20, 22, 26, 0.95), rgba(16, 18, 21, 0.96));
  padding: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.section-title {
  font-size: 13px;
  font-weight: 800;
  color: #f0e7d9;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(201, 168, 106, 0.9);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.18);
}

.list > .section-title {
  margin: 2px 2px -2px;
}

.service-row {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(20, 22, 26, 0.95), rgba(16, 18, 21, 0.96));
  padding: 12px;
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.78), rgba(46, 126, 111, 0.5));
}

.service-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.service-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.36;
  color: #f2ecdf;
}

.service-price {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-2);
  background: rgba(201, 168, 106, 0.12);
}

.service-note {
  font-size: 12px;
  color: var(--muted);
  white-space: pre-wrap;
  line-height: 1.46;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(14, 16, 19, 0.92);
}

.service-note-collapsed {
  margin-top: 8px;
}

.service-tabs-wrap {
  margin-bottom: 10px;
}

.service-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding: 2px 0 6px;
  scrollbar-width: thin;
}

.service-tab {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #cec5b7;
  padding: 8px 4px 10px;
  margin-right: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  scroll-snap-align: start;
  transition: color 0.16s ease;
}

.service-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 0.16s ease;
}

.service-tab:hover {
  color: #f2e8d6;
}

.service-tab.is-active {
  color: #f2e8d6;
}

.service-tab.is-active::after {
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.95), rgba(201, 168, 106, 0.48));
}

.service-tab:focus-visible {
  outline: 2px solid rgba(201, 168, 106, 0.52);
  outline-offset: 3px;
  border-radius: 8px;
}

.service-category-meta-row {
  min-height: 28px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.service-category-meta-text {
  font-size: 13px;
  color: var(--muted);
}

.services-hub-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-hub-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-entry-button {
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(206, 170, 104, 0.45);
  background: linear-gradient(165deg, rgba(15, 19, 26, 0.94), rgba(10, 13, 18, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 10px 22px rgba(0, 0, 0, 0.2);
  color: #efe3ce;
  text-align: left;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-entry-button.is-path {
  border-color: rgba(230, 192, 124, 0.65);
  box-shadow: inset 0 0 0 1px rgba(255, 230, 180, 0.05), 0 12px 24px rgba(0, 0, 0, 0.24);
}

.service-entry-button.is-soft {
  border-color: rgba(206, 170, 104, 0.4);
}

.service-entry-button:hover {
  transform: translateY(-1px);
  border-color: rgba(238, 200, 132, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.27);
}

.service-entry-button:active {
  transform: scale(0.992);
}

.service-entry-button__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.service-entry-button__meta {
  font-size: 12px;
  color: #cdbca1;
}

.services-local-head {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.service-local-back {
  flex: 0 0 auto;
}

.service-category-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-featured-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.service-protocol-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(14, 18, 24, 0.96), rgba(10, 14, 20, 0.95)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 214px;
  border-color: rgba(200, 166, 106, 0.24);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.service-protocol-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: transform 0.44s var(--easing-luxury), left 0.44s var(--easing-luxury);
}

.service-protocol-card:hover::after {
  left: 140%;
}

.service-protocol-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.service-protocol-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  color: #f2ecdf;
  display: block;
  overflow-wrap: anywhere;
  word-break: normal;
}

.service-protocol-card__tagline {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  display: block;
  overflow-wrap: anywhere;
}

.service-micro-badge {
  border: 1px solid rgba(201, 168, 106, 0.35);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(201, 168, 106, 0.12);
  white-space: nowrap;
}

.service-protocol-card__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-protocol-card__price {
  font-size: 12px;
  font-weight: 700;
  color: #d9ccb7;
}

.service-protocol-card__actions {
  justify-content: flex-start;
  row-gap: 6px;
}

.service-more-wrap {
  display: flex;
}

.service-show-all {
  width: 100%;
}

.service-compact-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-compact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-compact-row {
  border: 1px solid rgba(200, 166, 106, 0.2);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(14, 18, 24, 0.96), rgba(11, 15, 21, 0.96));
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.service-compact-row__main {
  flex: 1;
  min-width: 0;
}

.service-compact-row__name {
  font-size: 14px;
  font-weight: 700;
  color: #f2ecdf;
  line-height: 1.35;
  display: block;
  overflow-wrap: anywhere;
}

.service-compact-row__tagline {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  display: block;
  overflow-wrap: anywhere;
}

.service-compact-row__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.service-compact-row__price {
  font-size: 12px;
  font-weight: 700;
  color: #d9ccb7;
  text-align: right;
}

.service-compact-row__actions {
  justify-content: flex-end;
  row-gap: 6px;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.service-modal[hidden] {
  display: none !important;
}

.service-modal:not(.is-open) {
  pointer-events: none;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 11, 0.66);
  backdrop-filter: none;
}

.service-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 920px);
  border: 1px solid rgba(201, 168, 106, 0.24);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(18, 20, 23, 0.98), rgba(13, 15, 18, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  transform: translateY(8px) scale(0.99);
  opacity: 0;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.service-modal.is-open .service-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 16px 14px;
}

.service-modal__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.24;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.service-modal__positioning {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.service-modal__close {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 19, 22, 0.95);
  color: #e8ddcb;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  line-height: 1;
  font-size: 20px;
  cursor: pointer;
}

.service-modal__body {
  padding: 14px 16px 18px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.service-modal-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-modal-section__title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #f2e8d6;
}

.service-modal-list {
  margin: 0;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #d3c9ba;
  font-size: 13px;
  line-height: 1.48;
}

.service-modal-list__item {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.service-modal-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-modal-timeline__row {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 9px 10px;
  background: rgba(14, 16, 19, 0.8);
}

.service-modal-timeline__label {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-2);
}

.service-modal-timeline__text {
  margin-top: 3px;
  font-size: 13px;
  color: #d3c9ba;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.service-modal-params {
  margin: 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  row-gap: 7px;
  column-gap: 10px;
}

.service-modal-params__label {
  color: var(--muted);
  font-size: 12px;
}

.service-modal-params__value {
  margin: 0;
  color: #e2d7c6;
  font-size: 13px;
}

.service-modal-price {
  font-size: 15px;
  font-weight: 800;
  color: #f1e4cd;
}

.service-modal-price-note,
.service-modal-soft {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.service-modal__footer {
  position: sticky;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 18, 21, 0.96);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
}

.service-modal__cta {
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

.booking-summary {
  border: 1px solid rgba(201, 168, 106, 0.22);
  border-radius: 14px;
  background: rgba(20, 22, 26, 0.82);
  padding: 11px;
  margin-bottom: 12px;
}

.faq-answer {
  margin-top: 6px;
  white-space: pre-wrap;
}

.about-premium {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(19, 22, 26, 0.95), rgba(14, 16, 20, 0.96));
  padding: 12px;
  box-shadow: var(--shadow-md);
}

.about-visual {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 15% 10%, rgba(201, 168, 106, 0.45), rgba(0, 0, 0, 0.22)),
    #111;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.42) 82%);
  pointer-events: none;
}

.about-visual-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(1.08) contrast(1.02);
}

.about-logo-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 110px;
  height: 110px;
  border-radius: 22px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(8, 8, 10, 0.55);
  backdrop-filter: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.about-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.about-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.about-kicker {
  width: fit-content;
  border: 1px solid rgba(201, 168, 106, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  background: rgba(201, 168, 106, 0.12);
}

.about-title {
  margin: 0;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.02;
  color: #f5efe6;
}

.about-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #bdb4a7;
}

.about-story {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(20, 22, 26, 0.95), rgba(16, 18, 21, 0.96));
  padding: 12px 14px;
}

.about-paragraph {
  margin: 0;
  color: #bdb4a7;
  font-size: 14px;
  line-height: 1.62;
}

.about-paragraph + .about-paragraph {
  margin-top: 10px;
}

.about-quote {
  margin: 2px 0 0;
  border-left: 3px solid rgba(201, 168, 106, 0.78);
  padding: 8px 0 8px 12px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.32;
  color: #f0e7d9;
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.12), transparent);
}

.about-actions {
  margin-top: 2px;
}

.about-quick {
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(20, 22, 26, 0.92), rgba(16, 18, 21, 0.92)),
    radial-gradient(260px 120px at 94% 10%, rgba(201, 168, 106, 0.1), transparent 72%);
  padding: 12px;
}

.about-quick-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.about-quick-btn {
  text-align: left;
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: 14px;
  background: rgba(18, 20, 24, 0.92);
  color: #eee6d8;
  padding: 10px 11px;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}

.about-quick-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(224, 195, 127, 0.44);
  background: rgba(22, 24, 28, 0.94);
}

.about-quick-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.about-quick-hint {
  margin-top: 4px;
  font-size: 12px;
  color: #bfb6a9;
  line-height: 1.35;
}

.about-quick-btn.primary .about-quick-title,
.about-quick-btn.primary .about-quick-hint {
  color: #151617;
}

.about-quick-btn.primary {
  border-color: rgba(201, 168, 106, 0.7);
  background: linear-gradient(145deg, rgba(224, 195, 127, 0.98), rgba(201, 168, 106, 0.94));
  box-shadow: 0 10px 24px rgba(201, 168, 106, 0.32);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.action-chip {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 106, 0.28);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(201, 168, 106, 0.18), rgba(201, 168, 106, 0.08));
  color: var(--accent-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
}

.action-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

.action-chip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: left 0.35s ease;
}

.action-chip:hover::after {
  left: 180%;
}

.action-chip.alt {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(14, 16, 19, 0.92);
  color: var(--ink);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.slot-date-floating {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(18, 20, 24, 0.86);
  padding: 10px;
  margin-bottom: 12px;
}

.slot-date-ribbon {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(154px, 1fr);
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 2px;
}

.slot-date-ribbon::-webkit-scrollbar {
  height: 6px;
}

.slot-date-ribbon::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(201, 168, 106, 0.3);
}

.slot-date-chip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(14, 16, 19, 0.96);
  padding: 10px 10px 9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
}

.slot-date-chip:hover {
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateY(-1px);
}

.slot-date-chip.is-selected {
  border-color: rgba(201, 168, 106, 0.45);
  background: rgba(201, 168, 106, 0.12);
}

.slot-date-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.slot-date-meta {
  font-size: 12px;
  color: var(--muted);
}

.slot-time-block {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(14, 16, 19, 0.94);
  padding: 10px;
  margin-bottom: 10px;
}

.slot-time-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.slot-fast-action {
  border: 1px dashed rgba(201, 168, 106, 0.3);
  border-radius: 12px;
  background: rgba(201, 168, 106, 0.08);
  padding: 10px;
  margin-bottom: 10px;
}

.grid-button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(14, 16, 19, 0.96);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 8px;
  text-align: center;
  cursor: pointer;
}

.grid-button:hover {
  border-color: rgba(201, 168, 106, 0.32);
  transform: translateY(-1px);
}

.grid-button.is-selected {
  border-color: rgba(201, 168, 106, 0.46);
  background: rgba(201, 168, 106, 0.2);
  color: #f7efe2;
}

.field {
  margin-bottom: 11px;
}

.label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stepper {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(200, 166, 106, 0.2);
  background: rgba(12, 16, 22, 0.86);
}

.booking-progress__bar {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.booking-progress__fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(200, 166, 106, 0.5), rgba(226, 201, 154, 0.95));
  transition: width 0.28s var(--easing-luxury);
}

.booking-progress__meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.booking-progress__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(230, 214, 183, 0.86);
}

.booking-progress__caption {
  font-size: 12px;
  color: var(--text-muted);
}

#booking-flow.flow-enter {
  animation: bookingFlowIn 0.28s var(--easing-luxury);
}

@keyframes bookingFlowIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.empty {
  color: var(--muted);
  font-size: 14px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(18px + var(--safe-bottom));
  transform: translateX(-50%) translateY(18px);
  min-width: 220px;
  max-width: min(92vw, 520px);
  border-radius: 12px;
  background: rgba(10, 11, 13, 0.96);
  color: #f5efe6;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 30;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.fallback {
  margin-top: 16px;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 106, 0.4);
  background: rgba(18, 20, 24, 0.9);
  color: #d2c7b6;
  font-size: 13px;
  line-height: 1.46;
  padding: 12px 14px;
}

.fallback-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
}

@media (hover: hover) {
  .category-card:hover,
  .list-item:hover,
  .section-block:hover,
  .service-row:hover,
  .slot-time-block:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
    border-color: rgba(201, 168, 106, 0.18);
  }
}

.category-card,
.service-row,
.list-item,
.section-block {
  animation: premiumItemIn 0.22s ease both;
}

.category-card:nth-child(1),
.service-row:nth-child(1),
.list-item:nth-child(1) {
  animation-delay: 0.02s;
}

.category-card:nth-child(2),
.service-row:nth-child(2),
.list-item:nth-child(2) {
  animation-delay: 0.04s;
}

.category-card:nth-child(3),
.service-row:nth-child(3),
.list-item:nth-child(3) {
  animation-delay: 0.06s;
}

.category-card:nth-child(4),
.service-row:nth-child(4),
.list-item:nth-child(4) {
  animation-delay: 0.08s;
}

@keyframes premiumItemIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .service-featured-list {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .ambient {
    display: none;
  }

  .shell {
    padding:
      calc(14px + var(--tg-content-safe-top))
      calc(10px + var(--tg-content-safe-right))
      calc(20px + var(--safe-bottom))
      calc(10px + var(--tg-content-safe-left));
  }

  .topbar {
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .brand {
    font-size: 30px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .tabs {
    top: calc(6px + var(--tg-content-safe-top));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 8px;
    margin-bottom: 12px;
  }

  .tab {
    font-size: 13px;
    padding: 9px 8px;
  }

  .screen-header h2 {
    font-size: 22px;
  }

  .panel {
    padding: 12px;
    border-radius: 18px;
  }

  .slot-date-ribbon {
    grid-auto-columns: minmax(132px, 1fr);
  }

  .service-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-compact-row {
    flex-direction: column;
    align-items: stretch;
  }

  .service-compact-row__right {
    align-items: flex-start;
  }

  .section-title {
    font-size: 12px;
  }

  .chat {
    min-height: 300px;
    max-height: 380px;
    padding: 12px;
    gap: 10px;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-message {
    max-width: 92%;
    font-size: 14px;
    line-height: 1.52;
    padding: 11px 12px;
    border-radius: 14px;
  }

  .chat-message.user {
    max-width: 90%;
  }

  .chat-message.bot {
    max-width: 90%;
  }

  .about-logo-badge {
    width: 88px;
    height: 88px;
  }

  .about-quick-grid {
    grid-template-columns: 1fr;
  }

  .about-quote {
    font-size: 19px;
  }

  .service-modal {
    padding: 0;
    align-items: stretch;
  }

  .service-modal__dialog {
    width: 100%;
    max-height: 100%;
    min-height: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .service-modal__body {
    padding-bottom: 90px;
  }

  .service-modal__footer {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: calc(12px + var(--safe-bottom));
  }

  .service-modal-params {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Premium polish layer */
.topbar,
.tabs,
.panel,
.category-card,
.section-block,
.service-row,
.list-item,
.slot-date-floating,
.slot-time-block {
  backdrop-filter: none;
}

.list-item-title {
  letter-spacing: 0.01em;
}

.category-card .list-item-title {
  margin-top: 2px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.category-card .primary {
  width: 100%;
  margin-top: 10px;
}

.category-card .list-item-text {
  margin-top: 7px;
  font-size: 13px;
  color: #b7ae9f;
}

.section-block + .section-block {
  margin-top: 2px;
}

.section-block .service-row + .service-row {
  margin-top: 8px;
}

.service-row {
  align-items: flex-start;
}

.service-main {
  flex: 1;
}

.service-name {
  font-size: 15px;
}

.service-price {
  margin-top: 2px;
}

.inline-actions {
  align-items: center;
}

.faq-answer {
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 9px;
  font-size: 13px;
  line-height: 1.52;
  color: #c6bcaf;
}

.empty {
  border: 1px dashed rgba(201, 168, 106, 0.25);
  border-radius: 12px;
  background: rgba(17, 19, 22, 0.7);
  padding: 11px 12px;
}

.chat-message {
  white-space: pre-wrap;
}

.chat-message.bot {
  border-color: rgba(201, 168, 106, 0.26);
}

.chat-message.user {
  border-color: rgba(224, 195, 127, 0.55);
}

@keyframes msgInBot {
  from {
    opacity: 0;
    transform: translateY(8px) translateX(-4px) scale(0.988);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }
}

@keyframes msgInUser {
  from {
    opacity: 0;
    transform: translateY(8px) translateX(4px) scale(0.988);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }
}

@media (max-width: 640px) {
  .tabs {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding-bottom: 10px;
  }

  .tab {
    flex: 0 0 auto;
    min-width: 106px;
    scroll-snap-align: start;
  }

  .screen-header p {
    font-size: 13px;
  }

  .category-card .list-item-title {
    font-size: 15px;
  }
}

/* Luxury architecture overrides */
.screen-header p {
  display: none;
}

[data-screen="dialog"] .screen-header p {
  display: block;
}

.about-lounge {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-lounge-head {
  border: 1px solid rgba(200, 166, 106, 0.22);
  border-radius: 22px;
  padding: 16px;
  background:
    radial-gradient(320px 140px at 90% 0%, rgba(200, 166, 106, 0.1), transparent 72%),
    linear-gradient(160deg, rgba(14, 18, 24, 0.94), rgba(9, 13, 18, 0.96));
}

.about-lounge-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 40px);
  letter-spacing: 0.03em;
  color: #f8f1e5;
}

.about-lounge-subtitle {
  margin: 7px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.52;
}

.about-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-section-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 166, 106, 0.2);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(14, 18, 24, 0.96), rgba(10, 14, 20, 0.96));
  padding: 14px 12px;
  min-height: 176px;
  transition: transform 0.24s var(--easing-luxury), border-color 0.24s var(--easing-luxury), box-shadow 0.24s var(--easing-luxury);
  animation: aboutSectionIn 0.38s var(--easing-luxury) both;
}

.about-section-card:nth-child(2) { animation-delay: 0.08s; }
.about-section-card:nth-child(3) { animation-delay: 0.16s; }

@keyframes aboutSectionIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section-card:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 201, 156, 0.42);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.about-section-card + .about-section-card::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, rgba(200, 166, 106, 0), rgba(200, 166, 106, 0.4), rgba(200, 166, 106, 0));
}

.about-section-title {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(233, 212, 176, 0.92);
}

.about-section-text {
  margin: 10px 0 0;
  color: #c9bdab;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.about-media-row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 10px;
}

.about-media-card {
  border: 1px solid rgba(200, 166, 106, 0.24);
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  background: #0b0d12;
}

.about-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-links-card {
  border: 1px solid rgba(200, 166, 106, 0.2);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(155deg, rgba(13, 17, 23, 0.95), rgba(9, 13, 18, 0.96));
}

.about-links-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.about-link-btn {
  text-decoration: none;
}

.service-modal__dialog {
  border-color: rgba(224, 201, 156, 0.34);
  border-radius: 22px;
  background:
    radial-gradient(340px 180px at 100% 0%, rgba(200, 166, 106, 0.1), transparent 72%),
    linear-gradient(165deg, rgba(12, 16, 22, 0.98), rgba(9, 13, 18, 0.98));
}

.service-modal__header {
  border-bottom-color: rgba(200, 166, 106, 0.22);
}

.service-modal__footer {
  border-top-color: rgba(200, 166, 106, 0.22);
  background: rgba(10, 14, 20, 0.96);
}

#booking-active .list-item-title {
  color: #f6eddf;
}

.booking-success {
  border: 1px solid rgba(200, 166, 106, 0.34);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
  background:
    radial-gradient(220px 120px at 100% 0, rgba(200, 166, 106, 0.16), transparent 70%),
    linear-gradient(160deg, rgba(16, 20, 26, 0.96), rgba(12, 16, 22, 0.96));
}

.booking-success__title {
  margin: 0;
  font-size: 14px;
  color: #f2e4c8;
  font-weight: 800;
}

.booking-success__text {
  margin: 6px 0 0;
  color: #cbbda7;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .about-section-grid {
    grid-template-columns: 1fr;
  }

  .about-media-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 14px;
    border-radius: 22px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand {
    font-size: clamp(34px, 11vw, 40px);
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 14px;
  }

  .tab.hero-action {
    min-height: 58px;
    border-radius: 24px;
    font-size: 14px;
    padding: 0 16px;
  }

  .about-links-grid {
    grid-template-columns: 1fr;
  }

  .shell.home-screen .topbar {
    margin-bottom: 2px;
  }

  .home-stage {
    min-height: min(72vh, 720px);
    gap: 10px;
    padding-bottom: 18px;
    border-radius: 24px;
  }

  .home-display {
    font-size: clamp(44px, 11vw, 58px);
  }

  .tab.hero-action {
    min-height: 58px;
    font-size: 15px;
  }
}

/* Premium refinement pass */
.shell {
  max-width: 920px;
}

.topbar {
  border-color: rgba(200, 166, 106, 0.28);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.screen-header h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  letter-spacing: 0.02em;
}

.panel {
  border-color: rgba(200, 166, 106, 0.2);
  background:
    radial-gradient(320px 160px at 100% 0%, rgba(200, 166, 106, 0.08), transparent 74%),
    linear-gradient(145deg, rgba(14, 18, 24, 0.9), rgba(10, 14, 20, 0.92));
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.tab.hero-action {
  border-color: rgba(214, 184, 130, 0.44);
  color: rgba(246, 236, 220, 0.92);
}

.tab.hero-action:hover {
  border-color: rgba(236, 214, 173, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -10px 18px rgba(0, 0, 0, 0.34),
    0 16px 30px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(200, 166, 106, 0.22);
}

.service-tabs {
  gap: 2px;
  padding-bottom: 8px;
}

.service-tab {
  padding: 9px 4px 12px;
  margin-right: 14px;
  color: rgba(218, 203, 176, 0.9);
}

.service-tab.is-active {
  color: #f7efdf;
}

.service-protocol-card {
  border-color: rgba(215, 186, 132, 0.28);
  background:
    radial-gradient(240px 110px at 100% 0%, rgba(200, 166, 106, 0.1), transparent 70%),
    linear-gradient(165deg, rgba(14, 18, 24, 0.98), rgba(10, 14, 20, 0.98));
}

.service-protocol-card__title {
  font-size: 16px;
}

.service-protocol-card__price,
.service-compact-row__price,
.service-price {
  color: #f0e0c4;
}

.service-compact-row {
  border-color: rgba(215, 186, 132, 0.24);
  background:
    radial-gradient(200px 90px at 100% 0%, rgba(200, 166, 106, 0.08), transparent 70%),
    linear-gradient(165deg, rgba(14, 18, 24, 0.98), rgba(11, 15, 21, 0.98));
}

.service-modal__dialog {
  border-color: rgba(215, 186, 132, 0.34);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.56);
}

.chat {
  border-color: rgba(215, 186, 132, 0.28);
}

.chat-form input {
  border-color: rgba(200, 166, 106, 0.28);
  background: rgba(12, 16, 22, 0.92);
}

.action-chip,
.ghost {
  border-color: rgba(200, 166, 106, 0.24);
}

.action-chip:hover,
.ghost:hover {
  border-color: rgba(215, 186, 132, 0.44);
}

/* Cinematic home pass (match target reference) */
.shell.home-screen {
  padding-top: calc(10px + var(--tg-content-safe-top));
  padding-left: 0;
  padding-right: 0;
  padding-bottom: calc(16px + var(--safe-bottom));
}

.shell.home-screen .topbar {
  margin: 0 14px 4px;
  min-height: 34px;
}

.shell.home-screen .screens {
  min-height: calc(var(--tg-viewport-stable-height, 100vh) - 68px);
}

.shell.home-screen .status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(233, 220, 193, 0.96);
}

.shell.home-screen .status::before {
  width: 8px;
  height: 8px;
  background: #8ad26f;
  box-shadow: 0 0 0 2px rgba(138, 210, 111, 0.16);
}

.home-stage {
  width: 100%;
  min-height: calc(var(--tg-viewport-stable-height, 100vh) - 92px);
  padding: clamp(34px, 7vw, 54px) clamp(16px, 4vw, 24px) clamp(36px, 8vw, 52px);
  border-radius: 0;
  background:
    radial-gradient(1000px 420px at 50% 4%, rgba(255, 214, 142, 0.14) 0%, transparent 68%),
    radial-gradient(560px 210px at 50% 56%, rgba(255, 166, 71, 0.15) 0%, rgba(255, 166, 71, 0.03) 45%, transparent 72%),
    radial-gradient(680px 310px at 50% 82%, rgba(196, 126, 54, 0.14) 0%, transparent 66%),
    linear-gradient(180deg, rgba(26, 15, 11, 0.95) 0%, rgba(20, 11, 10, 0.97) 34%, rgba(15, 10, 10, 0.98) 100%);
  box-shadow: none;
}

.home-stage::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(280px 260px at 50% -2%, rgba(255, 198, 120, 0.18) 0%, transparent 72%),
    radial-gradient(2px 2px at 16% 34%, rgba(255, 191, 106, 0.12), transparent 70%),
    radial-gradient(1.6px 1.6px at 74% 40%, rgba(255, 191, 106, 0.1), transparent 70%),
    radial-gradient(1.8px 1.8px at 38% 68%, rgba(255, 191, 106, 0.08), transparent 70%),
    radial-gradient(1.2px 1.2px at 60% 58%, rgba(255, 191, 106, 0.08), transparent 70%);
  filter: blur(0.2px);
}

.home-stage::after {
  inset: auto 0 22%;
  height: 92px;
  z-index: 0;
  background:
    radial-gradient(240px 46px at 50% 44%, rgba(255, 214, 143, 0.7) 0%, rgba(255, 214, 143, 0.22) 44%, transparent 82%),
    linear-gradient(180deg, rgba(255, 206, 126, 0.18) 0%, transparent 72%);
  filter: blur(1.2px);
  opacity: 0.95;
}

.home-display,
.home-whisper,
.hero-actions {
  position: relative;
  z-index: 1;
}

.home-display {
  font-size: clamp(54px, 12vw, 76px);
  line-height: 0.96;
  letter-spacing: 0.022em;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.home-whisper {
  margin-top: 2px;
  margin-bottom: 18px;
  letter-spacing: 0.055em;
  color: rgba(227, 211, 184, 0.78);
}

.home-stage .hero-actions {
  width: min(314px, 84vw);
  gap: 12px;
  margin: 0 auto;
}

.tab.hero-action {
  min-height: 60px;
  border-color: rgba(223, 193, 143, 0.5);
  background:
    radial-gradient(130% 120% at 50% 8%, rgba(255, 212, 143, 0.08) 0%, transparent 72%),
    linear-gradient(160deg, rgba(7, 12, 20, 0.92), rgba(8, 11, 17, 0.9));
  color: #f3e7d3;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -12px 18px rgba(0, 0, 0, 0.34),
    0 8px 18px rgba(0, 0, 0, 0.34);
}

.tab.hero-action::before {
  color: rgba(242, 206, 139, 0.92);
  text-shadow: 0 0 9px rgba(242, 206, 139, 0.4);
}

.tab.hero-action:hover {
  border-color: rgba(237, 215, 173, 0.78);
}

@media (max-width: 640px) {
  .shell.home-screen .topbar {
    margin: 0 12px 4px;
  }

  .home-stage {
    min-height: calc(var(--tg-viewport-stable-height, 100vh) - 86px);
    padding-top: clamp(30px, 9vw, 46px);
    padding-bottom: clamp(26px, 9vw, 44px);
  }

  .home-display {
    font-size: clamp(50px, 13.2vw, 66px);
  }

  .home-whisper {
    margin-bottom: 16px;
    font-size: 13px;
  }
}

/* ===== Home Max Premium Pass ===== */
.shell.home-screen {
  max-width: none;
  width: 100%;
  margin: 0;
  padding:
    calc(6px + var(--tg-content-safe-top))
    0
    calc(14px + var(--safe-bottom))
    0;
}

.shell.home-screen .topbar {
  margin: 0;
  min-height: 0;
  height: 0;
  padding: 0;
  overflow: visible;
}

.shell.home-screen .screens {
  position: relative;
  min-height: calc(var(--tg-viewport-stable-height, 100vh) - 36px);
  overflow: hidden;
}

.shell.home-screen .screens::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(560px 280px at 50% 0%, rgba(255, 208, 133, 0.16) 0%, transparent 72%),
    radial-gradient(860px 420px at 50% 54%, rgba(196, 114, 40, 0.2) 0%, rgba(196, 114, 40, 0.05) 44%, transparent 80%),
    radial-gradient(900px 320px at 50% 82%, rgba(152, 79, 27, 0.2) 0%, transparent 74%),
    linear-gradient(180deg, #1b120f 0%, #160f0f 34%, #120d0d 64%, #0d0b0c 100%);
}

.shell.home-screen .screens::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1px 1px at 14% 28%, rgba(255, 214, 146, 0.14), transparent 70%),
    radial-gradient(1px 1px at 28% 42%, rgba(255, 214, 146, 0.1), transparent 70%),
    radial-gradient(1px 1px at 76% 38%, rgba(255, 214, 146, 0.12), transparent 70%),
    radial-gradient(1px 1px at 62% 62%, rgba(255, 214, 146, 0.1), transparent 70%),
    radial-gradient(1px 1px at 40% 72%, rgba(255, 214, 146, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.28));
  opacity: 0.9;
}

.shell.home-screen #status-pill {
  position: absolute;
  right: 16px;
  top: calc(8px + var(--tg-content-safe-top));
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(236, 223, 198, 0.96);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.shell.home-screen #status-pill::before {
  width: 8px;
  height: 8px;
  background: #88d36b;
  box-shadow: 0 0 0 2px rgba(136, 211, 107, 0.18);
}

.shell.home-screen .screen[data-screen="home"] {
  position: relative;
  z-index: 1;
}

.shell.home-screen .home-stage {
  min-height: calc(var(--tg-viewport-stable-height, 100vh) - 44px);
  padding:
    clamp(78px, 20vw, 128px)
    clamp(18px, 5vw, 28px)
    clamp(34px, 9vw, 58px);
  gap: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.shell.home-screen .home-stage::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(340px 280px at 50% 6%, rgba(255, 207, 135, 0.17) 0%, transparent 74%),
    radial-gradient(700px 150px at 50% 56%, rgba(255, 170, 70, 0.24) 0%, rgba(255, 170, 70, 0.05) 46%, transparent 82%);
  filter: blur(0.3px);
}

.shell.home-screen .home-stage::after {
  inset: auto 0 20%;
  height: 108px;
  z-index: 0;
  background:
    radial-gradient(260px 42px at 50% 40%, rgba(255, 220, 154, 0.86) 0%, rgba(255, 220, 154, 0.26) 46%, transparent 82%),
    linear-gradient(180deg, rgba(255, 210, 136, 0.22) 0%, transparent 74%);
  filter: blur(1.4px);
  opacity: 0.98;
}

.shell.home-screen .home-display,
.shell.home-screen .home-whisper,
.shell.home-screen .hero-actions {
  position: relative;
  z-index: 1;
}

.shell.home-screen .home-display {
  font-size: clamp(58px, 13vw, 82px);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-shadow:
    0 8px 24px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(215, 164, 96, 0.18);
}

.shell.home-screen .home-whisper {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: 0.07em;
  color: rgba(226, 210, 182, 0.8);
}

.shell.home-screen .home-stage .hero-actions {
  width: min(312px, 84vw);
  gap: 12px;
  margin: 0 auto;
}

.shell.home-screen .tab.hero-action {
  min-height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(226, 196, 145, 0.56);
  background:
    radial-gradient(130% 120% at 50% 8%, rgba(255, 214, 146, 0.08) 0%, transparent 72%),
    linear-gradient(160deg, rgba(7, 11, 18, 0.93), rgba(7, 10, 16, 0.91));
  color: #f5e8d1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -12px 18px rgba(0, 0, 0, 0.38),
    0 10px 22px rgba(0, 0, 0, 0.38);
}

.shell.home-screen .tab.hero-action::before {
  color: rgba(242, 208, 146, 0.96);
  text-shadow: 0 0 12px rgba(242, 208, 146, 0.46);
}

.shell.home-screen .tab.hero-action:hover {
  border-color: rgba(241, 221, 184, 0.78);
}

.shell.home-screen .tab.hero-action:active {
  transform: scale(0.986);
}

@media (max-width: 640px) {
  .shell.home-screen {
    padding-top: calc(4px + var(--tg-content-safe-top));
  }

  .shell.home-screen #status-pill {
    top: calc(9px + var(--tg-content-safe-top));
    right: 14px;
  }

  .shell.home-screen .home-stage {
    min-height: calc(var(--tg-viewport-stable-height, 100vh) - 34px);
    padding-top: clamp(74px, 21vw, 112px);
    padding-bottom: clamp(28px, 10vw, 48px);
  }

  .shell.home-screen .home-display {
    font-size: clamp(54px, 14vw, 74px);
  }

  .shell.home-screen .home-whisper {
    margin-bottom: 14px;
  }
}

/* About (premium ordered layout) */
.about-prime {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-prime-photo-card {
  position: relative;
  border: 1px solid rgba(215, 186, 132, 0.3);
  border-radius: 20px;
  overflow: hidden;
  background: #0b0f14;
  min-height: 260px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.about-prime-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-prime-head {
  border: 1px solid rgba(215, 186, 132, 0.24);
  border-radius: 18px;
  padding: 14px;
  background:
    radial-gradient(280px 130px at 100% 0, rgba(200, 166, 106, 0.1), transparent 72%),
    linear-gradient(160deg, rgba(13, 17, 23, 0.96), rgba(9, 13, 18, 0.96));
}

.about-prime-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.03em;
  color: #f8f1e5;
}

.about-prime-subtitle {
  margin: 8px 0 0;
  color: #c9bda7;
  font-size: 14px;
  line-height: 1.55;
}

.about-prime-story {
  border: 1px solid rgba(215, 186, 132, 0.22);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(155deg, rgba(12, 16, 22, 0.96), rgba(9, 13, 18, 0.97));
}

.about-prime-text {
  margin: 0;
  color: #d2c5b1;
  font-size: 14px;
  line-height: 1.64;
  white-space: pre-wrap;
}

.about-prime-text + .about-prime-text {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(215, 186, 132, 0.14);
}

.about-prime-quote {
  color: #ead7b0;
}

.about-prime-links {
  border: 1px solid rgba(215, 186, 132, 0.22);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(155deg, rgba(13, 17, 23, 0.95), rgba(9, 13, 18, 0.96));
}

.about-prime-links-title {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(233, 212, 176, 0.92);
  font-weight: 700;
}

.about-prime-address {
  margin-top: 8px;
  color: #c9bda7;
  font-size: 14px;
  line-height: 1.52;
}

.about-prime-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.about-prime-actions .about-link-btn {
  width: 100%;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  text-align: center;
}

.about-prime-actions .about-link-btn--cta {
  border-color: rgba(228, 198, 142, 0.82);
  color: #19130b;
  background:
    linear-gradient(148deg, rgba(248, 225, 181, 0.98), rgba(211, 171, 102, 0.96));
  box-shadow:
    0 12px 20px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.about-prime-actions .about-link-btn--cta:hover {
  border-color: rgba(245, 229, 198, 0.94);
  filter: brightness(1.03);
}

/* Topbar overlap guard */
.topbar .brand-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.topbar .brand-head {
  min-width: 0;
}

.topbar .brand {
  max-width: min(62vw, 460px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(28px, 4.2vw, 44px);
}

.topbar .status {
  flex: 0 0 auto;
  margin-left: 10px;
}

@media (max-width: 640px) {
  .topbar .brand {
    max-width: min(54vw, 240px);
    font-size: clamp(24px, 7.8vw, 32px);
    letter-spacing: 0.02em;
  }
}

/* ===== Premium stability pass (final) ===== */
.screen-header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.screen-header-actions .ghost,
.inline-actions .action-chip,
.service-protocol-card__actions .action-chip,
.service-compact-row__actions .action-chip {
  white-space: nowrap;
}

.service-protocol-card__title,
.service-compact-row__name,
.service-modal__title,
.list-item-title,
.brand,
.home-display {
  overflow-wrap: anywhere;
}

.service-protocol-card__title,
.service-compact-row__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.service-protocol-card__tagline,
.service-compact-row__tagline {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.service-modal__body {
  line-height: 1.58;
}

.service-modal__body p,
.service-modal__body li {
  color: rgba(233, 224, 208, 0.9);
}

.about-prime-actions .about-link-btn {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.about-prime-actions .about-link-btn:not(.about-link-btn--cta) {
  background: rgba(14, 18, 24, 0.9);
}

.service-tab {
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 640px) {
  .screen-header-actions {
    justify-content: flex-start;
  }

  .service-protocol-card__actions,
  .service-compact-row__actions {
    flex-wrap: wrap;
  }

  .service-protocol-card__actions .action-chip,
  .service-compact-row__actions .action-chip {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   PREMIUM POLISH v2 — Interior screens & UX micro-improvements
   ============================================================ */

/* --- Scrollbar: thin & elegant --- */
::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 106, 0.28);
  border-radius: 999px;
}

/* --- Screen depth: richer dark background --- */
.shell.depth-active {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(193, 149, 78, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #070a0e 0%, #060809 100%);
}

/* --- Screen header: sticky + glass --- */
.screen-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 12px 0 10px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.96) 80%, transparent 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 106, 0.10);
}

.screen-header h2 {
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #f8f2e9 20%, #d6a85e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.screen-header p {
  font-size: 13px;
  color: rgba(185, 170, 145, 0.82);
  margin: 4px 0 0;
  line-height: 1.5;
}

/* --- Ghost button: more visible --- */
.ghost {
  border-color: rgba(201, 168, 106, 0.22);
  color: rgba(220, 206, 178, 0.88);
  background: rgba(15, 18, 24, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.ghost:hover {
  border-color: rgba(201, 168, 106, 0.45);
  color: #f4eadb;
  background: rgba(20, 24, 32, 0.86);
}

/* --- Primary button: polished gold --- */
.primary {
  border-radius: 14px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(148deg, rgba(248, 225, 181, 0.98), rgba(205, 162, 89, 0.96));
  color: #1a140b;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 18px rgba(215, 165, 80, 0.22);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 24px rgba(225, 175, 90, 0.3);
}
.primary:active { transform: scale(0.985); }

/* --- Action chip: refined --- */
.action-chip {
  border-radius: 12px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid rgba(201, 168, 106, 0.24);
  color: rgba(225, 212, 190, 0.92);
  background: rgba(14, 17, 23, 0.84);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.action-chip:hover {
  border-color: rgba(220, 185, 130, 0.5);
  color: #f5ead8;
}
.action-chip.cta-path {
  border-color: rgba(236, 196, 127, 0.78);
  color: #1a140b;
  background: linear-gradient(148deg, rgba(248, 225, 181, 0.98), rgba(205, 162, 89, 0.96));
  box-shadow: 0 8px 16px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.42);
}
.action-chip.cta-soft {
  border-color: rgba(201, 168, 106, 0.28);
  background: rgba(12, 16, 22, 0.82);
  color: rgba(230, 215, 190, 0.9);
}

/* --- Chat: larger, better feel --- */
.chat {
  min-height: 360px;
  max-height: 52vh;
  border-radius: 20px;
  border-color: rgba(200, 166, 106, 0.18);
  padding: 14px 12px;
  gap: 10px;
}

.chat-message {
  padding: 13px 15px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.6;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

/* Bot bubble: subtler, cooler */
.chat-message.bot {
  border-color: rgba(200, 166, 106, 0.18);
  background:
    linear-gradient(145deg, rgba(14, 18, 25, 0.97), rgba(10, 13, 20, 0.98)),
    radial-gradient(180px 100px at 0% 0%, rgba(201, 168, 106, 0.06), transparent 70%);
}

/* User bubble: warm gold */
.chat-message.user {
  border-color: rgba(230, 200, 140, 0.48);
  box-shadow:
    0 8px 18px rgba(201, 168, 106, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Quick action chips in chat */
.chat-action-row.quick-actions {
  border-color: rgba(201, 168, 106, 0.18);
  border-radius: 14px;
  background: rgba(12, 15, 20, 0.82);
  padding: 10px;
  gap: 8px;
}

/* Chat input */
.chat-form input,
.field input,
.field textarea {
  min-height: 48px;
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(9, 12, 18, 0.90);
  border-color: rgba(201, 168, 106, 0.20);
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.chat-form input:focus,
.field input:focus,
.field textarea:focus {
  border-color: rgba(201, 168, 106, 0.48);
  background: rgba(11, 15, 22, 0.96);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.10), 0 4px 12px rgba(0,0,0,0.2);
}

/* Send button in chat */
.chat-form .primary {
  padding: 12px 18px;
  border-radius: 14px;
  white-space: nowrap;
}

/* --- Panel (booking / about card) --- */
.panel {
  border-radius: 20px;
  border-color: rgba(201, 168, 106, 0.14);
  background:
    linear-gradient(150deg, rgba(16, 19, 24, 0.94), rgba(11, 14, 19, 0.96)),
    radial-gradient(320px 160px at 100% 0%, rgba(201, 168, 106, 0.07), transparent 74%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255,255,255,0.03);
  padding: 18px;
}

/* --- Booking steps: cleaner --- */
.booking-step {
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 106, 0.14);
  background:
    linear-gradient(150deg, rgba(16, 20, 26, 0.94), rgba(11, 15, 20, 0.96));
  padding: 14px 16px;
  margin-bottom: 12px;
}

.booking-step::before {
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.7), rgba(46, 126, 111, 0.45));
  height: 2px;
}

.list-item-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #f2ead8;
  margin-bottom: 6px;
}

.list-item-text {
  font-size: 13.5px;
  color: rgba(195, 182, 160, 0.88);
  line-height: 1.55;
}

/* --- Slot grid: comfortable touch targets --- */
.grid-button {
  border: 1px solid rgba(201, 168, 106, 0.24);
  border-radius: 12px;
  background: rgba(12, 16, 22, 0.88);
  color: rgba(225, 210, 185, 0.90);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 14px;
  cursor: pointer;
  min-height: 44px;
}
.grid-button:hover {
  border-color: rgba(220, 185, 128, 0.52);
  color: #f5ead8;
  background: rgba(16, 21, 28, 0.94);
  transform: translateY(-1px);
}

/* --- Slot date chips --- */
.slot-date-chip {
  border: 1px solid rgba(201, 168, 106, 0.22);
  border-radius: 10px;
  background: rgba(11, 14, 20, 0.86);
  color: rgba(220, 207, 183, 0.88);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.16s, background 0.16s, color 0.16s;
}
.slot-date-chip.is-active,
.slot-date-chip:hover {
  border-color: rgba(230, 195, 130, 0.70);
  background: rgba(18, 23, 30, 0.96);
  color: #f5ead8;
}

/* --- Service category cards: deeper glow --- */
.category-card {
  border-color: rgba(201, 168, 106, 0.16);
  background:
    linear-gradient(165deg, rgba(17, 20, 26, 0.96), rgba(13, 16, 21, 0.97)),
    radial-gradient(220px 110px at 95% 8%, rgba(201, 168, 106, 0.08), transparent 72%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(220, 185, 128, 0.34);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38), 0 0 20px rgba(201, 168, 106, 0.08);
}

/* --- Service modal: luxury sheet --- */
.service-modal__dialog {
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(201, 168, 106, 0.20);
  background:
    radial-gradient(560px 280px at 100% 0%, rgba(201, 168, 106, 0.08) 0%, transparent 78%),
    linear-gradient(168deg, rgba(12, 15, 21, 0.99), rgba(8, 11, 16, 0.99));
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.5);
}

.service-modal__title {
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f6ead5;
}

.service-modal__cta {
  width: 100%;
  border-radius: 16px;
  padding: 15px 20px;
  font-size: 15px;
}

/* --- Toast: centered & polished --- */
.toast {
  border-radius: 14px;
  background: rgba(16, 20, 26, 0.96);
  border: 1px solid rgba(201, 168, 106, 0.30);
  color: rgba(230, 215, 192, 0.96);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.40), 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  letter-spacing: 0.01em;
}

/* --- Field label --- */
.label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(200, 168, 106, 0.72);
  margin-bottom: 6px;
  display: block;
}

/* --- Empty state --- */
.empty {
  color: rgba(185, 170, 148, 0.72);
  font-size: 14px;
  text-align: center;
  padding: 24px 16px;
  letter-spacing: 0.01em;
}

/* --- Inline actions row --- */
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

/* --- About screen: softer link buttons --- */
.about-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 106, 0.28);
  background: rgba(13, 17, 23, 0.88);
  color: rgba(225, 212, 188, 0.92);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
}
.about-link-btn:hover {
  border-color: rgba(220, 185, 128, 0.52);
  color: #f5ead8;
  transform: translateY(-1px);
}

/* --- Status pill in topbar (depth screens) --- */
.shell.depth-active .status {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-color: rgba(201, 168, 106, 0.22);
  background: rgba(9, 12, 17, 0.80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- Brand in topbar (depth screens) --- */
.shell.depth-active .brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #f8f2e9 20%, #d6a85e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Mobile micro-improvements --- */
@media (max-width: 480px) {
  .chat { max-height: 44vh; }
  .panel { padding: 14px; }
  .primary { padding: 13px 16px; font-size: 14px; }
  .screen-header h2 { font-size: clamp(20px, 6vw, 26px); }
  .service-modal__dialog { border-radius: 20px 20px 0 0; }
  .toast { font-size: 13px; padding: 11px 16px; }
}
