/*
 * Netábor Design System — vanilla CSS port
 * Source: netabor-design/index.css (HSL tokens) + tailwind.config.ts (radii/shadows)
 * Stack: vanilla HTML/CSS, ADR #12 (no template engine, no build step)
 *
 * Pravidla (NETABOR_DESIGN.md):
 *   - Header + Footer vždy bg-netabor-dark (#222936)
 *   - Žádné gradient-blob pozadí, plovoucí emoji, sparkle ikony
 *   - Žádné inline barvy mimo brand HEX z tabulky 1.1
 *   - Pouze Poppins + Caveat fonty
 *   - Brandové motivy = vlastní SVG sketche (stroke="#222936" strokeWidth="2.4")
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Caveat:wght@500;600;700&display=swap');

:root {
  /* ── Brand HSL tokeny ── */
  --primary: 49 100% 49%;            /* #FDCF00 Fun Yellow */
  --primary-foreground: 223 25% 17%;
  --secondary: 183 100% 37%;         /* #00B4BC Teal */
  --secondary-foreground: 0 0% 100%;
  --background: 48 100% 99%;         /* papírová bílá */
  --foreground: 223 25% 17%;         /* #222936 Dark */
  --card: 0 0% 100%;
  --card-foreground: 223 25% 17%;
  --muted: 48 40% 96%;
  --muted-foreground: 223 15% 45%;
  --accent: 2 80% 60%;               /* #EA504B Red */
  --accent-foreground: 0 0% 100%;
  --border: 48 30% 90%;
  --input: 48 30% 90%;
  --ring: 49 100% 49%;
  --radius: 1rem;

  /* ── Kategorie ── */
  --category-sport: 74 81% 47%;        /* #CAD816 */
  --category-dance: 330 70% 73%;       /* #E194CF */
  --category-zoo: 30 86% 51%;          /* #EF941B */
  --category-creative: 263 100% 78%;   /* #B18DFF */
  --category-cooking: 2 80% 60%;       /* #EA504B */
  --category-education: 213 100% 73%;  /* #76AEFF */
  --category-premium: 49 100% 49%;     /* #FDCF00 */
  --category-action: 183 100% 37%;     /* #00B4BC */

  /* ── Brand HEX shortcuts (pro inline gradients, sketches) ── */
  --netabor-yellow: #FDCF00;
  --netabor-teal: #00B4BC;
  --netabor-dark: #222936;
  --netabor-orange: #EF941B;
  --netabor-red: #EA504B;
  --netabor-pink: #E194CF;
  --netabor-purple: #B18DFF;
  --netabor-blue: #76AEFF;
  --netabor-green: #CAD816;

  /* ── Gradients ── */
  --gradient-hero: linear-gradient(135deg, hsl(49 100% 49%) 0%, hsl(35 90% 50%) 100%);
  --gradient-teal: linear-gradient(135deg, hsl(183 100% 37%) 0%, hsl(190 80% 45%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(48 60% 98%) 100%);

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px -2px hsl(223 25% 17% / 0.08);
  --shadow-md: 0 8px 24px -6px hsl(223 25% 17% / 0.12);
  --shadow-lg: 0 16px 48px -12px hsl(223 25% 17% / 0.18);
  --shadow-glow: 0 0 40px hsl(49 100% 49% / 0.4);
  --shadow-teal: 0 0 40px hsl(183 100% 37% / 0.3);

  /* ── Layout ── */
  --container-max: 1400px;
  --container-padding: 1.5rem;
  --header-h: 64px;
  --header-h-md: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: hsl(var(--border)); }
html { scroll-behavior: smooth; }
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.font-handwriting { font-family: 'Caveat', 'Poppins', cursive; font-weight: 600; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: var(--shadow-lg); }
.btn-primary:active { transform: scale(0.98); }

.btn-dark {
  background: var(--netabor-dark);
  color: #fff;
}
.btn-dark:hover { background: hsl(223 25% 22%); }

.btn-teal {
  background: var(--gradient-teal);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-teal:hover { filter: brightness(1.10); }

.btn-outline {
  border: 2px solid currentColor;
  background: transparent;
}
.btn-outline:hover { background: hsl(var(--foreground) / 0.05); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; height: 56px; }
.btn-xl { padding: 1.05rem 2.25rem; font-size: 1.05rem; height: 60px; }

/* ── Cards ── */
.card-event {
  background: hsl(var(--card));
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.5);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card-event:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.card-brand {
  background: hsl(var(--card));
  border-radius: 1.5rem;
  border: 2px solid hsl(var(--primary) / 0.2);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.card-brand:hover { border-color: hsl(var(--primary) / 0.5); box-shadow: var(--shadow-lg); }

/* ── Section title ── */
.section-title {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

/* ── Tape badge (lepicí páska — clip-path polygon) ── */
.tape-badge {
  display: inline-block;
  background: var(--netabor-yellow);
  color: var(--netabor-dark);
  padding: 0.35rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  transform: rotate(-2deg);
  clip-path: polygon(2% 0, 100% 4%, 98% 100%, 0 96%);
  box-shadow: 2px 2px 0 hsl(var(--foreground) / 0.15);
}

/* ── Stamp (border-2, rotated) ── */
.stamp {
  display: inline-block;
  border: 2.5px solid hsl(var(--accent) / 0.7);
  color: hsl(var(--accent));
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0.25rem;
  transform: rotate(-8deg);
}

/* ── Squiggle underline (manuální podtržení) ── */
.squiggle {
  position: relative;
  display: inline-block;
}
.squiggle .squiggle-svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 0.75rem;
  pointer-events: none;
}

/* ── Underline accent (decoration) ── */
.underline-yellow {
  text-decoration: underline;
  text-decoration-color: var(--netabor-yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.underline-teal {
  text-decoration: underline;
  text-decoration-color: var(--netabor-teal);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

/* ── Paper texture (jemná mřížka + tečky pro Hero) ── */
.paper-texture {
  background-color: hsl(48 60% 97%);
  position: relative;
}
.paper-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(hsl(var(--foreground) / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--foreground) / 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.35;
  mix-blend-mode: multiply;
}
.paper-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(hsl(var(--foreground)) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  opacity: 0.08;
}
.paper-texture > * { position: relative; z-index: 1; }

/* ── Watermark (obří NETÁBOR) ── */
.watermark {
  position: absolute;
  inset: auto 0 -1.5rem 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  z-index: 0;
}
.watermark-text {
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.04em;
  font-size: 22vw;
  -webkit-text-stroke: 2px hsl(var(--foreground) / 0.08);
  color: transparent;
}
@media (min-width: 768px) {
  .watermark-text { font-size: 18vw; }
}

/* ── Header ── */
.nv-header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.nv-quote-bar {
  background: var(--netabor-dark);
  color: rgba(255, 255, 255, 0.7);
  height: 32px;
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.nv-quote-bar .container { display: flex; justify-content: center; align-items: center; gap: 0.5rem; }
.nv-quote-icon { color: var(--netabor-yellow); flex-shrink: 0; }
.nv-quote-text { transition: opacity 0.25s, transform 0.25s; }

.nv-bar {
  background: hsl(223 25% 17% / 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  height: var(--header-h);
}
@media (min-width: 768px) {
  .nv-bar { height: var(--header-h-md); }
}
.nv-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nv-logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .nv-logo img { height: 48px; }
}

.nv-pills {
  display: none;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  padding: 4px;
  gap: 2px;
}
.nv-pill {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  cursor: pointer;
}
.nv-pill:hover { color: #fff; background: rgba(255, 255, 255, 0.10); }
.nv-pill.active { background: var(--netabor-yellow); color: var(--netabor-dark); }
.nv-pill .chev { width: 12px; height: 12px; transition: transform 0.2s; }
.nv-pill[aria-expanded="true"] .chev { transform: rotate(180deg); }

.nv-actions { display: flex; align-items: center; gap: 0.75rem; }
.nv-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.nv-action-btn:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

.nv-cta-desktop {
  display: none;
  background: var(--netabor-yellow);
  color: var(--netabor-dark);
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 0.5rem;
  height: 40px;
  align-items: center;
  white-space: nowrap;
}
.nv-cta-desktop:hover { filter: brightness(1.05); }

.nv-mobile-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nv-pills { display: inline-flex; }
  .nv-cta-desktop { display: inline-flex; }
  .nv-mobile-toggle { display: none; }
}

/* ── Mega menu (Programy) ── */
.nv-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--netabor-dark);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 1rem;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4);
  padding: 1rem;
  min-width: 420px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nv-pill-wrap { position: relative; }
.nv-pill-wrap:hover .nv-mega,
.nv-mega[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nv-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.nv-mega-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
  text-align: left;
}
.nv-mega-card:hover { background: rgba(255, 255, 255, 0.08); }
.nv-mega-icon {
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nv-mega-card-title { color: #fff; font-weight: 600; font-size: 0.9rem; line-height: 1.2; }
.nv-mega-card-desc { color: rgba(255, 255, 255, 0.55); font-size: 0.78rem; margin-top: 2px; line-height: 1.3; }
.nv-mega-bottom {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nv-mega-bottom-cta {
  background: hsl(183 100% 37% / 0.20);
  color: var(--netabor-yellow);
  padding: 0.45rem 0.9rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Mobile menu ── */
.nv-mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: hsl(223 25% 17%);
  z-index: 49;
  padding: 1.5rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.25rem;
}
.nv-mobile-menu.open { display: flex; }
@media (min-width: 768px) {
  .nv-mobile-menu { inset: var(--header-h-md) 0 0 0; }
}
.nv-mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.nv-mobile-menu a:hover,
.nv-mobile-menu a.active {
  background: rgba(253, 207, 0, 0.15);
  color: var(--netabor-yellow);
}
.nv-mobile-menu .nv-mobile-cta {
  margin-top: 0.75rem;
  background: var(--netabor-yellow);
  color: var(--netabor-dark);
  text-align: center;
  font-weight: 700;
}

/* ── Footer ── */
.nv-footer {
  background: var(--netabor-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 4rem 0 1.75rem;
}
.nv-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .nv-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
}
.nv-footer-brand img { height: 44px; margin-bottom: 1rem; }
.nv-footer-brand p { color: rgba(255, 255, 255, 0.55); font-size: 0.88rem; line-height: 1.65; max-width: 280px; margin-top: 0.25rem; }
.nv-footer-brand .ico-info { font-size: 0.78rem; color: rgba(255, 255, 255, 0.40); margin-top: 0.75rem; }
.nv-footer h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.nv-footer h4.col-yellow { color: var(--netabor-yellow); }
.nv-footer h4.col-teal { color: var(--netabor-teal); }
.nv-footer h4.col-pink { color: var(--netabor-pink); }
.nv-footer ul li { margin-bottom: 0.5rem; }
.nv-footer ul a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nv-footer ul a:hover { color: var(--netabor-yellow); }
.nv-footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.nv-footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s, color 0.2s;
}
.nv-footer-socials a:hover { background: var(--netabor-yellow); color: var(--netabor-dark); }
.nv-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.30);
}
.nv-footer-bottom a { color: rgba(255, 255, 255, 0.45); }
.nv-footer-bottom a:hover { color: var(--netabor-yellow); }

/* ── Polaroid card ── */
.polaroid {
  position: relative;
  width: 16rem;
  background: #fff;
  padding: 0.75rem 0.75rem 1rem;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
}
.polaroid:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  box-shadow: var(--shadow-lg);
}
.polaroid-tape {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 4rem;
  height: 1.25rem;
  background: hsl(49 100% 49% / 0.7);
  clip-path: polygon(4% 0, 100% 8%, 96% 100%, 0 92%);
}
.polaroid-photo {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.polaroid-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(34, 41, 54, 0.35) 0.6px, transparent 0.6px);
  background-size: 6px 6px;
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.polaroid-photo > * { position: relative; z-index: 1; }
.polaroid-foot {
  margin-top: 0.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
}
.polaroid-caption {
  font-family: 'Caveat', 'Poppins', cursive;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--netabor-dark);
  line-height: 1.1;
}
.polaroid-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(var(--muted-foreground));
}

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ── Toast ── */
.toast {
  position: fixed;
  top: calc(var(--header-h) + 1rem);
  right: 1rem;
  background: var(--netabor-dark);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 0.92rem;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 99999;
  max-width: calc(100% - 2rem);
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.error { background: var(--netabor-red); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Focus ring ── */
*:focus { outline: none; }
*:focus-visible { outline: 3px solid var(--netabor-yellow); outline-offset: 3px; border-radius: 0.25rem; }

/* ── Utility (semantic-token mapping) ── */
.text-foreground { color: hsl(var(--foreground)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-yellow { color: var(--netabor-yellow); }
.text-teal { color: var(--netabor-teal); }
.text-red { color: var(--netabor-red); }
.bg-card { background: hsl(var(--card)); }
.bg-muted { background: hsl(var(--muted) / 0.5); }
.bg-dark { background: var(--netabor-dark); color: #fff; }
.bg-yellow { background: var(--netabor-yellow); }
.bg-teal { background: var(--netabor-teal); }

/* ── Sections (rytmus pozadí) ── */
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section-muted { background: hsl(var(--muted) / 0.5); }
.section-dark { background: var(--netabor-dark); color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   DETAIL PAGE (akce/detail.html) — editorial scrapbook
   Source: NETABOR_DESIGN.md sekce 4 + 6 + 7 + Lovable preview screenshot
   ═══════════════════════════════════════════════════════════════ */

/* ── Detail layout grid (body left + sticky booking right) ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .detail-grid { grid-template-columns: minmax(0, 1fr) 380px; gap: 3rem; }
}
.detail-body { min-width: 0; }
.detail-aside {
  position: relative;
}
@media (min-width: 1024px) {
  .detail-aside { position: sticky; top: calc(var(--header-h-md) + 1.5rem); }
}

/* ── Detail hero (DARK variant — Lovable preview match) ── */
.detail-hero {
  position: relative;
  background: var(--netabor-dark);
  color: #fff;
  padding: 1.5rem 0 3rem;
  /* No overflow:hidden — price circle has box-shadow + rotation breakout (audit HIGH-2 fix) */
}
@media (min-width: 768px) { .detail-hero { padding: 2rem 0 4rem; } }

/* "← Zpět na všechny akce" back link */
.dh-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.dh-back-link:hover { color: var(--netabor-yellow); }
@media (min-width: 768px) { .dh-back-link { margin-bottom: 2rem; } }

/* Grid: text left + big photo right */
.dh-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
}
@media (min-width: 1024px) {
  .dh-grid { grid-template-columns: 1.1fr 1fr; gap: 3rem; }
}
.dh-text-col { position: relative; }
.dh-art-col { position: relative; min-height: 22rem; }
@media (min-width: 1024px) { .dh-art-col { min-height: 32rem; } }

/* Top row: star badge + bubble + sparkle */
.dh-top-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  min-height: 8rem;
  flex-wrap: wrap;
}
.dh-bubble { min-width: 12rem; }
/* Hide sparkle cluster on very narrow phones (<375px) — bubble needs space (audit MED-4 fix) */
@media (max-width: 374px) { .dh-sparkle { display: none; } }
@media (min-width: 1024px) { .dh-top-row { min-height: 10rem; margin-bottom: 3rem; flex-wrap: nowrap; } }

/* "POZOR!" star burst badge (12-point star, rotated) */
.dh-pozor-star {
  flex-shrink: 0;
  width: 7rem;
  height: 7rem;
  background: var(--netabor-yellow);
  color: var(--netabor-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
  /* 12-point star clip-path */
  clip-path: polygon(
    50% 0%, 58% 18%, 79% 13%, 71% 32%,
    91% 32%, 76% 50%, 91% 68%, 71% 68%,
    79% 87%, 58% 82%, 50% 100%, 42% 82%,
    21% 87%, 29% 68%, 9% 68%, 24% 50%,
    9% 32%, 29% 32%, 21% 13%, 42% 18%
  );
  transform: rotate(-8deg);
  padding: 0.5rem;
}
.dh-pozor-star .pozor-line-1 { font-size: 0.6rem; letter-spacing: 0.12em; }
.dh-pozor-star .pozor-line-2 { font-size: 0.85rem; margin-top: 2px; letter-spacing: 0.04em; font-weight: 800; }
.dh-pozor-star .pozor-line-3 {
  font-family: 'Caveat', cursive;
  font-size: 0.78rem;
  text-transform: none;
  font-weight: 600;
  margin-top: 4px;
}
@media (min-width: 768px) { .dh-pozor-star { width: 8rem; height: 8rem; } }

/* Speech bubble "HROZÍ NEBEZPEČÍ:" — white card with bottom tail */
.dh-bubble {
  flex: 1;
  background: #fff;
  color: var(--netabor-dark);
  border-radius: 1.25rem;
  padding: 1rem 1.25rem 1.1rem;
  position: relative;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.35);
  max-width: 28rem;
}
.dh-bubble::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 2rem;
  width: 32px;
  height: 24px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.dh-bubble-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.35rem;
}
.dh-bubble-title {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--netabor-dark);
  text-transform: uppercase;
}
.dh-bubble-foot {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

/* Sparkle cluster (minimal accent — 3 dots + 1 sparkle) */
.dh-sparkle {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  padding-top: 0.5rem;
}
.dh-sparkle-dots {
  display: flex;
  gap: 0.35rem;
}
.dh-sparkle-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}
.dh-sparkle-star {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--netabor-pink);
}

/* Age + terms row */
.dh-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.dh-age-circle {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--netabor-teal);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
.dh-age-circle .age-label { font-size: 0.55rem; letter-spacing: 0.18em; opacity: 0.85; text-transform: uppercase; }
.dh-age-circle .age-num { font-size: 1.05rem; font-weight: 800; margin-top: 3px; }
.dh-age-circle .age-foot { font-size: 0.55rem; letter-spacing: 0.18em; opacity: 0.85; text-transform: uppercase; margin-top: 3px; }
@media (min-width: 768px) { .dh-age-circle { width: 6rem; height: 6rem; } .dh-age-circle .age-num { font-size: 1.2rem; } }

.dh-terms-meta {
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}
.dh-terms-meta .arrow { color: rgba(255, 255, 255, 0.5); margin-right: 0.4rem; }
.dh-terms-meta strong { color: #fff; font-weight: 700; }
.dh-terms-meta .sub { font-size: 0.72rem; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* Big H1 (light on dark) */
.detail-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
}
.detail-hero h1 .squiggle .squiggle-svg path { stroke: var(--netabor-yellow); }

.detail-hero-lead {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 38rem;
}
@media (min-width: 768px) { .detail-hero-lead { font-size: 1.15rem; } }

/* Hero meta items (under lead) */
.detail-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.detail-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}
.detail-hero-meta svg { color: var(--netabor-yellow); }

/* Big hero photo (right column) — gradient + SVG sketch icon */
.dh-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--netabor-green) 0%, var(--netabor-teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dh-photo svg.dh-photo-sketch {
  width: 50%;
  max-width: 16rem;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}
@media (min-width: 1024px) { .dh-photo { min-height: 32rem; } }

/* Price circle hovering over photo — TOP edge */
.dh-price-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: var(--netabor-yellow);
  color: var(--netabor-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.35);
  border: 4px solid var(--netabor-dark);
}
.dh-price-circle .price-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }
.dh-price-circle .price-num { font-size: 1.5rem; font-weight: 800; line-height: 1; margin-top: 4px; letter-spacing: -0.02em; }
.dh-price-circle .price-foot { font-size: 0.65rem; letter-spacing: 0.06em; margin-top: 3px; font-weight: 700; }
@media (min-width: 768px) {
  .dh-price-circle {
    width: 11rem; height: 11rem;
    top: 1rem; right: -1rem; left: auto;
    transform: rotate(8deg);
  }
  .dh-price-circle .price-num { font-size: 1.85rem; }
}

/* Decorative dots (4 random brand colors near top of hero) */
.dh-deco-dots {
  position: absolute;
  top: 12rem;
  left: 50%;
  display: none;
  align-items: center;
  gap: 0.4rem;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 1024px) { .dh-deco-dots { display: flex; } }
.dh-deco-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; }

/* ── Content blocks (editorial renderer) ── */
.cb-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cb-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: hsl(var(--foreground) / 0.88);
}
.cb-text h2, .cb-text h3 {
  margin: 0 0 0.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cb-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.cb-text h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
.cb-text p { margin-bottom: 0.85rem; }
.cb-text strong { color: hsl(var(--foreground)); font-weight: 600; }
.cb-text a {
  color: var(--netabor-teal);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.cb-text br + br { display: none; }

/* Editorial photo card (rounded + caption overlay) — viz Lovable preview */
.cb-photo-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: hsl(var(--muted));
  box-shadow: var(--shadow-md);
}
.cb-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.cb-photo-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  padding-right: 1rem;
  z-index: 2;
}
.cb-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.cb-photo-card.no-caption::after { display: none; }

/* Pull quote — žlutá guillemet ikona + serif italic title (Lovable preview) */
.cb-pull-quote {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 3.25rem;
  background: linear-gradient(to right, hsl(49 100% 49% / 0.06) 0%, transparent 100%);
  border-radius: 1rem;
  border-left: 4px solid var(--netabor-yellow);
}
.cb-pull-quote::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  left: 1.1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FDCF00' stroke='none'><path d='M9.5 4c-3 0-5.5 2.5-5.5 5.5v8.5h6v-9h-3c.5-1.5 1.5-3 2.5-3v-2zm9 0c-3 0-5.5 2.5-5.5 5.5v8.5h6v-9h-3c.5-1.5 1.5-3 2.5-3v-2z'/></svg>") no-repeat center / contain;
}
.cb-pull-quote-text {
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  color: hsl(var(--foreground));
  letter-spacing: -0.015em;
}
.cb-pull-quote-author {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  font-style: normal;
}

/* Warning block — info card s teal nebo red accent */
.cb-warning {
  background: hsl(183 100% 37% / 0.06);
  border: 1px solid hsl(183 100% 37% / 0.2);
  border-left: 4px solid var(--netabor-teal);
  border-radius: 1rem;
  padding: 1.5rem;
}
.cb-warning.warn { background: hsl(2 80% 60% / 0.06); border-color: hsl(2 80% 60% / 0.2); border-left-color: var(--netabor-red); }
.cb-warning-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}
.cb-warning-body { font-size: 0.95rem; line-height: 1.6; color: hsl(var(--foreground) / 0.85); }

/* Info cards — grid 1-3 cols */
.cb-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .cb-info-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .cb-info-cards.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.cb-info-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cb-info-card-title { font-weight: 700; font-size: 1rem; color: hsl(var(--foreground)); }
.cb-info-card-body { font-size: 0.92rem; color: hsl(var(--muted-foreground)); line-height: 1.5; }

/* Timeline — vertical schedule */
.cb-timeline { display: flex; flex-direction: column; gap: 1rem; }
.cb-timeline-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding-left: 1.25rem;
  position: relative;
}
.cb-timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--netabor-yellow);
  border: 2px solid var(--netabor-dark);
}
.cb-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0.3rem;
  top: 1.25rem;
  bottom: -1rem;
  width: 1px;
  background: hsl(var(--border));
}
.cb-timeline-time {
  font-weight: 700;
  color: var(--netabor-dark);
  font-size: 0.9rem;
  white-space: nowrap;
}
.cb-timeline-body { color: hsl(var(--foreground) / 0.85); font-size: 0.95rem; line-height: 1.5; }

/* Price block */
.cb-price-card {
  background: var(--netabor-dark);
  color: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cb-price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--netabor-yellow);
  letter-spacing: -0.02em;
}
.cb-price-label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }

/* Stat grid (Apple-pilot block reuse) */
.cb-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
}
@media (min-width: 640px) { .cb-stats.cols-3 { grid-template-columns: repeat(3, 1fr); } .cb-stats.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.cb-stat-item { text-align: left; }
.cb-stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--netabor-dark);
  letter-spacing: -0.025em;
  line-height: 1;
}
.cb-stat-label { font-size: 0.85rem; color: hsl(var(--muted-foreground)); margin-top: 0.35rem; font-weight: 500; }

/* Chapter divider — editorial section break */
.cb-chapter {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
}
.cb-chapter-num {
  font-family: 'Caveat', 'Poppins', cursive;
  font-size: 2rem;
  color: var(--netabor-teal);
  font-weight: 600;
  line-height: 1;
}
.cb-chapter-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: -0.02em;
}

/* Hero full-bleed (Apple-pilot block reuse, editorial style) */
.cb-hero-full {
  position: relative;
  margin: 0 calc(-1 * var(--container-padding));
  height: 50vh;
  min-height: 22rem;
  max-height: 32rem;
  overflow: hidden;
  border-radius: 0;
}
.cb-hero-full img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cb-hero-full-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  color: #fff;
}
.cb-hero-full-overlay h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 36rem;
}

/* Feature split (Apple-pilot block reuse — 50/50 photo + text) */
.cb-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .cb-feature { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cb-feature.image-right { direction: rtl; }
  .cb-feature.image-right > * { direction: ltr; }
}
.cb-feature-photo {
  border-radius: 1.25rem;
  overflow: hidden;
  background: hsl(var(--muted));
}
.cb-feature-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.cb-feature-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--netabor-teal);
  margin-bottom: 0.75rem;
  display: block;
}
.cb-feature-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cb-feature-body {
  color: hsl(var(--foreground) / 0.85);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ── Booking widget (sticky right column) ── */
.booking-widget {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.booking-widget-header {
  background: var(--netabor-dark);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.booking-widget-header h3 { font-size: 1rem; font-weight: 700; color: var(--netabor-yellow); }

/* Tabs — termíny */
.booking-tabs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  background: hsl(var(--muted) / 0.5);
  border-bottom: 1px solid hsl(var(--border));
  overflow-x: auto;
  scrollbar-width: thin;
}
.booking-tab {
  flex-shrink: 0;
  padding: 0.45rem 0.9rem;
  border-radius: 0.65rem;
  background: transparent;
  color: hsl(var(--muted-foreground));
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.booking-tab:hover { background: hsl(var(--border) / 0.5); color: hsl(var(--foreground)); }
.booking-tab.active { background: var(--netabor-yellow); color: var(--netabor-dark); }
.booking-tab-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 0.5rem;
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid hsl(var(--border));
  transition: color 0.2s, background 0.2s;
}
.booking-tab-arrow:hover:not(:disabled) { background: hsl(var(--muted)); color: hsl(var(--foreground)); }
.booking-tab-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

/* Term header (datum + clock ikona) */
.booking-term-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--netabor-dark);
}
.booking-term-head svg { color: var(--netabor-teal); flex-shrink: 0; }

/* Location list */
.booking-loc-list {
  padding: 0.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.booking-loc-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.booking-loc-card:hover {
  border-color: var(--netabor-teal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.booking-loc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: hsl(183 100% 37% / 0.1);
  color: var(--netabor-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-loc-info { flex: 1; min-width: 0; }
.booking-loc-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--netabor-dark);
  line-height: 1.2;
}
.booking-loc-city {
  font-size: 0.78rem;
  color: hsl(var(--muted-foreground));
  margin-top: 2px;
}
.booking-loc-right { text-align: right; }
.booking-loc-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--netabor-yellow);
  letter-spacing: -0.01em;
  line-height: 1;
}
.booking-loc-cta {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--netabor-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* "Klidná hlava pro rodiče" info card */
.info-card-soft {
  margin: 1.25rem;
  padding: 1rem 1.1rem;
  background: hsl(183 100% 37% / 0.08);
  border: 1px solid hsl(183 100% 37% / 0.18);
  border-radius: 0.85rem;
  display: flex;
  gap: 0.85rem;
}
.info-card-soft-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--netabor-teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card-soft-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--netabor-dark);
  margin-bottom: 0.25rem;
}
.info-card-soft-body {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.45;
}

/* Mobile: sticky bottom CTA bar */
.detail-sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 -8px 24px -6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) { .detail-sticky-bottom { display: none; } }
.detail-sticky-price {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.detail-sticky-price strong {
  font-size: 1.1rem;
  color: var(--netabor-dark);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

/* Empty state (slug nenalezen) */
.detail-empty {
  padding: 4rem 0;
  text-align: center;
}
.detail-empty h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.detail-empty p { color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }

/* ── Pictograms band (4-col under hero, light bg per Lovable preview) ── */
.detail-pictograms-band {
  background: hsl(48 60% 98%);
  border-bottom: 1px solid hsl(var(--border));
  padding: 1.75rem 0;
}
.pic-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .pic-band-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pic-band-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.pic-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 0.25rem;
}
.pic-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(49 100% 49% / 0.18);
  color: hsl(45 90% 38%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pic-icon svg { width: 1.4rem; height: 1.4rem; }
.pic-text { min-width: 0; }
.pic-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--netabor-dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.pic-subtitle {
  font-size: 0.78rem;
  color: hsl(var(--muted-foreground));
  margin-top: 2px;
}

/* ── Drop-cap yellow (first letter in .cb-text-editorial) — match Lovable "O AKCI" intro ── */
.cb-text-editorial {
  max-width: 38rem;
  font-size: 1.1rem;
  line-height: 1.7;
}
.cb-text-editorial::first-letter {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 0.85;
  color: var(--netabor-yellow);
  float: left;
  margin: 0.15rem 0.6rem 0 0;
  letter-spacing: -0.04em;
}
/* "O AKCI" eyebrow centered (used s text editorial title) */
.cb-text-editorial-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  position: relative;
}
.cb-text-editorial-eyebrow::before,
.cb-text-editorial-eyebrow::after {
  content: '';
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: hsl(var(--border));
  vertical-align: middle;
  margin: 0 1rem;
}

/* ── Bullet callout block ("Co dítě zažije → Příprava, která dává smysl") ── */
.cb-bullet-callout {
  background: hsl(183 100% 37% / 0.08);
  border: 1px solid hsl(183 100% 37% / 0.18);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
}
.cb-bullet-callout-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--netabor-teal);
  margin-bottom: 0.65rem;
}
.cb-bullet-callout-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--netabor-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.cb-bullet-callout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 1.5rem;
}
@media (min-width: 640px) { .cb-bullet-callout-grid { grid-template-columns: repeat(2, 1fr); } }
.cb-bullet-callout-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.98rem;
  line-height: 1.5;
  color: hsl(var(--foreground) / 0.88);
}
.cb-bullet-callout-check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 2px solid var(--netabor-teal);
  color: var(--netabor-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.cb-bullet-callout-check svg { width: 0.75rem; height: 0.75rem; }

/* ── USP cards block (3-col, big yellow icon-bubble + title + body) ── */
.cb-usp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .cb-usp-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cb-usp-cards.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.cb-usp-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cb-usp-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: hsl(49 100% 49% / 0.18);
  color: hsl(45 90% 38%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cb-usp-icon svg { width: 1.4rem; height: 1.4rem; }
.cb-usp-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--netabor-dark);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.cb-usp-card-body {
  font-size: 0.92rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* Demo banner (pokud content_blocks empty → mock data) */
.demo-banner {
  background: hsl(49 100% 49% / 0.1);
  border: 1px dashed hsl(49 100% 49% / 0.5);
  border-radius: 0.65rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: hsl(var(--foreground) / 0.7);
  margin-bottom: 1.5rem;
}

/* Galerie (horizontal scroll) */
.gallery-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.gallery-item {
  flex: 0 0 16rem;
  scroll-snap-align: start;
  background: #fff;
  padding: 0.6rem 0.6rem 0.75rem;
  box-shadow: var(--shadow-md);
  transform: rotate(var(--tilt, -1.2deg));
  transition: transform 0.35s, box-shadow 0.35s;
}
.gallery-item:nth-child(even) { --tilt: 1.5deg; }
.gallery-item:hover { transform: translateY(-4px) rotate(0deg); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: 0.25rem; }
.gallery-item-caption {
  margin-top: 0.5rem;
  font-family: 'Caveat', 'Poppins', cursive;
  font-size: 1rem;
  color: var(--netabor-dark);
  font-weight: 500;
}
