/* ========================================================================
   Salón na malém náměstí — Maria Khalikova
   Design system (růžovo-pudrová paleta) + utilities
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,ital,wght@9..144,0,300;9..144,0,400;9..144,0,500;9..144,0,600;9..144,0,700;9..144,1,300;9..144,1,400;9..144,1,500;9..144,1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Pudrová paleta */
  --cream: #faf4ee;
  --cream-2: #f3e9df;
  --pudr: #f5dcd0;
  --pudr-2: #ecc4b3;
  --rose: #d99a8a;
  --rose-deep: #b86f5e;
  --plum: #5a3a36;
  --ink: #2a1f1d;
  --muted: #8a6f6a;
  --line: #e9d6c8;
  --gold: #c9a16d;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(90, 58, 54, 0.06), 0 4px 12px rgba(90, 58, 54, 0.04);
  --shadow-md: 0 4px 16px rgba(90, 58, 54, 0.08), 0 12px 36px rgba(90, 58, 54, 0.06);
  --shadow-lg: 0 8px 28px rgba(90, 58, 54, 0.12), 0 24px 60px rgba(90, 58, 54, 0.10);
}

/* Pivoňka theme — alternativní accent */
body.theme-pivonka {
  --rose: #e8a8a8;
  --rose-deep: #c97c80;
  --pudr: #f0d6cc;
  --pudr-2: #e8b8b8;
  --cream-2: #efe6d6;
  --line: #d8c8b6;
  --plum: #3a2a26;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  scroll-behavior: smooth;
}

button { font-family: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ─── Typography ──────────────────────────────────────────── */
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.h-title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.body { font-size: 14px; line-height: 1.5; }
.tiny { font-size: 11px; letter-spacing: 0.04em; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--sans);
  text-decoration: none;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--plum); transform: translateY(-1px); }
.btn-rose { background: var(--rose-deep); color: var(--cream); }
.btn-rose:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--cream-2); }
.btn-block { width: 100%; }

/* ─── Pills / chips ───────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--cream-2);
  color: var(--plum);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  font-family: var(--sans);
}
.chip.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.chip.is-outline {
  background: transparent;
  border-color: var(--line);
}

/* ─── Card ────────────────────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
}

/* ─── Lang switch ─────────────────────────────────────────── */
.lang-switch {
  display: inline-flex;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 3px;
  gap: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.lang-switch.dark { background: rgba(255,255,255,0.12); backdrop-filter: blur(4px); }
.lang-switch button {
  padding: 4px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--plum);
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.lang-switch.dark button { color: rgba(255,255,255,0.85); }
.lang-switch button.is-active { background: var(--ink); color: var(--cream); }
.lang-switch.dark button.is-active { background: var(--cream); color: var(--ink); }

/* ─── Inline lang (text dots) ─────────────────────────────── */
.lang-inline {
  display: flex;
  gap: 2px;
  align-items: center;
  font-size: 11px;
}
.lang-inline button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum);
  font-size: 10px;
  font-weight: 400;
  opacity: 0.5;
}
.lang-inline button.is-active { font-weight: 700; opacity: 1; }
.lang-inline .sep { opacity: 0.4; }
.lang-inline.dark button { color: white; opacity: 0.65; }
.lang-inline.dark button.is-active { opacity: 1; }

/* ─── Form fields ─────────────────────────────────────────── */
.dfield-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 8px;
  display: block;
}
.dfield input, .dfield textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  color: var(--ink);
  transition: border-color 0.15s;
}
.dfield textarea { height: auto; padding: 12px 16px; resize: vertical; min-height: 80px; }
.dfield input:focus, .dfield textarea:focus { border-color: var(--rose-deep); }

/* Borderless underline field (mobile) */
.field-line { display: flex; flex-direction: column; gap: 4px; padding: 8px 0; }
.field-line label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-deep);
}
.field-line input {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 6px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.field-line input:focus { border-bottom-color: var(--rose-deep); }

/* ─── DateStrip (horizontal scroll) ───────────────────────── */
.datestrip {
  display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 4px; scrollbar-width: none;
}
.datestrip::-webkit-scrollbar { display: none; }
.datestrip-day {
  flex: 0 0 auto;
  width: 56px; height: 72px;
  border-radius: 14px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  transition: all 0.15s;
}
.datestrip-day .d-name { font-size: 10px; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.08em; }
.datestrip-day .d-num { font-family: var(--serif); font-size: 22px; line-height: 1; }
.datestrip-day .d-mo { font-size: 9px; opacity: 0.5; }
.datestrip-day.is-weekend { color: var(--rose-deep); }
.datestrip-day.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ─── Toast ───────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.toast.is-show { opacity: 1; transform: translate(-50%, -8px); }

/* ===========================================================
   LANDING PAGE
   =========================================================== */
.landing-page {
  background: var(--cream-2);
  min-height: 100vh;
  color: var(--plum);
}

/* Sticky nav */
.lp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.lp-logo {
  display: flex; flex-direction: column; line-height: 1.1;
}
.lp-logo .logo-main {
  font-family: var(--serif); font-style: italic;
  font-size: 24px; color: var(--plum);
  letter-spacing: -0.02em;
}
.lp-logo .logo-sub {
  font-size: 9px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--rose-deep);
  font-weight: 600;
}
.lp-nav-links {
  display: flex; gap: 28px;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--plum);
}
.lp-nav-links a { text-decoration: none; transition: color 0.15s; }
.lp-nav-links a:hover { color: var(--rose-deep); }
.lp-nav-actions {
  display: flex; align-items: center; gap: 14px;
}
.lp-nav-actions .btn-pill {
  height: 36px; padding: 0 18px; border-radius: 18px;
  font-size: 12px; font-weight: 500; cursor: pointer;
  transition: all 0.15s;
}
.lp-nav-actions .btn-pill.outline {
  border: 1px solid var(--rose-deep);
  background: transparent;
  color: var(--rose-deep);
}
.lp-nav-actions .btn-pill.outline:hover { background: var(--rose-deep); color: white; }
.lp-nav-actions .btn-pill.fill {
  border: none;
  background: var(--rose-deep);
  color: white;
}
.lp-nav-actions .btn-pill.fill:hover { filter: brightness(1.05); }

/* Hero */
.lp-hero {
  position: relative; height: 720px; overflow: hidden;
}
.lp-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.lp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58,42,38,0.15) 0%, rgba(58,42,38,0.05) 25%, rgba(58,42,38,0.45) 65%, rgba(40,28,26,0.85) 100%);
}
.lp-hero-content {
  position: absolute; inset: 0;
  padding: 0 56px 72px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: white;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.lp-hero-content .eyebrow-light {
  font-size: 11px; letter-spacing: 0.42em;
  text-transform: uppercase; margin-bottom: 18px;
  opacity: 0.95; color: white; font-weight: 600;
}
.lp-hero-content h1 {
  font-family: var(--serif); font-size: 88px; line-height: 0.95;
  margin: 0 0 20px; letter-spacing: -0.025em; font-weight: 300;
  font-style: italic; max-width: 760px; color: white;
}
.lp-hero-content .lead {
  font-size: 18px; line-height: 1.6; max-width: 540px;
  margin: 0 0 32px; color: white;
}
.lp-hero-cta {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.lp-hero-cta .pill {
  height: 52px; padding: 0 32px;
  display: inline-flex; align-items: center;
  background: white; color: var(--plum);
  border-radius: 26px; text-decoration: none;
  font-size: 13px; letter-spacing: 0.04em; font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}
.lp-hero-cta .pill:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.lp-hero-cta .free {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: white;
}
.lp-hero-cta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #90c878; display: inline-block;
  box-shadow: 0 0 0 4px rgba(144,200,120,0.25);
}

/* Space sections */
.lp-space { padding: 90px 56px 60px; background: var(--cream-2); }
.lp-space-row {
  display: grid; gap: 48px; align-items: center;
}
.lp-space-row.row-1 { grid-template-columns: 1.2fr 1fr; margin-bottom: 40px; }
.lp-space-row.row-2 { grid-template-columns: 1fr 1.2fr; margin-top: 40px; }
.lp-space h2 {
  font-family: var(--serif); font-style: italic;
  font-size: 56px; margin: 0 0 24px; font-weight: 300;
  letter-spacing: -0.02em; line-height: 1.05; color: var(--plum);
}
.lp-divider {
  width: 60px; height: 1px;
  background: var(--rose-deep);
  margin-bottom: 24px;
}
.lp-space p {
  font-size: 17px; line-height: 1.7;
  color: var(--plum); max-width: 460px; margin: 0;
}
.lp-space-img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
  border-radius: 4px;
}
.lp-info-card {
  background: white; padding: 36px;
  border: 1px solid var(--line); border-radius: 4px;
}
.lp-info-grid {
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px 24px; font-size: 13px; color: var(--plum);
  align-items: baseline;
}
.lp-info-grid dt {
  font-size: 9px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--rose-deep);
  padding-top: 3px; font-weight: 600;
}
.lp-info-grid dd {
  font-family: var(--serif); font-style: italic; font-size: 17px;
}

/* Calendar section */
.lp-cal { padding: 60px 56px 80px; background: var(--pudr); }
.lp-cal-head { text-align: center; margin-bottom: 36px; }
.lp-cal-head .eyebrow { margin-bottom: 12px; }
.lp-cal-head h2 {
  font-family: var(--serif); font-style: italic;
  font-size: 52px; margin: 0 0 10px;
  font-weight: 300; letter-spacing: -0.02em;
  color: var(--plum);
}
.lp-cal-head p { font-size: 14px; color: var(--plum); opacity: 0.7; margin: 0; }

.lp-cal-toggle {
  display: flex; justify-content: center; margin-bottom: 24px;
}
.lp-cal-toggle-inner {
  display: flex; gap: 4px; padding: 4px;
  background: white; border-radius: 28px;
  border: 1px solid var(--line);
}
.lp-cal-toggle button {
  padding: 9px 22px; border-radius: 22px;
  background: transparent; color: var(--plum);
  border: none; cursor: pointer;
  font-size: 12px; font-weight: 500;
  transition: all 0.15s;
}
.lp-cal-toggle button.is-active {
  background: var(--plum); color: white;
}

.lp-cal-grid {
  background: white; border-radius: 8px;
  overflow: hidden; border: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(6, 1fr);
}
.lp-cal-day {
  padding: 20px 14px; min-height: 280px;
  border-right: 1px solid var(--line);
}
.lp-cal-day:last-child { border-right: none; }
.lp-cal-day .d-name {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rose-deep);
  margin-bottom: 4px; font-weight: 600;
}
.lp-cal-day .d-num {
  font-family: var(--serif); font-size: 28px;
  font-weight: 300; margin-bottom: 14px; font-style: italic;
}
.lp-cal-slots { display: flex; flex-direction: column; gap: 6px; }
.lp-cal-slot {
  padding: 7px 10px; border-radius: 6px;
  background: var(--cream-2);
  color: var(--plum);
  border: 1px solid var(--rose-deep);
  cursor: pointer;
  font-size: 11px; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--sans);
  transition: all 0.15s;
}
.lp-cal-slot:hover { background: var(--pudr); transform: translateY(-1px); }
.lp-cal-slot .label-2h { font-size: 9px; color: var(--rose-deep); letter-spacing: 0.05em; }
.lp-cal-slot.is-taken {
  background: transparent;
  border: 1px dashed var(--line);
  cursor: default;
  opacity: 0.35;
}
.lp-cal-slot.is-taken:hover { transform: none; background: transparent; }

/* About */
.lp-about {
  padding: 90px 56px;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; align-items: center;
  background: var(--cream-2);
}
.lp-about-photo { position: relative; }
.lp-about-photo img {
  width: 100%; height: 560px; object-fit: cover;
  display: block; border-radius: 4px;
}
.lp-about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--rose-deep); color: white;
  padding: 12px 20px; border-radius: 4px;
  font-family: var(--serif); font-style: italic;
  font-size: 18px; letter-spacing: -0.01em;
}
.lp-about h2 {
  font-family: var(--serif); font-style: italic;
  font-size: 64px; margin: 0 0 24px;
  font-weight: 300; letter-spacing: -0.025em; line-height: 1;
  color: var(--plum);
}
.lp-about-bio {
  font-family: var(--serif); font-size: 19px; line-height: 1.7;
  color: var(--plum); font-style: italic;
  margin: 0 0 32px; max-width: 480px;
}
.lp-about-cta {
  height: 52px; padding: 0 32px;
  display: inline-flex; align-items: center;
  background: var(--plum); color: white;
  border-radius: 26px; text-decoration: none;
  font-size: 13px; letter-spacing: 0.04em; font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}
.lp-about-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Footer */
.lp-footer {
  padding: 36px 56px;
  background: var(--plum); color: var(--cream-2);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.lp-footer .brand {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; letter-spacing: -0.01em;
  text-transform: none;
}
.lp-footer .copy { opacity: 0.7; }

/* ─── Mobile-only elementy (skryté na desktopu) ─── */
.lp-mobile-only { display: none; }

/* Responsive landing */
@media (max-width: 900px) {
  .lp-mobile-only { display: block; }
  .lp-desktop-only { display: none; }
  .lp-nav { padding: 16px 22px; flex-wrap: wrap; gap: 12px; }
  .lp-nav-links { display: none; }
  .lp-hero { height: 560px; }
  .lp-hero-content { padding: 0 22px 48px; }
  .lp-hero-content h1 { font-size: 56px; }
  .lp-hero-content .lead { font-size: 16px; }
  .lp-space { padding: 60px 22px 40px; }
  .lp-space-row.row-1, .lp-space-row.row-2 { grid-template-columns: 1fr; gap: 24px; margin: 0; }
  .lp-space h2 { font-size: 40px; }
  .lp-space-img { height: 320px; }
  .lp-info-card { padding: 22px; }
  .lp-cal { padding: 50px 16px 60px; }
  .lp-cal-head h2 { font-size: 36px; }
  .lp-cal-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-cal-day { min-height: auto; }
  .lp-cal-day:nth-child(2n) { border-right: none; }
  .lp-cal-day { border-bottom: 1px solid var(--line); }
  .lp-about { padding: 60px 22px; grid-template-columns: 1fr; gap: 40px; }
  .lp-about h2 { font-size: 44px; }
  .lp-about-photo img { height: 380px; }
  .lp-footer { padding: 24px 22px; flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .lp-hero-content h1 { font-size: 42px; }
}

/* ─── Mobile-specific styles (≤900px) ─── */
@media (max-width: 900px) {
  /* Sticky top bar with backdrop blur */
  .lp-nav {
    background: rgba(243, 233, 223, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 18px;
  }
  .lp-nav-actions { gap: 8px; }
  .lp-nav-actions .btn-pill { height: 28px; padding: 0 12px; font-size: 10px; border-radius: 14px; }
  .lp-logo .logo-main { font-size: 18px; }
  .lp-logo .logo-sub { font-size: 7.5px; }

  /* Hero — kratší + silnější bottom gradient */
  .lp-hero { height: 520px; }
  .lp-hero-overlay {
    background: linear-gradient(180deg, rgba(58,42,38,0.35) 0%, rgba(58,42,38,0.15) 30%, rgba(58,42,38,0.55) 70%, rgba(40,28,26,0.92) 100%);
  }
  .lp-hero-content { padding: 24px 22px 28px; }
  .lp-hero-content .eyebrow-light { font-size: 9px; letter-spacing: 0.36em; margin-bottom: 12px; }
  .lp-hero-content h1 { font-size: 44px; margin-bottom: 14px; }
  .lp-hero-content .lead { font-size: 14px; margin-bottom: 18px; }
  /* Hide CTA in hero — uses sticky bottom CTA instead */
  .lp-hero-content .lp-hero-cta .pill { display: none; }
  .lp-hero-content .lp-hero-cta .free { font-size: 11px; }
  .lp-hero-content .lp-hero-cta .dot { width: 7px; height: 7px; box-shadow: 0 0 0 3px rgba(144,200,120,0.3); }

  /* Info strip — adresa + hodiny grid */
  .lp-info-strip {
    padding: 16px 18px; background: white;
    border-bottom: 1px solid var(--line);
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px;
    font-size: 11px;
  }
  .lp-info-strip .label {
    font-size: 8px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--rose-deep); font-weight: 600; margin-bottom: 4px;
  }
  .lp-info-strip .val {
    font-family: var(--serif); font-style: italic; font-size: 13px; line-height: 1.3;
    color: var(--plum); text-decoration: none;
  }

  /* Gallery — horizontální scroll snap */
  .lp-mobile-gallery {
    padding: 28px 0 24px; background: var(--cream-2);
  }
  .lp-mobile-gallery-head {
    padding: 0 18px; margin-bottom: 14px;
    display: flex; align-items: baseline; justify-content: space-between;
  }
  .lp-mobile-gallery-head .eyebrow { font-size: 9px; margin-bottom: 6px; }
  .lp-mobile-gallery-head h2 {
    font-family: var(--serif); font-style: italic;
    font-size: 28px; margin: 0;
    font-weight: 300; letter-spacing: -0.02em; line-height: 1.05;
    color: var(--plum);
  }
  .lp-mobile-gallery-head .count {
    font-size: 9px; color: var(--plum); opacity: 0.5;
    letter-spacing: 0.18em; text-transform: uppercase;
  }
  .lp-mobile-gallery-track {
    display: flex; gap: 10px; padding: 0 18px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .lp-mobile-gallery-track::-webkit-scrollbar { display: none; }
  .lp-mobile-gallery-item {
    flex: 0 0 78%; height: 320px;
    scroll-snap-align: start;
    border-radius: 4px; overflow: hidden;
  }
  .lp-mobile-gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .lp-mobile-gallery-track::after {
    content: ''; flex: 0 0 18px;
  }
  .lp-mobile-gallery .lead {
    font-size: 13px; line-height: 1.6; color: var(--plum);
    padding: 18px 22px 0; margin: 0; opacity: 0.85;
  }

  /* Services list — 4 položky 2H each */
  .lp-mobile-services {
    padding: 24px 18px; background: white;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .lp-mobile-services .eyebrow { font-size: 9px; margin-bottom: 12px; }
  .lp-mobile-services-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
  }
  .lp-mobile-services-row:last-child { border-bottom: none; }
  .lp-mobile-services-row .name {
    font-family: var(--serif); font-style: italic;
    font-size: 17px; color: var(--plum);
  }
  .lp-mobile-services-row .dur {
    font-size: 11px; letter-spacing: 0.18em;
    color: var(--rose-deep); font-weight: 600;
  }

  /* Calendar — day strip + slot grid */
  .lp-cal { padding: 32px 18px; background: var(--pudr); }
  .lp-cal-head { margin-bottom: 16px; }
  .lp-cal-head h2 { font-size: 32px; }
  .lp-cal-head p { font-size: 11px; }

  .lp-cal-grid { display: none; }
  .lp-cal-mobile {
    margin-top: 12px;
  }
  .lp-cal-mobile-days {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
    margin-bottom: 12px;
  }
  .lp-cal-mobile-day {
    padding: 8px 0; border-radius: 6px;
    background: white; color: var(--plum);
    border: 1px solid var(--line);
    cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    font-family: var(--sans);
    transition: all 0.15s;
  }
  .lp-cal-mobile-day .name {
    font-size: 8px; letter-spacing: 0.18em;
    text-transform: uppercase; opacity: 0.6; font-weight: 600;
  }
  .lp-cal-mobile-day .num {
    font-family: var(--serif); font-style: italic; font-size: 18px;
  }
  .lp-cal-mobile-day .free-cnt {
    font-size: 8px; color: var(--rose-deep); font-weight: 600;
  }
  .lp-cal-mobile-day.is-active {
    background: var(--plum); color: white; border-color: var(--plum);
  }
  .lp-cal-mobile-day.is-active .free-cnt { color: rgba(255,255,255,0.7); }
  .lp-cal-mobile-day.is-active .name { opacity: 0.85; }

  .lp-cal-mobile-slots {
    background: white; border-radius: 8px; padding: 10px;
    border: 1px solid var(--line);
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  }

  /* About — fotka + překryvný badge, menší typ */
  .lp-about { padding: 32px 18px 24px; grid-template-columns: 1fr; gap: 18px; }
  .lp-about-photo img { height: 280px; }
  .lp-about-badge {
    bottom: -10px; right: 14px;
    padding: 8px 14px; font-size: 13px;
  }
  .lp-about h2 { font-size: 36px; margin-bottom: 14px; }
  .lp-about-bio { font-size: 15px; }
  .lp-about-cta { display: none; }

  /* Contact card — pod about */
  .lp-mobile-contact {
    padding: 20px 18px 28px; background: var(--cream-2);
  }
  .lp-mobile-contact-card {
    background: white; padding: 18px;
    border: 1px solid var(--line); border-radius: 4px;
    display: grid; grid-template-columns: auto 1fr;
    gap: 10px 16px; font-size: 11px;
    align-items: baseline;
  }
  .lp-mobile-contact-card dt {
    font-size: 8px; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--rose-deep);
    font-weight: 600;
  }
  .lp-mobile-contact-card dd {
    font-family: var(--serif); font-style: italic; font-size: 14px;
    color: var(--plum);
  }
  .lp-mobile-contact-card a {
    color: inherit; text-decoration: none;
  }

  .lp-footer { padding: 20px 18px; flex-direction: column; gap: 6px; text-align: center; }
  .lp-footer .brand { font-size: 14px; }
  .lp-footer .copy { font-size: 8px; letter-spacing: 0.18em; }

  /* Sticky bottom CTA */
  .lp-mobile-sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px 18px 16px;
    background: linear-gradient(180deg, rgba(243,233,223,0) 0%, rgba(243,233,223,0.95) 30%, rgba(243,233,223,1) 100%);
    display: flex; gap: 8px; align-items: center;
    z-index: 40;
  }
  .lp-mobile-sticky-call {
    width: 48px; height: 48px; border-radius: 24px;
    border: 1px solid var(--rose-deep); background: white;
    display: flex; align-items: center; justify-content: center;
    color: var(--rose-deep); text-decoration: none; flex-shrink: 0;
  }
  .lp-mobile-sticky-book {
    flex: 1; height: 48px; border-radius: 24px;
    background: var(--rose-deep); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; letter-spacing: 0.04em; font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(184, 111, 94, 0.32);
  }

  /* Posunout obsah aby ho sticky CTA nezakrývalo */
  body.landing-page { padding-bottom: 80px; }
}

/* ===========================================================
   BOOKING PAGE — Mobile B + Desktop B
   =========================================================== */
.booking-page {
  min-height: 100vh;
  background: var(--cream);
}

/* Desktop B — editorial split */
.dbk {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
  background: var(--cream);
}
.dbk-hero {
  position: relative;
  padding: 52px 56px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  min-height: 820px;
}
.dbk-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.dbk-hero .overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(40,28,26,0.45) 0%, rgba(40,28,26,0.15) 35%, rgba(40,28,26,0.1) 55%, rgba(40,28,26,0.78) 100%);
}
.dbk-hero-top, .dbk-hero-bottom {
  position: relative; z-index: 2;
  color: white; text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.dbk-hero-top {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 64px;
}
.dbk-hero-top .logo-main {
  font-family: var(--serif); font-style: italic;
  font-size: 30px; color: white;
}
.dbk-hero-top .logo-sub {
  font-size: 9px; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.dbk-hero-bottom .eyebrow-light {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 16px;
  color: rgba(255,255,255,0.9); font-weight: 600;
}
.dbk-hero-bottom h1 {
  font-family: var(--serif); font-style: italic;
  font-size: 84px; line-height: 0.95; margin: 0 0 28px;
  letter-spacing: -0.02em; color: white; font-weight: 300;
}
.dbk-form {
  padding: 52px 56px;
  overflow: auto;
  display: flex; flex-direction: column; gap: 28px;
}
.dbk-section .eyebrow { margin-bottom: 10px; }
.dbk-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.dbk-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-size: 12px; font-family: var(--sans); font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.dbk-chip:hover { border-color: var(--rose-deep); }
.dbk-chip.is-active {
  background: var(--ink); color: var(--cream);
  border-color: var(--ink);
}
.dbk-times {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.dbk-time {
  height: 38px; border-radius: 10px;
  border: 1px solid var(--line);
  background: white; color: var(--ink);
  font-size: 13px; font-family: var(--sans); font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.dbk-time:hover:not(:disabled) { border-color: var(--rose-deep); }
.dbk-time.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.dbk-time:disabled {
  background: transparent; color: rgba(0,0,0,0.2);
  text-decoration: line-through; cursor: not-allowed;
  border-style: dashed;
}
.dbk-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.dbk-confirm {
  margin-top: auto;
  height: 56px;
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  background: var(--ink); color: var(--cream);
  border: none; border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s;
}
.dbk-confirm:disabled { opacity: 0.4; cursor: not-allowed; }
.dbk-confirm:hover:not(:disabled) { background: var(--plum); transform: translateY(-1px); }
.dbk-confirm .label {
  font-family: var(--serif); font-style: italic; font-size: 18px;
}
.dbk-confirm .summary { font-size: 13px; opacity: 0.7; }

/* Mobile B — hidden by default, shown ≤720px */
.mbk { display: none; }

@media (max-width: 720px) {
  .dbk { display: none; }
  .mbk {
    display: block;
    background: var(--cream);
    min-height: 100vh;
  }
  .mbk-hero {
    position: relative; height: 240px; overflow: hidden;
  }
  .mbk-hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
  }
  .mbk-hero .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(40,28,26,0.55) 0%, rgba(40,28,26,0.1) 35%, rgba(40,28,26,0.05) 60%, rgba(40,28,26,0.78) 100%);
  }
  .mbk-hero-top {
    position: absolute; top: 14px; left: 18px; right: 18px;
    display: flex; justify-content: space-between; align-items: center;
    color: white; text-shadow: 0 1px 8px rgba(0,0,0,0.4); z-index: 2;
  }
  .mbk-hero-top .eyebrow {
    color: rgba(255,255,255,0.85); font-size: 9px;
  }
  .mbk-hero-top .logo-main {
    font-family: var(--serif); font-style: italic; font-size: 22px; color: white;
  }
  .mbk-hero-bottom {
    position: absolute; bottom: 16px; left: 18px; right: 18px;
    color: white; text-shadow: 0 2px 12px rgba(0,0,0,0.5); z-index: 2;
  }
  .mbk-hero-bottom h1 {
    font-family: var(--serif); font-style: italic;
    font-size: 32px; line-height: 0.95; color: white;
    font-weight: 400; margin: 0;
  }
  .mbk-hero-bottom h1 .sub {
    font-family: var(--sans); font-style: normal; font-weight: 300;
    font-size: 14px; opacity: 0.92; letter-spacing: 0.04em;
    display: block; margin-top: 2px;
  }
  .mbk-body { padding: 14px 18px 24px; }
  .mbk-section { border-bottom: 1px solid var(--line); padding: 14px 0; }
  .mbk-section:last-of-type { border-bottom: none; }
  .mbk-section-head {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; border: none; background: transparent;
    padding: 0; cursor: pointer; text-align: left; font-family: var(--sans);
  }
  .mbk-section-head .eyebrow { font-size: 9px; margin-bottom: 2px; }
  .mbk-section-head .value {
    font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--ink);
  }
  .mbk-section-head .chev {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream-2);
    transition: transform 0.2s; flex: 0 0 auto;
  }
  .mbk-section.is-open .mbk-section-head .chev { transform: rotate(180deg); }
  .mbk-section-body {
    display: none;
    padding-top: 14px;
  }
  .mbk-section.is-open .mbk-section-body { display: block; }

  .mbk-svc {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px; border-radius: 10px;
    border: 1px solid var(--line);
    background: white;
    color: var(--ink);
    cursor: pointer; text-align: left; width: 100%;
    margin-bottom: 6px;
    font-family: var(--sans);
    transition: all 0.15s;
  }
  .mbk-svc:hover { border-color: var(--rose-deep); }
  .mbk-svc.is-active {
    background: var(--ink); color: var(--cream); border-color: var(--ink);
  }
  .mbk-svc .name { font-size: 13px; font-weight: 500; }
  .mbk-svc .meta { font-size: 12px; opacity: 0.75; font-variant-numeric: tabular-nums; }

  .mbk-times {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin-top: 14px;
  }
  .mbk-time {
    padding: 11px 6px; border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--pudr); color: var(--plum);
    font-size: 13px; font-weight: 600;
    font-variant-numeric: tabular-nums;
    cursor: pointer;
    font-family: var(--sans);
    transition: all 0.15s;
  }
  .mbk-time.is-active {
    background: var(--ink); color: var(--cream); border-color: var(--ink);
  }
  .mbk-time:disabled {
    background: transparent; color: rgba(0,0,0,0.22);
    border-color: var(--line); border-style: dashed;
    text-decoration: line-through; cursor: not-allowed;
  }
  .mbk-fields {
    display: flex; flex-direction: column; gap: 10px;
  }
  .mbk-confirm-tip {
    margin-top: 12px; text-align: center;
    font-size: 11px; color: var(--muted);
  }
  .mbk-success {
    padding: 24px; text-align: center;
  }
  .mbk-success h2 { font-size: 32px; margin: 12px 0 8px; }
  .mbk-success .sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
  .mbk-success .summary-card {
    background: var(--cream-2); padding: 16px;
    border-radius: 14px; text-align: left; margin-bottom: 12px;
  }
  .mbk-success .summary-row {
    display: flex; justify-content: space-between; font-size: 13px;
    padding: 6px 0;
  }
  .mbk-success .summary-row .k {
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--rose-deep); font-weight: 600;
  }
  .mbk-success .summary-row .v {
    font-family: var(--serif); font-style: italic; color: var(--ink);
  }
}

/* ===========================================================
   ADMIN PANEL
   =========================================================== */
.admin-page {
  min-height: 100vh;
  background: var(--cream-2);
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
}
.admin-shell {
  width: 100%; max-width: 1100px; min-height: 720px;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  font-family: var(--sans);
}

/* Sidebar */
.admin-sidebar {
  width: 230px; padding: 24px 18px;
  background: white;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  flex: 0 0 230px;
}
.admin-logo .main {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--ink);
}
.admin-logo .sub {
  font-size: 11px; color: var(--muted);
}
.admin-nav {
  display: flex; flex-direction: column; gap: 2px; margin-top: 28px;
}
.admin-nav button {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border: none; cursor: pointer;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  text-align: left; transition: all 0.15s;
}
.admin-nav button:hover { background: var(--cream-2); }
.admin-nav button.is-active {
  background: var(--ink); color: var(--cream);
}
.admin-nav button .ico { opacity: 0.6; }
.admin-spacer { flex: 1; }
.admin-sync-card {
  padding: 12px; border-radius: 12px;
  background: var(--cream-2);
  font-size: 11px; color: var(--plum);
}
.admin-sync-card .head {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 4px; font-weight: 600;
}
.admin-sync-card .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3da66e; flex: 0 0 6px;
}
.admin-sync-card .email { opacity: 0.7; font-size: 10px; }
.admin-sidebar .lang-block {
  margin-top: 12px;
  display: flex; justify-content: flex-start;
}

/* Main */
.admin-main { flex: 1; padding: 24px 32px; overflow: auto; }
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; gap: 12px; flex-wrap: wrap;
}
.admin-header h1 { font-size: 30px; margin: 0; }
.admin-header .eyebrow { font-size: 10px; margin-bottom: 4px; }

/* KPI cards */
.admin-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 22px;
}
.kpi { padding: 16px; }
.kpi .eyebrow { font-size: 9px; margin-bottom: 6px; }
.kpi .value {
  font-family: var(--serif); font-size: 26px; line-height: 1;
}
.kpi .sub {
  font-size: 11px; color: var(--muted); margin-top: 4px;
}

/* Day view */
.admin-day {
  display: grid; grid-template-columns: 1fr 320px; gap: 18px;
}
.timeline-card { padding: 0; overflow: hidden; }
.timeline-head {
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.timeline-head .title { font-family: var(--serif); font-size: 17px; }
.timeline-nav-btn {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1px solid var(--line); background: white;
  cursor: pointer; font-size: 14px; color: var(--ink);
  margin-left: 4px;
}
.timeline-nav-btn:hover { background: var(--cream-2); }
.timeline-body {
  position: relative; padding: 12px 0;
}
.timeline-row {
  height: 44px;
  display: grid; grid-template-columns: 60px 1fr;
  border-bottom: 1px dashed rgba(184,111,94,0.12);
}
.timeline-row .hour {
  font-size: 11px; color: var(--muted);
  padding-left: 18px; padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.booking {
  position: absolute;
  left: 70px; right: 18px;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.booking:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.booking-row1 {
  display: flex; justify-content: space-between; align-items: baseline;
}
.booking .name { font-size: 13px; font-weight: 600; }
.booking .time { font-size: 11px; opacity: 0.7; font-variant-numeric: tabular-nums; }
.booking .service { font-size: 11px; opacity: 0.75; }
.booking.status-done {
  background: var(--cream-2); color: var(--plum);
  border-left: 3px solid #a08070; opacity: 0.6;
}
.booking.status-confirmed {
  background: #fbe5dc; color: var(--rose-deep);
  border-left: 3px solid var(--rose-deep);
}
.booking.status-pending {
  background: white; color: var(--ink);
  border-left: 3px solid #d4a857;
}

/* Side cards */
.admin-side {
  display: flex; flex-direction: column; gap: 14px;
}
.admin-side .eyebrow { margin-bottom: 10px; }
.upnext-row {
  display: flex; gap: 12px; align-items: center; margin-bottom: 12px;
}
.avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--pudr);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; color: var(--plum);
  flex: 0 0 52px;
}
.upnext-info .name { font-family: var(--serif); font-size: 17px; }
.upnext-info .meta { font-size: 11px; color: var(--muted); }
.upnext-actions {
  display: flex; gap: 6px;
}
.upnext-actions .chip { flex: 1; justify-content: center; }
.upnext-actions .chip.flex2 { flex: 2; }

.pending-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
}
.pending-row + .pending-row { border-top: 1px solid rgba(184,111,94,0.1); }
.pending-row .name { font-size: 13px; font-weight: 500; }
.pending-row .meta { font-size: 11px; color: var(--muted); }
.pending-actions { display: flex; gap: 4px; }
.pending-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 12px;
  transition: all 0.15s;
}
.pending-btn.ok { background: var(--ink); color: var(--cream); }
.pending-btn.ok:hover { background: var(--plum); }
.pending-btn.no { border: 1px solid var(--line); background: white; color: var(--muted); }
.pending-btn.no:hover { background: var(--cream-2); color: var(--ink); }

.gcal-card {
  background: linear-gradient(135deg, var(--pudr), var(--rose));
  border: none; color: var(--plum);
  padding: 16px; border-radius: var(--r-md);
}
.gcal-card .head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.gcal-card .head strong { font-weight: 600; font-size: 12px; }
.gcal-card .desc { font-size: 11px; opacity: 0.85; }

.admin-placeholder {
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-align: center;
}
.admin-placeholder h2 { font-size: 22px; color: var(--ink); }
.admin-placeholder .note { font-size: 12px; margin-top: 6px; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(40,28,26,0.5);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: var(--cream);
  border-radius: 16px;
  width: 100%; max-width: 520px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  max-height: 90vh; overflow: auto;
}
.modal h2 {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; margin: 0 0 4px; color: var(--ink);
}
.modal .modal-eyebrow { margin-bottom: 18px; }
.modal-body { display: flex; flex-direction: column; gap: 14px; }
.modal-actions {
  margin-top: 22px;
  display: flex; gap: 10px; justify-content: flex-end;
}

/* Booking detail panel */
.detail-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 90vw;
  background: var(--cream);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.25s;
  padding: 28px;
  overflow: auto;
}
.detail-panel.is-open { transform: translateX(0); }
.detail-panel .close {
  position: absolute; top: 18px; right: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line); background: white;
  cursor: pointer; font-size: 16px;
}
.detail-panel h2 {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; margin: 16px 0 4px;
}
.detail-meta {
  font-size: 13px; color: var(--muted); margin-bottom: 18px;
}
.detail-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.detail-row .k {
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rose-deep); font-weight: 600;
}
.detail-row .v {
  font-family: var(--serif); font-style: italic; color: var(--ink);
}
.detail-actions {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 8px;
}

/* ─── Week view ─── */
.admin-week-card { padding: 0; overflow: hidden; }
.admin-week-head {
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.admin-week-grid {
  display: grid;
  grid-template-columns: 60px repeat(6, 1fr);
  position: relative;
}
.admin-week-grid .col-head {
  padding: 10px 6px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}
.admin-week-grid .col-head:last-child { border-right: none; }
.admin-week-grid .col-head .d-name {
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rose-deep);
  font-weight: 600;
}
.admin-week-grid .col-head .d-num {
  font-family: var(--serif); font-size: 22px;
  margin-top: 2px;
}
.admin-week-grid .gutter, .admin-week-grid .col {
  position: relative;
}
.admin-week-grid .gutter {
  border-right: 1px solid var(--line);
  background: var(--cream);
}
.admin-week-grid .gutter .h {
  height: 36px;
  padding: 2px 6px;
  font-size: 10px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  border-bottom: 1px dashed rgba(184,111,94,0.12);
}
.admin-week-grid .col {
  border-right: 1px solid var(--line);
}
.admin-week-grid .col:last-child { border-right: none; }
.admin-week-grid .col .h {
  height: 36px;
  border-bottom: 1px dashed rgba(184,111,94,0.12);
}
.week-booking {
  position: absolute; left: 4px; right: 4px;
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 10px;
  cursor: pointer;
  overflow: hidden;
  line-height: 1.25;
}
.week-booking.status-done {
  background: var(--cream-2); color: var(--plum); border-left: 3px solid #a08070; opacity: 0.6;
}
.week-booking.status-confirmed {
  background: #fbe5dc; color: var(--rose-deep); border-left: 3px solid var(--rose-deep);
}
.week-booking.status-pending {
  background: white; color: var(--ink); border-left: 3px solid #d4a857;
}
.week-block {
  position: absolute; left: 4px; right: 4px;
  background: repeating-linear-gradient(135deg,var(--cream-2) 0 8px,rgba(0,0,0,0.04) 8px 12px);
  border-radius: 6px;
  border-left: 3px solid var(--muted);
  padding: 4px 6px; font-size: 10px;
  color: var(--muted);
}
.week-toolbar {
  display: flex; align-items: center; gap: 8px;
}

/* ─── Clients view ─── */
.clients-card { padding: 0; }
.clients-toolbar {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 8px; align-items: center;
  background: var(--cream-2);
}
.clients-toolbar input {
  flex: 1;
  height: 36px;
  padding: 0 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: white;
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
}
.clients-toolbar input:focus { border-color: var(--rose-deep); }
.clients-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.clients-table th {
  padding: 10px 18px;
  text-align: left;
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rose-deep);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}
.clients-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.clients-table tr:hover td { background: var(--cream-2); cursor: pointer; }
.clients-table .name {
  font-family: var(--serif); font-size: 16px; font-style: italic;
}
.clients-table .meta { color: var(--muted); font-size: 12px; }
.clients-table .empty {
  padding: 40px; text-align: center; color: var(--muted);
}

/* ─── Revenue view ─── */
.revenue-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 16px;
}
.revenue-stats .card { padding: 18px; }
.revenue-stats .label {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-deep); font-weight: 600; margin-bottom: 6px;
}
.revenue-stats .value {
  font-family: var(--serif); font-size: 28px; line-height: 1;
}
.revenue-stats .sub { font-size: 11px; color: var(--muted); margin-top: 4px; }

.chart-card { padding: 18px; }
.chart-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.chart-head .title {
  font-family: var(--serif); font-size: 17px;
}
.chart-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  height: 200px;
  align-items: end;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
}
.chart-bar {
  position: relative;
  background: linear-gradient(180deg, var(--rose), var(--rose-deep));
  border-radius: 6px 6px 0 0;
  min-height: 2px;
  cursor: pointer;
  transition: filter 0.15s;
}
.chart-bar:hover { filter: brightness(1.1); }
.chart-bar .tip {
  position: absolute;
  bottom: 100%;
  left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--cream);
  font-size: 10px; padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  margin-bottom: 4px;
}
.chart-bar:hover .tip { opacity: 1; }
.chart-labels {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  margin-top: 8px;
  font-size: 9px;
  color: var(--muted);
  text-align: center;
}
.svc-list {
  margin-top: 18px;
}
.svc-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.svc-row:last-child { border-bottom: none; }
.svc-row .name { font-family: var(--serif); font-size: 16px; font-style: italic; }
.svc-row .stat { font-variant-numeric: tabular-nums; color: var(--muted); }
.svc-row .price { font-family: var(--serif); font-size: 18px; }

/* Responsive admin */
@media (max-width: 980px) {
  .admin-page { padding: 12px; }
  .admin-shell { flex-direction: column; min-height: 0; }
  .admin-sidebar {
    width: 100%; flex: 0 0 auto;
    border-right: none; border-bottom: 1px solid var(--line);
    flex-direction: row; flex-wrap: wrap; align-items: center;
    padding: 16px 18px;
    gap: 12px;
  }
  .admin-nav { flex-direction: row; flex-wrap: wrap; margin-top: 0; flex: 1 1 auto; }
  .admin-spacer { display: none; }
  .admin-sync-card { display: none; }
  .admin-main { padding: 18px; }
  .admin-kpis { grid-template-columns: repeat(2, 1fr); }
  .admin-day { grid-template-columns: 1fr; }
}
