/* =========================================================
   ASPEKT — shared site styles
   ========================================================= */

:root {
  --green: #1e2d23;
  --green-2: #28392e;
  --wood: #8a6a44;
  --wood-2: #a07f54;
  --graphite: #1a1a1c;
  --graphite-2: #242427;
  --bone: #ebe7df;
  --bone-2: #d8d3c7;
  --ink: #16181a;
  --line: rgba(235, 231, 223, 0.14);
  --line-strong: rgba(235, 231, 223, 0.28);

  /* per-page tokens, overridden in <body class="theme-…"> */
  --bg: var(--green);
  --bg-2: var(--green-2);
  --fg: var(--bone);
  --fg-dim: rgba(235, 231, 223, 0.62);
  --accent: var(--wood-2);
  --pattern-opacity: 0.05;
}

body.theme-green {
  --bg: var(--green);
  --bg-2: var(--green-2);
  --fg: var(--bone);
  --fg-dim: rgba(235, 231, 223, 0.62);
  --accent: var(--wood-2);
}
body.theme-wood {
  --bg: #5e4628;
  --bg-2: #6e5532;
  --fg: var(--bone);
  --fg-dim: rgba(235, 231, 223, 0.7);
  --accent: #e8d5b0;
}
body.theme-graphite {
  --bg: #20211f;
  --bg-2: #292a27;
  --fg: var(--bone);
  --fg-dim: rgba(235, 231, 223, 0.6);
  --accent: #b9c2bb;
  --pattern-opacity: 0;
}
body.theme-bone {
  --bg: #ebe7df;
  --bg-2: #ddd8cb;
  --fg: #16181a;
  --fg-dim: rgba(22, 24, 26, 0.55);
  --accent: #1e2d23;
  --line: rgba(22, 24, 26, 0.14);
  --line-strong: rgba(22, 24, 26, 0.28);
  --pattern-opacity: 0.04;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Subtle diagonal stripe texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0 1px,
    transparent 1px 14px
  );
  opacity: var(--pattern-opacity);
  z-index: 0;
  mix-blend-mode: overlay;
}

main, header, footer { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }

/* ---------- type ---------- */

.serif { font-family: "DM Serif Display", "Playfair Display", Georgia, serif; font-weight: 400; }
.mono  { font-family: "JetBrains Mono", ui-monospace, monospace; }

.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.display {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
}

.h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
}

.h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  margin: 0;
}

.italic { font-style: italic; }

/* ---------- top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--fg);
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 132px;
  height: auto;
}
.brand-logo.sm { width: 110px; }
.brand-logo.lg { width: 168px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
@media (max-width: 720px) {
  .brand-logo { width: 108px; }
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  color: var(--fg-dim);
  transition: color .2s ease;
}
.nav a:hover { color: var(--fg); }
.nav a.active { color: var(--fg); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--fg);
}
.nav a .num {
  font-size: 9px;
  vertical-align: super;
  margin-right: 4px;
  color: var(--fg-dim);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-reserve:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.btn-reserve .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* lang switcher */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px;
  background: rgba(0,0,0,0.18);
}
.lang button {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  transition: all .2s ease;
}
.lang button:hover { color: var(--fg); }
.lang button.active {
  background: var(--fg);
  color: var(--bg);
}
.lang .flag {
  width: 16px;
  height: 11px;
  border-radius: 1px;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
/* CZ flag — white over red, blue triangle */
.flag-cz {
  background:
    linear-gradient(135deg, #11457e 50%, transparent 50%),
    linear-gradient(to bottom, #fff 50%, #d7141a 50%);
}
/* GB flag (representing EN) */
.flag-gb {
  background:
    linear-gradient(to bottom, #012169, #012169) center/100% 100% no-repeat;
  position: relative;
  overflow: hidden;
}
.flag-gb::before, .flag-gb::after {
  content: "";
  position: absolute; inset: 0;
}
.flag-gb::before {
  background:
    linear-gradient(45deg, transparent 45%, #fff 45% 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, #fff 45% 55%, transparent 55%),
    linear-gradient(to bottom, transparent 40%, #fff 40% 60%, transparent 60%),
    linear-gradient(to right, transparent 40%, #fff 40% 60%, transparent 60%);
}
.flag-gb::after {
  background:
    linear-gradient(to bottom, transparent 44%, #c8102e 44% 56%, transparent 56%),
    linear-gradient(to right, transparent 44%, #c8102e 44% 56%, transparent 56%);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.btn:hover {
  background: var(--fg);
  color: var(--bg);
}
.btn-fill {
  background: var(--fg);
  color: var(--bg);
}
.btn-fill:hover {
  background: transparent;
  color: var(--fg);
}
.btn .arrow {
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- footer ---------- */

.footer {
  margin-top: 120px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 80px 40px 40px;
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 48px;
  max-width: 1480px;
  margin: 0 auto;
}
.footer h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer p, .footer a { color: var(--fg); margin: 0 0 6px; }
.footer .map {
  width: 100%;
  height: 220px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, #2a3a30 0%, #1a221c 100%);
  position: relative;
  overflow: hidden;
}
.footer .map svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.footer .map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.footer .foot-addr {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 12px;
  line-height: 1.6;
}
.footer .map .pin {
  position: absolute;
  left: 50%; top: 48%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.footer .map .pin .dot {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 40%, transparent);
}
.footer .map .pin .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bg);
  padding: 4px 8px;
  margin-top: 6px;
  border: 1px solid var(--line-strong);
}

.footer-bottom {
  max-width: 1480px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ---------- shared section helpers ---------- */

.section {
  padding: 0 40px;
  max-width: 1480px;
  margin: 0 auto;
}

/* Full-bleed full-width image (Assembly-style) */
.fullbleed {
  width: 100%;
  height: clamp(420px, 78vh, 880px);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.fullbleed.tall {
  height: clamp(560px, 100vh, 1040px);
}
.fullbleed.short {
  height: clamp(360px, 56vh, 620px);
}
.fullbleed::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
}
.fullbleed .caption {
  position: absolute;
  left: 40px;
  bottom: 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235,231,223,0.75);
  z-index: 2;
}
.fullbleed .caption.right {
  left: auto;
  right: 40px;
}

/* Centered text block between full-bleed images */
.textblock {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 32px;
  text-align: center;
}
.textblock.wide { max-width: 920px; }
.textblock.tight { padding: 90px 32px; }

.textblock .eyebrow {
  display: inline-flex;
  margin-bottom: 28px;
}
.textblock h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
}
.textblock h2 em { font-style: italic; color: var(--accent); }
.textblock p {
  color: var(--fg-dim);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  margin: 0 auto 18px;
  max-width: 580px;
}
.textblock .actions {
  display: inline-flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Big quote block */
.quote-bleed {
  padding: 160px 32px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.quote-bleed .q {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.18;
  margin: 0;
}
.quote-bleed .q em { color: var(--accent); }

/* Hero with text overlaid on full-bleed image */
.hero-bleed {
  position: relative;
  width: 100%;
  height: clamp(640px, 92vh, 980px);
  background-size: cover;
  background-position: center;
}
.hero-bleed::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.78) 100%);
}
.hero-bleed .inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 32px 80px;
  z-index: 2;
  color: var(--bone);
}
.hero-bleed .inner .top {
  position: absolute;
  top: 40px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235,231,223,0.7);
}
.hero-bleed h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(60px, 11vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--bone);
}
.hero-bleed h1 em { font-style: italic; color: var(--accent); }
.hero-bleed .sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(235,231,223,0.85);
  margin-top: 28px;
}

@media (max-width: 700px) {
  .textblock { padding: 72px 22px; }
  .textblock h2 { font-size: clamp(32px, 9vw, 48px); margin-bottom: 22px; }
  .textblock p { font-size: 15px; line-height: 1.65; }
  .textblock .actions { gap: 10px; margin-top: 26px; }

  .quote-bleed { padding: 72px 22px; }
  .quote-bleed .q { font-size: clamp(26px, 7.4vw, 40px); line-height: 1.22; }

  .fullbleed { height: clamp(360px, 62vh, 560px); }
  .fullbleed.tall { height: clamp(440px, 78vh, 700px); }
  .fullbleed.short { height: clamp(280px, 46vh, 420px); }
  .fullbleed .caption { left: 18px; bottom: 14px; font-size: 10px; }
  .fullbleed .caption.right { right: 18px; }

  .hero-bleed { height: clamp(520px, 90vh, 760px); }
  .hero-bleed .inner { padding: 0 22px 64px; }
  .hero-bleed .inner .top {
    top: 22px;
    padding: 0 22px;
    font-size: 9.5px;
    letter-spacing: 0.16em;
    gap: 12px;
  }
  .hero-bleed h1 { font-size: clamp(72px, 22vw, 132px); }
  .hero-bleed .sub { font-size: 10.5px; letter-spacing: 0.18em; margin-top: 20px; }

  .footer { margin-top: 0; padding: 56px 22px 28px; }
  .footer .map { height: 180px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 40px;
  }

  .btn { padding: 14px 22px; font-size: 11px; }

  .next-card .body,
  .barber-row .body { padding: 48px 22px !important; }
  .next-card h3,
  .barber-row h3 { font-size: clamp(40px, 11vw, 64px) !important; }
  .next-card p,
  .barber-row p { font-size: 14.5px; line-height: 1.65; }
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 80px 0;
}

.tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--fg-dim);
  display: inline-block;
}

/* image helpers */
.img {
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.04);
  position: relative;
}
.img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  pointer-events: none;
}

/* responsive */
@media (max-width: 900px) {
  .topbar { padding: 16px 20px; }
  .nav { gap: 20px; }
  .nav a .num { display: none; }
  .section { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: 56px 20px 24px; }
}
@media (max-width: 600px) {
  .nav { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* =========================================================
   MOBILE — hamburger, fullscreen menu, sticky CTA
   ========================================================= */

.burger { display: none; }

.mobile-menu { display: none; }
.sticky-cta { display: none; }

@media (max-width: 820px) {
  /* compact topbar */
  .topbar {
    padding: 14px 18px;
    background: color-mix(in oklab, var(--bg) 94%, transparent);
  }
  .topbar .brand .brand-logo { width: 100px; }
  .topbar .topbar-right .btn-reserve { display: none; }
  .topbar .topbar-right .lang { display: none; }

  /* burger button */
  .burger {
    all: unset;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    align-items: center;
    cursor: pointer;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    transition: border-color .2s ease, background .2s ease;
  }
  .burger:hover { border-color: var(--fg); }
  .burger span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--fg);
    transition: transform .3s ease, opacity .2s ease, width .3s ease;
  }
  .burger.open { background: var(--fg); border-color: var(--fg); }
  .burger.open span { background: var(--bg); width: 16px; }
  .burger.open span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .burger.open span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

  /* fullscreen menu */
  html.menu-open, html.menu-open body { overflow: hidden; }
  html.menu-open .topbar {
    z-index: 70;
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu::before {
    content: "";
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.05) 0 1px,
      transparent 1px 18px
    );
    pointer-events: none;
    opacity: 0.5;
  }
  .mm-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 84px 26px 32px;
  }
  .mm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 28px;
  }
  .mm-close {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--fg);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
  }
  .mm-close:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
  .mm-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }
  .mm-link {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--fg);
    position: relative;
    transition: padding-left .35s ease;
  }
  .mm-link:hover, .mm-link.active { padding-left: 12px; }
  .mm-link .mm-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--accent);
    align-self: center;
  }
  .mm-link .mm-label {
    font-family: "DM Serif Display", serif;
    font-size: clamp(40px, 11vw, 60px);
    line-height: 1;
    letter-spacing: -0.015em;
  }
  .mm-link.active .mm-label { font-style: italic; color: var(--accent); }
  .mm-link::after {
    content: "↗";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "JetBrains Mono", monospace;
    font-size: 18px;
    color: var(--fg-dim);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
  }
  .mm-link:hover::after,
  .mm-link.active::after {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
  }

  .mm-foot {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .mm-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 22px;
    background: var(--fg);
    color: var(--bg);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--fg);
    text-decoration: none;
  }
  .mm-cta .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 35%, transparent);
  }
  .mm-lang {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .mm-lang button {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-dim);
    cursor: pointer;
    transition: all .2s ease;
  }
  .mm-lang button:hover { color: var(--fg); border-color: var(--fg); }
  .mm-lang button.active {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
  }
  .mm-lang .flag {
    width: 18px;
    height: 12px;
    border-radius: 1px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  }

  .mm-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg-dim);
    text-align: center;
  }

  /* sticky bottom CTA — appears when scrolled past hero */
  .sticky-cta {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    gap: 10px;
    pointer-events: none;
  }
  .sticky-cta > * {
    pointer-events: auto;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .sc-tel {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: color-mix(in oklab, var(--bg) 78%, transparent);
    border: 1px solid var(--line-strong);
    color: var(--fg);
    border-radius: 999px;
    text-decoration: none;
  }
  .sc-book {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 0 22px;
    background: var(--fg);
    color: var(--bg);
    border-radius: 999px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,0,0,0.28);
  }
  .sc-book .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 35%, transparent);
  }
  html.menu-open .sticky-cta { opacity: 0; pointer-events: none; }

  /* extra breathing room so sticky CTA doesn't cover footer end */
  .footer-bottom { padding-bottom: 60px; }
}

/* very small phones — tighten further */
@media (max-width: 380px) {
  .topbar { padding: 12px 14px; }
  .topbar .brand { font-size: 17px; }
  .hero-bleed .inner .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hero-bleed h1 { font-size: clamp(64px, 20vw, 96px); }
  .sc-book { font-size: 10.5px; padding: 0 16px; letter-spacing: 0.16em; }
}

/* Sluzby — service rows: fix mobile layout (was: dur+price stacked under name with text-align:left, ugly) */
@media (max-width: 800px) {
  .svc {
    grid-template-columns: 44px 1fr auto !important;
    grid-template-areas:
      "num  body  price"
      "num  dur   price" !important;
    row-gap: 4px !important;
    column-gap: 14px !important;
    padding: 20px 0 !important;
    align-items: start !important;
  }
  .svc .num { grid-area: num; padding-top: 6px; }
  .svc .body { grid-area: body; }
  .svc .body h3 { font-size: 20px; }
  .svc .body p { font-size: 13px; margin-top: 4px; }
  .svc .dur {
    grid-area: dur !important;
    grid-column: auto !important;
    text-align: left !important;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg-dim);
  }
  .svc .price {
    grid-area: price !important;
    grid-column: auto !important;
    text-align: right !important;
    align-self: start;
    padding-top: 2px;
  }
  .svc .price .v { font-size: 21px; }
  .svc .price .from { font-size: 9px; }
}

/* ---------- language ---------- */
[lang-en] { display: none; }
html[data-lang="en"] [lang-cz] { display: none; }
html[data-lang="en"] [lang-en] { display: inline; }
html[data-lang="en"] [lang-en].block { display: block; }
[lang-cz].block { display: block; }

/* ---------- cookie bar ---------- */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  background: #1b1f1d;
  color: #f1efe8;
  border: 1px solid #2c322f;
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.cookie-bar.show { display: block; }
.cookie-bar p { margin: 0 0 12px; }
.cookie-bar a { color: #d9c98a; text-decoration: underline; }
.cookie-bar .cb-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-bar button {
  background: #d9c98a;
  color: #1b1f1d;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}
.cookie-bar button:hover { background: #e6d79a; }
.cookie-bar button.cb-secondary {
  background: transparent;
  color: #f1efe8;
  border: 1px solid #3a4240;
}
.cookie-bar button.cb-secondary:hover { background: #2c322f; }
@media (max-width: 480px) {
  .cookie-bar { left: 8px; right: 8px; bottom: 8px; padding: 14px; }
}
html.menu-open .cookie-bar { display: none !important; }

/* footer GDPR link */
.foot-legal { margin-top: 8px; font-size: 12px; opacity: .75; }
.foot-legal a { color: inherit; text-decoration: underline; }

/* ---------- footer extracted styles ---------- */
.foot-blurb { color: var(--fg-dim); font-size: 14px; max-width: 320px; margin: 0; }
.foot-callout {
  margin-top: 10px;
  padding: 8px 10px;
  border-left: 2px solid var(--accent);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.4;
}
.foot-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.foot-city { margin-top: 14px; color: var(--fg-dim); font-size: 13px; }
.opening-row { display: flex; justify-content: space-between; max-width: 200px; }
.opening-row.dim { color: var(--fg-dim); }
.opening-note { max-width: 240px; line-height: 1.6; }
.opening-note.dim { color: var(--fg-dim); font-size: 13px; margin-top: 8px; }
