/* =========================================
   Cookie placeholder (blokovaný obsah)
   ========================================= */
.cookie-placeholder {
  background: var(--color-bg, #f2f2f2);
  border: 2px dashed var(--color-border, #d8d8d8);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--color-text-light, #555);
}

.cookie-placeholder i.fa-cookie-bite {
  font-size: 2rem;
  color: var(--color-text-muted, #9e9e9e);
  margin-bottom: 1rem;
  display: block;
}

.cookie-placeholder p {
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.cookie-placeholder button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: 40px;
  border: none;
  background: var(--color-accent, #1a1a1a);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cookie-placeholder button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* =========================================
   Cookie banner (spodní lišta)
   ========================================= */
#cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 99998;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 1px solid rgba(0,0,0,0.06);
  animation: ckSlideUp 0.4s ease;
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes ckSlideUp {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cookie-banner-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ck-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.ck-btn-primary {
  background: #1a1a1a;
  color: #fff;
}

.ck-btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
}

.ck-btn-ghost {
  background: transparent;
  color: #1a1a1a;
  border: 1.5px solid #d8d8d8;
}

.ck-btn-ghost:hover {
  border-color: #1a1a1a;
  background: #f5f5f5;
}

.ck-btn-text {
  background: transparent;
  color: #777;
}

.ck-btn-text:hover {
  color: #1a1a1a;
  background: #f5f5f5;
}

@media (max-width: 640px) {
  #cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
  .cookie-banner-inner {
    padding: 1rem;
    gap: 1rem;
  }
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }
  .ck-btn {
    width: 100%;
    padding: 0.8rem;
  }
}

/* =========================================
   Cookie modal (Nastavení)
   ========================================= */
#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.cookie-modal-inner {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 80px rgba(0,0,0,0.3);
  animation: ckSlideUp 0.3s ease;
}

.ck-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

.ck-modal-close:hover { color: #1a1a1a; }

.cookie-modal-inner h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}

.ck-modal-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 1.5rem;
}

.ck-cat {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}

.ck-cat:hover { border-color: #1a1a1a; }

.ck-cat label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.ck-cat input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: #1a1a1a;
  cursor: pointer;
}

.ck-cat input[type="checkbox"]:disabled { cursor: not-allowed; opacity: 0.6; }

.ck-cat span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.ck-cat strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.ck-cat em {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: #777;
  font-weight: 400;
}

#ck-save {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem;
}

/* =========================================
   Splash overlay – stránka ve výstavbě
   ========================================= */
#splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #4a4a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.35s ease;
}

#splash-overlay .splash-content {
  text-align: center;
  color: #fff;
  max-width: 480px;
  width: 100%;
}

#splash-overlay .splash-logo {
  height: clamp(70px, 12vw, 110px);
  width: auto;
  margin-bottom: 2rem;
  display: inline-block;
}

#splash-overlay h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

#splash-overlay .splash-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin: 0 0 2.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

#splash-overlay #splash-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

#splash-overlay #splash-password {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}

#splash-overlay #splash-password:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

#splash-overlay #splash-password::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

#splash-overlay #splash-form button {
  padding: 0.85rem 1.75rem;
  border-radius: 40px;
  border: none;
  background: #fff;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}

#splash-overlay #splash-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

#splash-overlay #splash-error {
  display: none;
  color: #ff8a8a;
  font-size: 0.85rem;
  margin: 0 0 1.5rem;
  font-family: 'Poppins', sans-serif;
}

#splash-overlay .splash-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}

#splash-overlay .splash-instagram:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
  #splash-overlay #splash-form {
    flex-direction: column;
  }
  #splash-overlay #splash-form button {
    width: 100%;
  }
}

/* =========================================
   CSS Custom Properties
   ========================================= */
:root {
  --color-bg: #f2f2f2;
  --color-white: #ffffff;
  --color-cream: #e8e8e8;
  --color-accent: #1a1a1a;
  --color-accent-dark: #000000;
  --color-accent-light: #c8c8c8;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-text-muted: #9e9e9e;
  --color-border: #d8d8d8;
  --color-shadow: rgba(0, 0, 0, 0.07);
  --font-serif: 'Dancing Script', cursive;
  --font-sans: 'Poppins', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 560px;
}

/* =========================================
   Layout Utilities
   ========================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* Sevřenější sekce – menší prostor nad nadpisem */
.section-tight {
  padding-top: 2.5rem;
}

.section-tight .section-header {
  margin-bottom: 2rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
}

.btn-secondary {
  background: var(--color-cream);
  color: var(--color-accent-dark);
}

.btn-secondary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

/* =========================================
   Navigation
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px var(--color-shadow);
}

.nav.scrolled .nav-logo {
  color: var(--color-text);
}

.nav.scrolled .nav-link {
  color: var(--color-text);
}

.nav.scrolled .nav-link:hover {
  color: var(--color-accent);
}

.nav.scrolled .hamburger span {
  background: var(--color-text);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}

.nav-logo:hover {
  opacity: 0.85;
}

/* Logo obrázky – přepínání tmavá/světlá verze */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}

/* Na hero (tmavém pozadí): zobrazit světlou (white) verzi, skrýt tmavou */
.nav-logo-dark  { display: none; }
.nav-logo-light { display: block; }

/* Po scrollu (bílé nav): zobrazit tmavou verzi, skrýt světlou */
.nav.scrolled .nav-logo-dark  { display: block; }
.nav.scrolled .nav-logo-light { display: none; }

/* Aktivní odkaz v menu (aktuální stránka) */
.nav-active {
  color: #fff !important;
  font-weight: 600;
}

/* Po odscrollování (bílá navigace) je aktivní odkaz tmavý */
.nav.scrolled .nav-active {
  color: var(--color-accent) !important;
}

.nav-active::after {
  width: 100% !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Na hero (průhledný nav): bílé tlačítko s černým textem */
.nav-cta {
  background: var(--color-white) !important;
  color: var(--color-text) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--color-cream) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Po scrollu: černé tlačítko s bílým textem */
.nav.scrolled .nav-cta {
  background: var(--color-text) !important;
  color: var(--color-white) !important;
}

.nav.scrolled .nav-cta:hover {
  background: #000 !important;
}

.nav-cta::after {
  display: none !important;
}

/* Social ikony v navigaci */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.25rem;
}

.nav-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
  text-decoration: none;
}

.nav-social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}

.nav.scrolled .nav-social-icon {
  color: var(--color-text-light);
  border-color: var(--color-border);
}

.nav.scrolled .nav-social-icon:hover {
  background: var(--color-bg);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--color-text);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--color-text);
}

/* Dropdown podmenu */
.nav-item-dropdown {
  position: relative;
}

.nav-link-has-dropdown {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 200;
  list-style: none;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: 0;
  border-bottom-color: var(--color-white);
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-item-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-dropdown li a:hover {
  background: var(--color-bg);
  color: var(--color-accent);
  padding-left: 1.5rem;
}

.nav-dropdown li a i {
  width: 16px;
  margin-right: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.nav-dropdown li a:hover i {
  color: var(--color-accent);
}

/* Dropdown zarovnaný doprava (pro poslední položku v menu) */
.nav-dropdown-right {
  left: auto;
  right: 0;
  transform: translateY(6px);
}

.nav-item-dropdown:hover .nav-dropdown-right {
  transform: translateY(0);
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-link {
    color: var(--color-text) !important;
    font-size: 1.05rem;
    padding: 0.9rem 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    transition: none;
  }

  .nav-arrow {
    transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Šipka u Nabídky doprava */
  .nav-link-has-dropdown:not(.nav-cta) {
    justify-content: space-between;
  }

  /* Skryj společné tlačítko Rezervovat na mobilu */
  a.nav-cta {
    display: none !important;
  }

  /* Rozbalit dropdown Rezervace inline – přímo zobrazit obě tlačítka */
  a.nav-cta + .nav-dropdown {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: none !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
    width: 100% !important;
    min-width: 0 !important;
  }

  a.nav-cta + .nav-dropdown::before {
    display: none !important;
  }

  a.nav-cta + .nav-dropdown li {
    width: 100%;
    margin: 0;
  }

  /* Každá položka = plnohodnotné tmavé tlačítko */
  a.nav-cta + .nav-dropdown li a {
    background: var(--color-text);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 0.95rem 1.2rem !important;
    border: none !important;
    border-bottom: none !important;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.25s;
  }

  a.nav-cta + .nav-dropdown li a:hover,
  a.nav-cta + .nav-dropdown li a:active {
    background: #000;
    padding-left: 1.2rem !important;
    color: var(--color-white);
  }

  a.nav-cta + .nav-dropdown li a i {
    color: var(--color-white) !important;
    width: auto !important;
    margin-right: 0 !important;
    font-size: 0.95rem;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-out;
  }

  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* Social ikony v mobilním menu */
  .nav-socials {
    flex-direction: row;
    justify-content: center;
    padding: 1rem 0 0;
    border-bottom: none;
    margin-left: 0;
    gap: 0.5rem;
  }

  .nav-social-icon {
    color: var(--color-text-light) !important;
    border-color: var(--color-border) !important;
  }

  .nav-social-icon:hover {
    background: var(--color-bg) !important;
    color: var(--color-accent) !important;
  }

  /* Dropdown v mobilním menu */
  .nav-item-dropdown:hover .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(6px);
  }

  .nav-dropdown {
    position: static;
    transform: none !important;
    box-shadow: none;
    border-radius: 0;
    background: var(--color-bg);
    padding: 0;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-dropdown::before { display: none; }

  .nav-item-dropdown.open .nav-dropdown {
    max-height: 400px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .nav-item-dropdown.open .nav-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown li a {
    padding: 0.55rem 1rem 0.55rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
  }

  .nav-dropdown li a:hover {
    padding-left: 1.75rem;
  }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh; /* fallback pro starší iOS */
  min-height: 100svh;
  padding-top: var(--nav-height);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 40%, #4a4a4a 100%);
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* FOTO: Fullscreen hero fotka studia nebo trenérky, doporučený poměr 16:9 nebo portrait */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 20, 20, 0.55) 0%, rgba(20, 20, 20, 0.2) 35%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  padding: 0 1.5rem;
  margin-left: clamp(1.25rem, 5vw, 5rem);
  margin-right: 1.5rem;
  color: var(--color-white);
  animation: fadeInUp 0.9s ease both;
  box-sizing: border-box;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
  opacity: 0.9;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.5em;
  color: var(--color-accent-light);
  opacity: 0.85;
  display: inline-block;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 420px;
  font-weight: 300;
  line-height: 1.8;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll i {
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================
   Services Section
   ========================================= */
.services {
  background: var(--color-white);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}

.service-card {
  flex: 0 1 calc(33.333% - 1.2rem);
}

@media (max-width: 900px) {
  .service-card {
    flex: 0 1 calc(50% - 0.875rem);
  }
}

@media (max-width: 580px) {
  .service-card {
    flex: 0 1 100%;
  }
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--color-shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent-dark);
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  flex: 1;
}

.service-card .btn {
  align-self: flex-start;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  margin-top: auto;
}

/* =========================================
   Calendar Section
   ========================================= */
.calendar {
  background: var(--color-cream);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   Certifications
   ========================================= */
.certifications {
  margin: 1.75rem 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--color-border);
}

.cert-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.cert-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.5rem;
}

@media (max-width: 600px) {
  .cert-list {
    grid-template-columns: 1fr;
  }
}

.cert-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.cert-list li i {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

/* =========================================
   Instagram Section
   ========================================= */
.instagram-section {
  background: var(--color-white);
}

.instagram-handle {
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity var(--transition);
}

.instagram-handle:hover {
  opacity: 0.7;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ig-tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  display: block;
  position: relative;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ig-tile:hover img {
  transform: scale(1.05);
}

/* Placeholder dlaždice – zobrazí se dokud není nastaven LightWidget */
.ig-placeholder {
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-light);
  font-size: 2rem;
  transition: background var(--transition), color var(--transition);
}

.ig-placeholder:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.instagram-cta {
  text-align: center;
}

/* =========================================
   Service pages – responsive grid
   ========================================= */
@media (max-width: 768px) {
  .service-top-grid,
  .analyza-top-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================
   Testimonials Section (Elfsight embed)
   ========================================= */
.testimonials {
  background: var(--color-white);
}

/* =========================================
   Location Section
   ========================================= */
.location {
  background: var(--color-bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  flex-shrink: 0;
  font-size: 1rem;
}

.location-detail h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.location-detail p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--color-shadow);
}

/* MAPA: Vložit správné GPS souřadnice nebo adresu do src */
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* =========================================
   Contact Section
   ========================================= */
.contact {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item a {
  color: var(--color-text);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 138, 0.15);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form .btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: #2e7d32;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.footer-brand .footer-logo span {
  color: var(--color-accent-light);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.footer-nav li {
  margin-bottom: 0;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--color-accent-light);
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact li i {
  color: var(--color-accent);
  width: 14px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

/* =========================================
   Scroll Animations
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* =========================================
   Mobile Bottom Bar – rychlá rezervace
   (jen mobil + tablet)
   ========================================= */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    display: flex;
    background: #1a1a1a;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .mbb-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.85rem 0.5rem;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-align: center;
    min-height: 60px;
    transition: background 0.2s;
    line-height: 1.2;
  }

  .mbb-btn:active,
  .mbb-btn:hover {
    background: #2d2d2d;
  }

  .mbb-btn + .mbb-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mbb-btn i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
  }

  /* Body bottom padding – aby obsah nezůstal pod lištou */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0));
  }

  /* Footer respektuje spodní lištu */
  .footer {
    padding-bottom: 1rem;
  }

  /* Cookie banner posunout NAD spodní lištu */
  #cookie-banner {
    bottom: calc(60px + env(safe-area-inset-bottom, 0) + 0.5rem) !important;
  }

  /* Hero-scroll indikátor zvednout nad lištu */
  .hero-scroll {
    bottom: calc(60px + env(safe-area-inset-bottom, 0) + 0.75rem) !important;
  }
}

/* =========================================
   MOBILE OPTIMALIZACE
   (touch, sizes, iOS fixes, layout doladění)
   ========================================= */

/* Tap highlight – decentní místo modrého bliku Android Chrome */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}

/* iOS smooth scrolling */
html {
  -webkit-overflow-scrolling: touch;
}

/* About grid (sekce O mně) – responsive */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* === TABLETY (do 1024px) === */
@media (max-width: 1024px) {
  .section {
    padding: 4rem 0;
  }
  .section-header {
    margin-bottom: 3rem;
  }
  .nav-links {
    gap: 1.25rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
}

/* Safety – nic nesmí přesahovat viewport horizontálně */
@media (max-width: 768px) {
  img,
  iframe,
  video,
  table {
    max-width: 100%;
  }

  /* Hero content padding-aware */
  .hero-content {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
    max-width: calc(100% - 3rem);
  }

  /* Cookie banner – jistota že nepřeteče */
  #cookie-banner {
    max-width: calc(100% - 1rem);
  }

  /* Long words / URLs nesmí způsobit overflow */
  p, h1, h2, h3, h4, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

/* === MOBILY (do 768px) === */
@media (max-width: 768px) {
  /* Section padding zmenšit – víc obsahu na obrazovku */
  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  /* Container padding tighter */
  .container {
    padding: 0 1rem;
  }

  /* About grid – pod sebou */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  /* iOS Safari zooming fix – inputy MUSÍ mít min 16px */
  .form-group input,
  .form-group textarea,
  .form-group select,
  #splash-password,
  #cookie-modal input {
    font-size: 16px;
  }

  /* Touch targets – min 44px */
  .btn {
    min-height: 44px;
  }

  .service-card .btn,
  .ck-btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }

  /* Social ikony v navigaci – větší pro prst */
  .nav-social-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* Hero subtitle – odstranit <br> na úzkém mobilu */
  .hero-subtitle br {
    display: none;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Mapa iframe nižší */
  .map-wrapper iframe {
    height: 320px !important;
  }

  /* Service cards – menší padding */
  .service-card {
    padding: 1.75rem 1.5rem;
  }

  /* Contact form – menší padding */
  .contact-form {
    padding: 1.75rem 1.5rem;
  }

  /* Certifications card – menší padding */
  .certifications {
    padding: 1.25rem 1.25rem;
  }

  /* Service top grid – už řešeno, jistota */
  .service-top-grid,
  .analyza-top-grid {
    gap: 2rem !important;
    margin-bottom: 2rem !important;
  }

  /* Hero scroll indikátor – níže aby nepřekážel */
  .hero-scroll {
    bottom: 1rem;
  }

  /* Footer – tighter spacing */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-brand-top {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .footer-brand-top .footer-logo img {
    height: 48px !important;
  }

  .footer-brand p {
    font-size: 0.85rem;
    max-width: none;
    flex: 1;
  }
}

/* === MALÉ MOBILY (do 480px) === */
@media (max-width: 480px) {
  /* Container ještě tighter */
  .container {
    padding: 0 0.875rem;
  }

  /* Service cards single column už řešeno */
  .service-card {
    padding: 1.5rem 1.25rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  /* Contact form */
  .contact-form {
    padding: 1.5rem 1.25rem;
  }

  /* Certifikace – menší font */
  .cert-list li {
    font-size: 0.82rem;
  }

  /* Hero – tighter padding */
  .hero-content {
    padding: 0 1rem;
  }

  /* Location ikony menší box */
  .location-icon {
    width: 38px;
    height: 38px;
  }

  /* Map – ještě nižší */
  .map-wrapper iframe {
    height: 260px !important;
  }

  /* Cookie banner padding tighter */
  .cookie-banner-inner {
    padding: 1rem 0.875rem;
  }

  .cookie-banner-text h3 {
    font-size: 0.95rem;
  }

  .cookie-banner-text p {
    font-size: 0.8rem;
  }
}
.fade-in-delay-5 { transition-delay: 0.5s; }

/* =========================================
   Blog & Recepty – karty
   ========================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .card-grid { grid-template-columns: 1fr; }
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--color-shadow);
}

.post-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-cream);
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-img img {
  transform: scale(1.05);
}

.post-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
}

.post-card-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.post-card h2,
.post-card h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.post-card-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.post-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

.post-card:hover .post-card-more i {
  transform: translateX(3px);
}

.post-card-more i {
  transition: transform var(--transition);
}

/* Recepty – odznak kategorie + meta */
.recipe-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(26, 26, 26, 0.85);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 40px;
}

.recipe-badge-inline {
  position: static;
  display: inline-block;
  margin-bottom: 1rem;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.recipe-meta i {
  color: var(--color-accent);
  margin-right: 0.25rem;
}

.recipe-meta-lg {
  font-size: 0.95rem;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Filtr kategorií */
.recipe-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.recipe-filter-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  border-radius: 40px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition);
}

.recipe-filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.recipe-filter-btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* CTA pod sekcí (Zobrazit vše) */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =========================================
   Detail článku / receptu
   ========================================= */
.container-narrow {
  max-width: 760px;
}

.article .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.article .back-link:hover {
  color: var(--color-accent);
}

.article-header {
  margin-bottom: 2rem;
}

.article-perex {
  color: var(--color-text-light);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.article-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px var(--color-shadow);
  margin-bottom: 2.5rem;
  background: var(--color-cream);
}

/* Prose – text z Markdownu */
.prose {
  color: var(--color-text);
  font-size: 1.08rem;
  line-height: 1.85;
}

.prose > * + * {
  margin-top: 1.25rem;
}

.prose h2 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
}

.prose h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
}

.prose ul,
.prose ol {
  padding-left: 1.4rem;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li { margin-top: 0.15rem; line-height: 1.5; }

.prose a {
  color: var(--color-accent);
  text-decoration: underline;
}

.prose blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
  color: var(--color-text-light);
  font-style: italic;
}

.prose img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.prose strong { font-weight: 600; }

.article-cta {
  margin-top: 3.5rem;
  padding: 2rem;
  text-align: center;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
}

.article-cta p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* =========================================
   Service CTA – odkaz na web studia
   ========================================= */
.service-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px var(--color-shadow);
}

.service-cta-note {
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.btn-lg {
  padding: 1.05rem 2.6rem;
  font-size: 1rem;
}

.btn-lg i {
  transition: transform var(--transition);
}

.btn-lg:hover i {
  transform: translateX(4px);
}

/* Varianta CTA nad obrázkem (v pravém sloupci) */
.service-cta-above {
  max-width: none;
  margin: 0 0 1.5rem;
  padding: 1.5rem;
  text-align: center;
}

.service-cta-above .service-cta-note {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.service-cta-above .btn-lg {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
}

/* Prázdné (skeleton) náhledy na homepage, než/pokud se načtou data */
.post-card.skeleton {
  pointer-events: none;
}

.post-card.skeleton .post-card-img {
  background: var(--color-border);
}

.post-card.skeleton .post-card-body {
  min-height: 96px;
  justify-content: flex-start;
  gap: 0.8rem;
}

.skel-line {
  display: block;
  height: 14px;
  border-radius: 6px;
  background: var(--color-border);
}

.skel-line.short {
  width: 55%;
}

/* =========================================
   Suroviny – zaškrtávací seznam + podnadpisy
   ========================================= */
.ingredient-subheading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 1.5rem 0 0.6rem;
}

.ingredient-subheading:first-child {
  margin-top: 0;
}

/* Podnadpis v postupu – odsadit od předchozí skupiny kroků */
.recipe-steps .ingredient-subheading {
  margin-top: 1.75rem;
}

/* Galerie fotek receptu – dlaždice ve dvou sloupcích */
.recipe-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 2.5rem 0 0.5rem;
}

.recipe-gallery-item {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-cream);
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 16px var(--color-shadow);
}

.recipe-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recipe-gallery-item:hover img {
  transform: scale(1.04);
}

/* =========================================
   Detail receptu – nový vzhled
   ========================================= */
.recipe-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.recipe-hero {
  position: relative;
  margin: 0.5rem 0 2rem;
}

.recipe-hero img {
  width: 100%;
  aspect-ratio: 2 / 1;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 44px var(--color-shadow);
  display: block;
}

.recipe-hero-tags {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.recipe-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(26, 26, 26, 0.85);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.95rem;
  border-radius: 40px;
  backdrop-filter: blur(2px);
}

.recipe-hero-badge i {
  font-size: 0.85em;
}

/* Překryvný popisek v dolním rohu hero obrázku */
.recipe-hero-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  max-width: min(80%, 540px);
  background: rgba(38, 38, 38, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  color: #fff;
  padding: 1rem 1.35rem 1.1rem;
  border-radius: var(--radius-md);
}

.recipe-hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1.12;
  margin: 0;
  color: #fff;
}

.recipe-hero-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0.45rem 0 0;
}

@media (max-width: 560px) {
  .recipe-hero-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
    padding: 0.85rem 1rem 0.95rem;
  }
  .recipe-hero-title { font-size: 1.4rem; }
  .recipe-hero-desc { font-size: 0.88rem; }
}

.recipe-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.recipe-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1.12;
  color: var(--color-text);
  margin: 0.4rem 0 0.75rem;
}

.recipe-perex {
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 560px;
}

.recipe-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.recipe-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 40px;
  padding: 0.45rem 1.05rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.recipe-meta i {
  color: var(--color-accent);
}

.recipe-layout.has-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 760px) {
  .recipe-layout.has-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.recipe-gallery-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-content: start;
}

.recipe-col-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  color: var(--color-text);
}

.recipe-col-title i {
  color: var(--color-accent);
  font-size: 1rem;
}

/* Vnější rámeček kolem celého receptu (včetně hlavní fotky) */
.recipe-content-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 6px 24px var(--color-shadow);
}

@media (max-width: 560px) {
  .recipe-content-box { padding: 1.1rem; }
}

.recipe-content-box .recipe-hero {
  margin-top: 0;
}

/* Vnitřní rámečky ingrediencí a postupu */
.recipe-ing,
.recipe-steps {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem;
}

.recipe-ing {
  margin-bottom: 1.5rem;
}

.recipe-ing .prose {
  font-size: 0.98rem;
  line-height: 1.6;
}

.recipe-ing .prose ul {
  padding-left: 1.2rem;
}

/* Postup – číslované kroky s kolečky */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.steps-list li {
  position: relative;
  padding-left: 2.2rem;
  line-height: 1.5;
  color: var(--color-text);
}

.steps-list .step-n {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

.recipe-note {
  margin-top: 1.6rem;
  background: var(--color-cream);
  border-left: 3px solid var(--color-accent);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  color: var(--color-text-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

.recipe-note i {
  color: var(--color-accent);
  margin-right: 0.3rem;
}

/* Nadpis článku max 2/3 šířky – delší se zalomí na další řádek */
.article-header .section-title {
  max-width: 800px;
}

/* Podpis na konci článku */
.article-signature {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  line-height: 1.2;
  color: var(--color-text);
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-signature i {
  color: #e0697a;
  font-size: 0.75em;
}

.recipe-detail .article-cta,
.article .article-cta {
  max-width: 720px;
  margin: 1.75rem auto 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 6px 24px var(--color-shadow);
}

