/* ════════════════════════════════════════════════════════════════════
   Barbershop CHARISMA — style.css
   Statický web bez build kroku. Mobile-first.
   ════════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --clr-red:        #e4000f;
  --clr-red-dark:   #b30009;
  --clr-red-light:  #fff0f1;
  --clr-black:      #111111;
  --clr-white:      #ffffff;
  --clr-n50:        #fafafa;
  --clr-n100:       #f5f5f5;
  --clr-n200:       #e5e5e5;
  --clr-n400:       #a3a3a3;
  --clr-n500:       #737373;
  --clr-n700:       #404040;
  --clr-n800:       #262626;
  --clr-n900:       #171717;

  --font-display: "Anton", "Impact", "Helvetica Neue", sans-serif;
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container:    1280px;
  --gutter:       1.5rem;
  --topbar-h:     72px;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:    cubic-bezier(0.4, 0, 0.2, 1);

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
}

/* ─── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--topbar-h);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--clr-black);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid var(--clr-red);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Skip-link — pro klávesnici, skrytý dokud není ve focusu */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 100;
  padding: 0.7rem 1.25rem;
  background: var(--clr-red);
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 6px 6px;
  transition: transform 180ms ease;
}
.skip-link:focus-visible {
  transform: translate(-50%, 0);
  outline-offset: -2px;
}

/* ─── LAYOUT ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── TYPOGRAFIE ─────────────────────────────────────────────────── */
.kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-n500);
}

.section__head { margin-bottom: 2.5rem; }
.section__head--invert .kicker { color: rgba(255,255,255,0.8); }

.section__head--faq .section__title { margin-top: 1.25rem; }
.section__head--faq { margin-bottom: 2rem; }

.section__title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 1.4rem + 3vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.section__head--invert .section__title { color: var(--clr-white); }

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  min-height: 46px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms var(--ease-out), background 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn--solid {
  background: var(--clr-red);
  color: var(--clr-white);
}
.btn--solid:hover { background: var(--clr-red-dark); }

.btn--outline {
  background: transparent;
  color: var(--clr-black);
  border: 1px solid var(--clr-black);
}
.btn--outline:hover { background: var(--clr-black); color: var(--clr-white); }

.btn--icon-only {
  padding: 0;
  width: 46px;
  aspect-ratio: 1 / 1;
}
.btn__icon { width: 18px; height: 18px; }

@media (min-width: 768px) {
  .btn {
    padding: 0.75rem 1.25rem;
    min-height: 48px;
    font-size: 0.95rem;
  }
  .btn--icon-only { width: 48px; }
}

/* ═══════════════════════════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clr-n200);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-h);
}
.topbar__logo img { height: 40px; width: auto; }

.topbar__nav { display: none; gap: 2rem; }
.topbar__nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--clr-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease-out);
}
.topbar__nav a:hover { color: var(--clr-red); }
.topbar__nav a:hover::after { transform: scaleX(1); }

.topbar__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
}
.topbar__burger:active { transform: scale(0.97); }

@media (min-width: 768px) {
  .topbar__logo img { height: 44px; }
  .topbar__nav { display: flex; }
  .topbar__burger { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100dvh;
  width: 76%;
  max-width: 320px;
  background: var(--clr-n900);
  color: var(--clr-white);
  padding: 1rem 1rem 1rem 2rem;
  text-align: right;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  transform: translateX(100%);
  transition: transform 350ms var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.mobile-menu__kicker {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.25);
}
.mobile-menu__nav {
  margin-top: 1rem;
  padding-right: 0.25rem;
}
.mobile-menu__nav a {
  display: block;
  padding: 0.85rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 300ms ease, transform 380ms var(--ease-out), color 180ms ease;
}
.mobile-menu__nav a:hover { color: var(--clr-red); }
.mobile-menu.is-open .mobile-menu__nav a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { transition-delay: 90ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { transition-delay: 150ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { transition-delay: 210ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { transition-delay: 270ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) { transition-delay: 330ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(6) { transition-delay: 390ms; }

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.hero__inner {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero__logo {
  width: min(310px, 55vw);
  aspect-ratio: 5 / 7;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}
.hero__logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.hero__tagline {
  font-size: 1.05rem;
  color: var(--clr-n700);
  max-width: 36rem;
  margin: 0 auto;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}

.hero__overlay-mobile {
  position: relative;
  margin: 2.5rem var(--gutter) 2rem;
  pointer-events: none;
  aspect-ratio: 4 / 5;
  background: var(--clr-n100);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), 0 100%);
}
.hero__overlay-mobile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay-desktop { display: none; }

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  mix-blend-mode: multiply;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
  }
  .hero__overlay-mobile { display: none; }
  .hero__overlay-desktop {
    display: block;
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    width: 52%;
    overflow: hidden;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
  }
  .hero__overlay-desktop img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .hero__logo { width: min(310px, 26vw); }
}

/* ═══════════════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════════════ */
.marquee {
  background: var(--clr-n900);
  color: var(--clr-white);
  padding: 0.65rem 0;
  overflow: hidden;
  user-select: none;
}
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  will-change: transform;
  /* CSS animace běží na kompozitoru → plynulé i při scrollu na mobilu.
     Posun je přesně o šířku jednoho bloku (--marquee-shift z JS) → bezešvé. */
  animation: marquee-scroll var(--marquee-dur, 24s) linear infinite;
}
.marquee__track > span {
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--marquee-shift, 0px)), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTIONS (s diagonálními řezy)
   ═══════════════════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 4rem 0;
  scroll-margin-top: var(--topbar-h);
}
.section--white { background: var(--clr-white); }
.section--light { background: var(--clr-n50); }
.section--red {
  background: var(--clr-red);
  color: var(--clr-white);
}

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}

/* Diagonální řezy — paralelogram, obě hrany ve stejném směru (nákres) */
.section--cut-both {
  --cut-h: 80px;
  position: relative;
  z-index: 2;
  margin: calc(var(--cut-h) * -0.5) 0;
  padding-top: calc(4rem + var(--cut-h) * 0.5);
  padding-bottom: calc(4rem + var(--cut-h) * 0.5);
  clip-path: polygon(
    0 var(--cut-h),
    100% 0,
    100% calc(100% - var(--cut-h)),
    0 100%
  );
}
@media (min-width: 768px) {
  .section--cut-both {
    --cut-h: 160px;
    padding-top: calc(6rem + var(--cut-h) * 0.5);
    padding-bottom: calc(6rem + var(--cut-h) * 0.5);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════ */
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .pricing { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; }
}

.pricing__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-n200);
  text-decoration: none;
  color: var(--clr-black);
  cursor: pointer;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}
.pricing__item:hover {
  transform: translateY(-2px);
  border-color: var(--clr-black);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.pricing__item--featured { border-color: var(--clr-red); }

.pricing__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--clr-black);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing__icon svg { width: 16px; height: 16px; }

.pricing__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pricing__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  line-height: 1.2;
}
.pricing__desc {
  font-size: 0.85rem;
  color: var(--clr-n500);
  line-height: 1.45;
  margin: 0;
}
.pricing__meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-n400);
  font-variant-numeric: tabular-nums;
}

.pricing__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid var(--clr-red);
  color: var(--clr-red);
}

.pricing__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--clr-red);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.pricing__from {
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .pricing__price { font-size: 1.6rem; }
  .pricing__name { font-size: 1.05rem; }
  .pricing__desc { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   BARBERS — strip s kartami
   ═══════════════════════════════════════════════════════════════════ */
.barbers {
  position: relative;
}
.barbers__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.barbers__viewport::-webkit-scrollbar { display: none; }

.barbers__track {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
  min-width: max-content;
}

@media (min-width: 1024px) {
  .barbers__viewport { overflow: hidden; }
  .barbers__track {
    transition: none;
    will-change: transform;
  }
  .barbers.is-dragging { cursor: grabbing; }
}

.barber-card {
  display: flex;
  flex-direction: column;
  width: 72vw;
  max-width: 300px;
  min-width: 240px;
  scroll-snap-align: center;
  background: var(--clr-white);
  color: var(--clr-black);
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease, outline-color 280ms ease;
  outline: 2px solid transparent;
}
.barber-card:hover {
  transform: translateY(-6px);
  outline-color: var(--clr-red);
}

.barber-card__photo {
  position: relative;
  aspect-ratio: 2 / 3;
  background: var(--clr-n100);
  border-bottom: 1px solid var(--clr-n200);
  overflow: hidden;
}
.barber-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.barber-card:hover .barber-card__photo img {
  transform: scale(1.04);
}

.barber-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  background: linear-gradient(to top, rgba(185,28,28,0) 0%, rgba(185,28,28,0) 60%);
  opacity: 0;
  transition: opacity 280ms ease, background 280ms ease;
  pointer-events: none;
}
.barber-card:hover .barber-card__overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(185,28,28,0.85) 0%, rgba(185,28,28,0) 60%);
}
.barber-card__overlay span {
  color: var(--clr-white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.barber-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.barber-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.barber-card__role {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--clr-n500);
}
.barber-card__bio {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--clr-n700);
  flex: 1;
}

.barbers__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  color: var(--clr-black);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: background 180ms ease;
}
.barbers__nav:hover { background: var(--clr-white); }
.barbers__nav--prev { left: -0.75rem; }
.barbers__nav--next { right: -0.75rem; }

@media (min-width: 1024px) {
  .barbers__nav { display: inline-flex; }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .contact { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.contact__list {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  color: var(--clr-n800);
}
.contact__icon {
  width: 20px; height: 20px;
  color: var(--clr-red);
  flex-shrink: 0;
}
.contact__row a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0,0,0,0.3);
  padding: 0.5rem 0;
  transition: text-decoration-color 180ms ease;
  word-break: break-all;
}
.contact__row a:hover { text-decoration-color: var(--clr-red); }

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}
.contact__cta { min-width: 200px; }

/* ═══════════════════════════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════════════════════════ */
.contact__map {
  border: 1px solid var(--clr-n200);
  overflow: hidden;
  min-height: 320px;
  background: var(--clr-n100);
  display: grid;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(100%);
  display: block;
}
@media (min-width: 1024px) {
  .contact__map { min-height: 480px; }
  .contact__map iframe { min-height: 480px; }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--clr-n200);
  padding: 1.1rem 0 1.4rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  color: var(--clr-n500);
  font-size: 0.75rem;
}
.footer__credit {
  font-size: 0.68rem;
  color: var(--clr-n400);
  margin-top: 0.1rem;
}
.footer__credit a {
  color: var(--clr-n700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}
.footer__credit a:hover { color: var(--clr-red); }
.footer__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  /* zmenšuje se s šířkou displeje */
  font-size: clamp(0.7rem, 1.6vw + 0.4rem, 0.78rem);
  line-height: 1.5;
}
.footer__meta a {
  color: var(--clr-n500);
  padding: 3px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}
.footer__meta a:hover { color: var(--clr-n800); }
.footer__sep {
  color: var(--clr-n400);
  user-select: none;
}
/* velmi malé displeje (iPhone 5s apod.) — vše pod sebe */
@media (max-width: 360px) {
  .footer__meta {
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer__sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   BOOKING DOCK (sticky CTA)
   ═══════════════════════════════════════════════════════════════════ */
.booking-dock {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 40;
  pointer-events: none;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}
.booking-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.booking-dock__inner {
  display: flex;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
}
.booking-dock__card {
  margin-left: auto;
  width: 100%;
  background: var(--clr-n900);
  color: var(--clr-white);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.booking-dock__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.booking-dock__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--clr-red);
  color: var(--clr-white);
  transition: background 180ms ease;
}
.booking-dock__btn:hover { background: var(--clr-red-dark); }

@media (min-width: 1024px) {
  .booking-dock__card { width: 33%; max-width: 360px; }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTAINER --narrow (FAQ)
   ═══════════════════════════════════════════════════════════════════ */
.container--narrow {
  max-width: 820px;
}

/* ═══════════════════════════════════════════════════════════════════
   PRICING NOTE (poznámka pod cenami)
   ═══════════════════════════════════════════════════════════════════ */
.pricing__note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--clr-n500);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}
.pricing__note strong {
  color: var(--clr-n800);
  font-weight: 700;
}
.pricing__sep {
  color: var(--clr-n400);
}

/* ═══════════════════════════════════════════════════════════════════
   REVIEWS (Google hodnocení)
   ═══════════════════════════════════════════════════════════════════ */
.reviews__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.75rem;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--clr-n700);
}
.reviews__stars {
  color: var(--clr-red);
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  line-height: 1;
}
.reviews__score strong,
.reviews__count strong {
  color: var(--clr-n900);
  font-weight: 700;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) {
  .reviews { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .reviews { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.review {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-n200);
  border-radius: 4px;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}
.review:hover {
  transform: translateY(-2px);
  border-color: var(--clr-n400);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.review__stars {
  color: var(--clr-red);
  letter-spacing: 0.05em;
  font-size: 1rem;
  line-height: 1;
}
.review__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--clr-n700);
  margin: 0;
  flex: 1;
  font-style: italic;
}
.review__meta {
  font-size: 0.78rem;
  color: var(--clr-n500);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-top: 0.5rem;
  border-top: 1px solid var(--clr-n200);
}

.reviews__cta {
  margin-top: 2rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ (accordion s <details>)
   ═══════════════════════════════════════════════════════════════════ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq__item {
  border: 1px solid var(--clr-n200);
  background: var(--clr-white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq__item.is-open {
  border-color: var(--clr-black);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--clr-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  min-height: 56px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { content: ""; }
.faq__item summary:hover { color: var(--clr-red); }

.faq__chev {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--clr-n500);
  transition: transform 240ms var(--ease-out), color 200ms ease;
}
.faq__item.is-open .faq__chev {
  transform: rotate(180deg);
  color: var(--clr-red);
}

/* FAQ odpověď — plynulé rozbalení/sbalení přes grid-template-rows */
.faq__answer {
  display: grid;
  grid-template-rows: minmax(0, 0fr);
  overflow: hidden;
  font-size: 0.95rem;
  color: var(--clr-n700);
  line-height: 1.6;
  transition: grid-template-rows 360ms var(--ease-out);
}
.faq__item.is-open .faq__answer {
  grid-template-rows: minmax(0, 1fr);
}
.faq__answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 1.25rem 1.25rem;
  opacity: 0;
  transition: opacity 240ms ease;
}
.faq__item.is-open .faq__answer-inner {
  opacity: 1;
}
.faq__answer a {
  color: var(--clr-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq__answer a:hover { color: var(--clr-red-dark); }
.faq__answer strong { color: var(--clr-black); }

@media (prefers-reduced-motion: reduce) {
  .faq__answer,
  .faq__answer-inner { transition: none; }
}

@media (min-width: 768px) {
  .faq__item summary { font-size: 1.05rem; padding: 1.15rem 1.5rem; }
  .faq__answer { font-size: 1rem; }
  .faq__answer-inner { padding: 0 1.5rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   HOURS (otevírací doba v kontaktech)
   ═══════════════════════════════════════════════════════════════════ */
.hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-n200);
}
.hours__title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hours__title .contact__icon {
  width: 22px;
  height: 22px;
}
.hours__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 360px;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.95rem;
  padding: 0.15rem 0;
}
.hours__row dt {
  font-weight: 700;
  color: var(--clr-n800);
  min-width: 80px;
}
.hours__row dd {
  font-variant-numeric: tabular-nums;
  color: var(--clr-n700);
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════════════
   BTN--SOCIAL (větší IG/FB ikony)
   ═══════════════════════════════════════════════════════════════════ */
.btn--social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  background: var(--clr-black);
  color: var(--clr-white);
  transition: background 200ms ease, transform 180ms var(--ease-out);
}
.btn--social:hover {
  background: var(--clr-red);
}
.btn--social:active { transform: translateY(1px); }
.btn--social svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 768px) {
  .btn--social { width: 56px; height: 56px; }
  .btn--social svg { width: 24px; height: 24px; }
}
