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

:root {
  --primary: #B52A35;
  --primary-light: #D44450;
  --primary-dark: #8A1E28;
  --secondary: #FFF8F0;
  --accent: #2D5016;
  --accent-light: #4A7A2E;
  --dark: #3A2518;
  --dark-light: #5C3D2E;
  --light: #F5EDE3;
  --cream: #FFFDF9;
  --gold: #C49A6C;
  --shadow: 0 4px 24px rgba(58, 37, 24, 0.08);
  --shadow-lg: 0 12px 48px rgba(58, 37, 24, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.2; font-weight: 700; }
h1 { font-optical-sizing: auto; font-size: clamp(1.87rem, 4.25vw, 3.23rem); }
h2 { font-size: clamp(1.62rem, 3.6vw, 2.52rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(58, 37, 24, 0.08);
  box-shadow: 0 2px 16px rgba(58, 37, 24, 0.08);
  transition: all var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  border-bottom-color: rgba(58, 37, 24, 0.08);
  box-shadow: 0 2px 16px rgba(58, 37, 24, 0.06);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand {
  font-family: 'Fraunces', serif;
  font-size: 2.16rem; font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.navbar-brand span {
  color: var(--primary);
  font-style: italic;
  font-weight: 700;
}
.navbar-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.navbar-links a:not(.btn) {
  color: var(--dark-light); font-size: 0.92rem; font-weight: 500;
  position: relative; padding: 4px 0;
}
.navbar-links a:not(.btn)::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width var(--transition);
}
.navbar-links a:not(.btn):hover { color: var(--dark); }
.navbar-links a:not(.btn):hover::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 16px rgba(181, 42, 53, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark); color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(181, 42, 53, 0.4);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary); color: white;
  transform: translateY(-2px);
}
.navbar-links .btn-nav {
  padding: 10px 28px; font-size: 0.88rem; letter-spacing: 0.3px;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 42, 53, 0.08) 0%, transparent 70%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(181, 42, 53, 0.1);
  color: var(--primary); font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 { font-optical-sizing: auto; margin-bottom: 20px; color: var(--dark); }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-subtitle {
  font-size: 1.15rem; color: var(--dark-light);
  line-height: 1.8; margin-bottom: 36px; max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 32px; border-top: 2px solid rgba(58, 37, 24, 0.18); }
.hero-stat-number { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; color: var(--dark); }
.hero-stat-label { font-size: 0.82rem; color: var(--primary); margin-top: 2px; font-weight: 500; }
.hero-image {
  position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 500px; object-fit: cover; object-position: center 22%; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58, 37, 24, 0.1));
}
.hero-float-card {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 10px 14px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 0.86rem; font-weight: 500; color: var(--dark);
  line-height: 1.35;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.hero-float-card .icon { font-size: 1.4rem; flex-shrink: 0; line-height: 0; }

/* ===== SECTIONS ===== */
section { padding: 66px 0; }
.section-light { background: var(--cream); }
.section-warm { background: var(--light); }
.section-dark { background: var(--dark); color: var(--secondary); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header .label {
  display: inline-block; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--primary); margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--dark-light); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255, 248, 240, 0.7); }

/* ===== BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 6px 32px rgba(58, 37, 24, 0.14);
  transition: all var(--transition);
  border: 1px solid rgba(58, 37, 24, 0.04);
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 72px; height: 72px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 2rem;
}
.benefit-card:nth-child(1) .benefit-icon {
  background: rgba(181, 42, 53, 0.72);  /* terracotta */
}
.benefit-card:nth-child(2) .benefit-icon {
  background: rgba(45, 80, 22, 0.62);  /* zelená */
}
.benefit-card:nth-child(3) .benefit-icon {
  background: rgba(139, 94, 26, 0.68);  /* zlatohnědá */
}
.benefit-card h3 { margin-bottom: 12px; color: var(--dark); }
.benefit-card p { color: var(--dark-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== TIMELINE ===== */
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline-line {
  position: absolute; left: 50%; top: 0;
  width: 2px; background: linear-gradient(to bottom, var(--primary), var(--gold));
  transform: translateX(-50%); z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.timeline-line.visible {
  opacity: 1;
}
.timeline-day { margin-bottom: 48px; }
.timeline-day-label {
  text-align: center; margin-bottom: 32px; position: relative; z-index: 2;
}
.timeline-day-label span {
  display: inline-block; padding: 10px 28px; border-radius: 50px;
  background: var(--primary); color: white;
  font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700;
}
.timeline-items { display: flex; flex-direction: column; gap: 24px; }
.timeline-item {
  display: grid; grid-template-columns: 1fr 40px 1fr; gap: 0; align-items: start;
}
.timeline-item.theory .timeline-content { grid-column: 1; text-align: right; }
.timeline-item.theory .timeline-spacer { grid-column: 2; }
.timeline-item.practice { direction: ltr; }
.timeline-item.practice .timeline-empty { grid-column: 1; }
.timeline-item.practice .timeline-spacer { grid-column: 2; }
.timeline-item.practice .timeline-content { grid-column: 3; }
.timeline-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: white; border: 3px solid var(--primary);
  margin: 6px auto 0; position: relative; z-index: 2;
}
.timeline-content {
  background: var(--light); padding: 24px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); border: 1px solid rgba(181, 42, 53, 0.08);
}
.timeline-content .tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 8px;
}
.timeline-content .tag.theory-tag { background: rgba(58, 37, 24, 0.1); color: var(--accent); }
.timeline-content .tag.practice-tag { background: rgba(181, 42, 53, 0.1); color: var(--primary); }
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-content p { font-size: 0.9rem; color: var(--dark-light); line-height: 1.6; }
.timeline-note {
  text-align: center; margin-top: 40px; padding: 20px 32px;
  background: rgba(181, 42, 53, 0.06); border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
}
.timeline-note p { font-size: 1rem; color: var(--dark); font-weight: 500; }
.timeline-note span { color: var(--primary); }

/* ===== SKILLS ===== */
.skills-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.skills-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.skills-image img { width: 100%; height: 480px; object-fit: cover; }
.skills-list { display: flex; flex-direction: column; gap: 20px; }
.skill-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius-sm);
  background: white; box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(58, 37, 24, 0.04);
}
.skill-item:hover { transform: translateX(6px); border-left: 3px solid var(--primary); }
.skill-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
}
.skill-item h3 { font-family: 'IBM Plex Sans', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.skill-item p { font-size: 0.88rem; color: var(--dark-light); line-height: 1.6; }

/* ===== ABOUT / ATMOSPHERE ===== */
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.about-content .label { display: inline-block; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 12px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--dark-light); font-size: 1.02rem; margin-bottom: 16px; line-height: 1.8; }
.about-content .highlight {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: rgba(181, 42, 53, 0.06);
  border-radius: var(--radius-sm); border-left: 3px solid var(--primary);
  margin-top: 24px; font-weight: 500; color: var(--dark);
}
.about-content .highlight .icon { font-size: 1.5rem; }

/* ===== AUDIENCE ===== */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.audience-card {
  display: flex; gap: 20px; align-items: center;
  padding: 32px; border-radius: var(--radius);
  background: white; box-shadow: var(--shadow);
  border: 1px solid rgba(58, 37, 24, 0.04);
  transition: all var(--transition);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audience-emoji { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
.audience-card h3 { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.audience-card p { font-size: 0.92rem; color: var(--dark-light); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; max-width: 1040px; margin: 0 auto; align-items: start; }
.faq-note {
  max-width: 1040px; margin: 40px auto 0;
  text-align: center; font-size: 0.95rem;
  color: var(--dark-light); line-height: 1.6;
}
.faq-item {
  border-bottom: 1px solid rgba(58, 37, 24, 0.08);
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; width: 100%;
  background: none; border: none; text-align: left;
  font-family: 'IBM Plex Sans', sans-serif; font-size: 1.05rem;
  font-weight: 600; color: var(--dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-arrow {
  font-size: 1.2rem; transition: transform var(--transition);
  flex-shrink: 0; margin-left: 16px; color: var(--primary);
}
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 320px; }
.faq-answer p { padding: 0 0 24px; color: var(--dark-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== BOOKING / RESERVATION ===== */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Termíny – karty */
.booking-dates {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dates-empty {
  background: white;
  border: 1px solid rgba(58, 37, 24, 0.08);
  border-radius: var(--radius-sm);
  padding: 24px;
  color: var(--dark-light);
  line-height: 1.6;
}

.dates-empty a { color: var(--primary); font-weight: 600; }

.date-card {
  background: white;
  border: 1px solid rgba(58, 37, 24, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
  cursor: default;
}

.date-card:hover:not(.full) {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.date-card.selected {
  border-color: var(--primary);
  background: rgba(181, 42, 53, 0.04);
  box-shadow: 0 0 0 2px rgba(181, 42, 53, 0.18);
}

.date-card.full {
  opacity: 0.5;
}

.date-card-dates {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.date-day-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.date-day-name {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

.date-day-num {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.date-plus {
  font-size: 0.85rem;
  color: var(--dark-light);
  font-weight: 300;
}



.date-card-spots {
  font-size: 0.82rem;
  white-space: nowrap;
}

.spots-ok { color: var(--accent); font-weight: 500; }
.spots-low { color: var(--primary); font-weight: 600; }
.date-card.full .date-card-spots { color: var(--dark-light); }

.date-card-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 0.82rem;
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'IBM Plex Sans', sans-serif;
}

.date-card-btn:hover,
.date-card.selected .date-card-btn {
  background: var(--primary);
  color: white;
}

/* Booking form */
.booking-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(58, 37, 24, 0.04);
  position: sticky;
  top: 100px;
}

.booking-form-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.booking-form-card .form-subtitle {
  font-size: 0.88rem;
  color: var(--dark-light);
  margin-bottom: 20px;
}

.booking-selected-date {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 8px;
  background: rgba(181, 42, 53, 0.06);
  margin-bottom: 20px; font-weight: 600; font-size: 0.9rem;
  color: var(--primary);
}

.booking-selected-date .icon { font-size: 1.2rem; }
.booking-selected-date.empty { color: var(--dark-light); font-weight: 400; font-style: italic; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--dark);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 14px; border: 1.5px solid rgba(58, 37, 24,0.15);
  border-radius: 8px; font-size: 0.92rem; font-family: 'IBM Plex Sans', sans-serif;
  color: var(--dark); background: var(--cream); transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.booking-price {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; background: rgba(58, 37, 24,0.03);
  border-radius: 8px; margin-bottom: 16px;
}
.booking-price span { font-size: 0.92rem; color: var(--dark); }
.booking-price strong {
  font-family: 'IBM Plex Sans', sans-serif; font-size: 1.1rem;
  font-weight: 700; color: var(--dark);
}

.btn-book {
  width: 100%; justify-content: center;
  padding: 14px; font-size: 0.95rem;
}

.booking-note {
  font-size: 0.78rem; color: var(--dark-light);
  text-align: center; margin-top: 12px; line-height: 1.5;
}

/* Stavová hláška po odeslání rezervace */
.booking-status {
  margin-top: 14px; padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem; line-height: 1.6;
  border-left: 3px solid;
}
.booking-status.success {
  background: rgba(45, 80, 22, 0.07);
  border-left-color: var(--accent);
  color: var(--dark);
}
.booking-status.error {
  background: rgba(181, 42, 53, 0.07);
  border-left-color: var(--primary);
  color: var(--dark);
}

/* Past na roboty – pro člověka neviditelná, pro čtečky skrytá */
.hp-field {
  position: absolute !important;
  left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none;
}

/* Termíny se načítají z tabulky */
.booking-dates.loading { opacity: 0.55; transition: opacity 0.2s ease; }


/* ===== MAP ===== */
.map-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.map-embed {
  position: relative;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 100%; min-height: 400px;
  border: 1px solid rgba(58, 37, 24, 0.04);
  background: var(--light);
}
.map-embed iframe {
  width: 100%; height: 100%; border: 0; border-radius: 12px;
}
.map-fallback {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 32px 24px; text-align: center;
  background: var(--light); border-radius: 12px;
}
.map-embed.map-failed iframe { display: none; }
.map-embed.map-failed .map-fallback { display: flex; }
.map-fallback-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(181, 42, 53, 0.08);
  display: flex; align-items: center; justify-content: center;
}
.map-fallback-icon svg { width: 24px; height: 24px; stroke: var(--primary); stroke-width: 2; fill: none; }
.map-fallback p { font-size: 0.95rem; color: var(--dark); line-height: 1.6; margin: 0; }
.map-fallback-note { font-size: 0.85rem !important; color: var(--dark-light) !important; }
.map-open {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: 50px;
  background: var(--cream); color: var(--dark);
  font-size: 0.82rem; font-weight: 600;
  box-shadow: 0 2px 10px rgba(58, 37, 24, 0.18);
  transition: color var(--transition), box-shadow var(--transition);
}
.map-open:hover { color: var(--primary); box-shadow: 0 4px 16px rgba(58, 37, 24, 0.24); }
.map-open svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }
.map-embed.map-failed .map-open { display: none; }
.map-info {
  background: var(--cream);
  border: 1px solid rgba(181, 42, 53, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 28px;
}
.map-info h3 { font-size: 1.1rem; margin-bottom: 8px; font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; }
.map-info-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0; border-bottom: 1px solid rgba(58, 37, 24, 0.06);
}
.map-info-item:last-child { border-bottom: none; }
.map-info-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(181, 42, 53, 0.08);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.map-info-item h4 { font-family: 'IBM Plex Sans', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.map-info-item p { font-size: 0.88rem; color: var(--dark-light); line-height: 1.5; }


/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 248, 240, 0.6);
  padding: 60px 0 32px;
}
.footer .container { padding: 0 64px; }
.footer-content {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 32px; margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand { max-width: 320px; }
.footer-brand h3 { font-size: 2.16rem; color: var(--secondary); margin-bottom: 8px; letter-spacing: -0.01em; font-family: 'Fraunces', serif; font-weight: 700; }
.footer-brand h3 span { color: var(--primary); font-style: italic; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-links { text-align: right; }
.footer-links h4 { color: var(--secondary); font-family: 'IBM Plex Sans', sans-serif; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255, 248, 240, 0.6); font-size: 0.88rem; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { text-align: center; font-size: 0.82rem; }

/* ===== MOBILE MENU ===== */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(58, 37, 24, 0.5); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity var(--transition);
}
.mobile-overlay.active { display: block; opacity: 1; }
.mobile-menu {
  position: fixed; top: 0; right: 0; width: 300px; max-width: 86vw; height: 100vh;
  z-index: 101; background: white; padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform var(--transition); box-shadow: var(--shadow-lg);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 8px; }
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 1.1rem;
  font-weight: 500; color: var(--dark); border-bottom: 1px solid rgba(58, 37, 24, 0.06);
}
.mobile-menu a.btn { display: flex; width: 100%; justify-content: center; align-items: center; text-align: center; margin-top: 16px; color: #fff; border-bottom: none; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--dark); padding: 8px;
}

/* ===== RESPONSIVE ===== */

/* ---- Tablet & smaller: collapse to single-column layouts, show hamburger ---- */
@media (max-width: 968px) {
  .hero { min-height: auto; padding: 110px 0 70px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; }
  .hero-image { max-width: 640px; margin: 0 auto; }
  .hero-image img { height: 400px; }

  .benefits-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  /* Mobil/tablet: vystředěná timeline bez bodíků */
  .timeline-line { left: 50%; transform: translateX(-50%); }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item.theory .timeline-content,
  .timeline-item.practice .timeline-content { grid-column: 1; text-align: center; }
  .timeline-item .timeline-spacer,
  .timeline-item .timeline-empty { display: none; }
  .timeline-dot { display: none; }
  .timeline-content { max-width: 440px; margin: 0 auto; }
  .timeline-day-label { padding: 0 12px; }
  .timeline-day-label span { display: inline-block; max-width: 100%; white-space: normal; line-height: 1.35; padding: 9px 22px; }

  .skills-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .skills-image { order: -1; max-width: 560px; margin: 0 auto; }
  .skills-image img { height: 360px; }

  .about-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .about-image { max-width: 560px; margin: 0 auto; }
  .about-image img { height: 340px; }

  .audience-grid { grid-template-columns: 1fr; }

  .booking-wrapper { grid-template-columns: 1fr; gap: 28px; }
  .booking-form-card { position: static; }

  .map-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .map-embed { height: 320px; min-height: 0; }
  .map-info { padding: 6px 22px; }

  .faq-list { grid-template-columns: 1fr; gap: 0; }

  .form-row { grid-template-columns: 1fr; }

  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .footer .container { padding: 0 24px; }
  .footer-content { flex-direction: column; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .footer-links { text-align: left; }
}

/* ---- Tablet portrait / landscape phones ---- */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .section-header { margin-bottom: 44px; }
  .container { padding: 0 20px; }

  .navbar { padding: 12px 0; }
  .navbar.scrolled { padding: 8px 0; }
  .navbar-brand { font-size: 1.8rem; }

  .hero { padding: 100px 0 56px; }
  .hero-image img { height: 340px; }
  .hero-stat-number { font-size: 1.55rem; }

  /* Mobil: obrázek je JS přesunut mezi CTA a statistiky (viz index.js) */
  .hero-ctas { justify-content: center; }
  .hero-image { width: 100%; max-width: 460px; margin: 24px auto 0; }
  .hero-stats { justify-content: center; gap: 24px; padding-top: 24px; margin-top: 28px; }

  .benefit-card { padding: 32px 24px; }
  .benefit-icon { width: 64px; height: 64px; margin-bottom: 20px; }

  .timeline-content { padding: 20px; }
  .timeline-day-label span { font-size: 1.02rem; padding: 9px 22px; }

  .audience-card { padding: 24px; gap: 16px; }

  .booking-form-card { padding: 28px 22px; }

  .map-embed { height: 280px; min-height: 0; }
  .map-info-item { padding: 14px 0; }
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
  section { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 0.98rem; }
  .container { padding: 0 16px; }

  .navbar { padding: 10px 0; }
  .navbar.scrolled { padding: 8px 0; }
  .navbar-brand { font-size: 1.55rem; }

  .btn { padding: 12px 22px; font-size: 0.88rem; }

  .hero { padding: 92px 0 48px; }
  .hero-badge { font-size: 0.78rem; padding: 6px 14px; margin-bottom: 16px; }
  .hero-subtitle { font-size: 1.02rem; margin-bottom: 28px; line-height: 1.65; }
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; padding-top: 20px; margin-top: 28px; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-image img { height: 260px; }
  /* rozměry kartičky pro mobil jsou na konci souboru */

  .benefit-card { padding: 28px 22px; }
  .benefit-icon { width: 60px; height: 60px; margin-bottom: 18px; }
  .benefit-card h3 { font-size: 1.1rem; }

  .timeline-content { padding: 18px; }
  .timeline-content h3 { font-size: 1rem; }
  .timeline-day-label span { font-size: 0.98rem; padding: 8px 20px; }
  .timeline-note { padding: 16px 20px; margin-top: 32px; }
  .timeline-note p { font-size: 0.92rem; }

  .skills-image img { height: 240px; }
  .skill-item { padding: 16px; gap: 12px; }
  .skill-item:hover { transform: none; border-left: 1px solid rgba(58, 37, 24, 0.04); }
  .skill-icon { width: 40px; height: 40px; }

  .about-image img { height: 240px; }
  .about-content .highlight { padding: 14px 16px; font-size: 0.92rem; align-items: flex-start; }

  .audience-card { padding: 20px; gap: 14px; }
  .audience-card h3 { font-size: 1rem; }

  .booking-form-card { padding: 22px 18px; }
  .booking-form-card h3 { font-size: 1.2rem; }
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; padding: 12px 14px; }
  .form-group label { font-size: 0.88rem; }

  .date-card { padding: 14px 16px; flex-wrap: wrap; gap: 10px 12px; align-items: center; }
  .date-card-dates { flex: 1 1 100%; justify-content: flex-start; gap: 6px; flex-wrap: wrap; }
  .date-card-spots { flex: 1 1 auto; font-size: 0.82rem; }
  .date-card-btn { flex: 0 0 auto; padding: 9px 20px; font-size: 0.82rem; }
  .date-day-num { font-size: 0.9rem; }
  .date-day-name { font-size: 0.66rem; }

  .booking-price { padding: 12px 14px; }
  .booking-price strong { font-size: 1rem; }
  .booking-selected-date { font-size: 0.85rem; padding: 11px 14px; }

  .faq-question { padding: 20px 0; font-size: 0.98rem; }
  .faq-answer p { font-size: 0.92rem; padding-bottom: 20px; }

  .map-embed { height: 240px; min-height: 0; }
  .map-info { padding: 4px 18px; }
  .map-info-item { gap: 10px; padding: 12px 0; }
  .map-info-icon { width: 36px; height: 36px; }

  .footer { padding: 44px 0 24px; }
  .footer .container { padding: 0 16px; }
  .footer-brand h3 { font-size: 1.7rem; }
  .footer-bottom { font-size: 0.78rem; line-height: 1.6; }

  .mobile-menu { width: 86%; max-width: 320px; padding: 72px 24px 24px; }
}

/* ---- Very small mobile ---- */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .navbar-brand { font-size: 1.4rem; }
  .hero-badge { font-size: 0.74rem; padding: 5px 12px; }
  .hero-image img { height: 220px; }
  .booking-form-card { padding: 20px 14px; }
  .date-card { padding: 14px; }
}

/* ---- Portrait (tablety na výšku): zrušit 100vh, jinak obří mezera kolem textu ---- */
@media (orientation: portrait) {
  .hero { min-height: auto; }
}

/* =============================================
   LUCIDE ICONS — unified stroked icon system
   ============================================= */

/* Base: all SVGs generated by Lucide share these rules */
[data-lucide],
[data-lucide] svg,
.benefit-icon svg,
.skill-icon svg,
.audience-emoji svg,
.map-info-icon svg,
.faq-arrow svg,
.icon svg,
.hero-badge svg,
.btn-arrow svg,
.timeline-note-icon svg {
  display: inline-block;
  vertical-align: middle;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Benefit cards — white on coloured bg */
.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  stroke-width: 1.5;
}

/* Skills list — white on gradient bg */
.skill-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 1.5;
}

/* Audience cards — medium-large, terracotta */
.audience-emoji svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  stroke-width: 1.5;
}

/* Map info panel — medium, primary */
.map-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 1.5;
}

/* Hero float card icon */
.hero-float-card .icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  stroke-width: 1.5;
}

/* About highlight icon */
.highlight .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Hero badge icon */
.hero-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  stroke-width: 1.75;
  margin-right: 4px;
}

/* Button arrow icon */
.btn-arrow {
  margin-left: 6px;
  vertical-align: middle;
}
.btn-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}
.btn-primary:hover .btn-arrow svg {
  transform: translateX(3px);
}

/* Booking date picker icon */
.booking-selected-date .icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  stroke-width: 1.5;
}

/* FAQ chevron — animated on open */
.faq-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  stroke-width: 2;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-arrow svg {
  transform: rotate(180deg);
}

/* Timeline note icon */
.timeline-note-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  stroke-width: 1.5;
  vertical-align: -3px;
  margin-right: 4px;
}

/* Mobile close button icon */
.mobile-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
}

/* =============================================
   CO JE V CENĚ — PRICE SECTION
   ============================================= */

/* ---- Layout (desktop) ---- */
.price-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.price-col-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.price-col-left, .price-col-right { min-width: 0; }

/* ---- Cenová karta ---- */
.price-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  border-top: 3px solid var(--primary);
}

.price-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-card-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.price-card-amount {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -2px;
}

.price-card-currency {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0;
  margin-left: 4px;
}

.price-card-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  margin-top: 24px;
}

.price-not-included {
  text-align: center;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--dark-light);
}

.price-not-label {
  font-weight: 700;
  color: var(--dark);
  margin-right: 4px;
}

/* ---- Tiles: co je v ceně ---- */
.price-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.price-col-right .price-tiles {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: none;
  margin: 0;
}

.price-tile {
  background: white;
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(58, 37, 24, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--transition);
}

.price-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.price-tile-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.price-tile-icon svg {
  width: 20px; height: 20px;
  stroke: #fff;
  stroke-width: 1.75;
}

.price-tile h4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.price-tile p {
  font-size: 0.85rem;
  color: var(--dark-light);
  line-height: 1.55;
  margin: 0;
}

.price-tile-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Responsive: mobil + malý tablet — vše v jednom sloupci pod sebou ---- */
@media (max-width: 860px) {
  .price-layout {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 24px;
  }
  .price-col-left {
    position: static;
    width: 100%;
    max-width: 100%;
    gap: 14px;
  }
  .price-card { padding: 32px 28px 28px; }
  .price-card-amount { font-size: 3rem; }
  .price-not-included { margin-top: 4px; }
  .price-col-right .price-tiles {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .price-tile {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
  }
  .price-tile-text { gap: 4px; }
}

@media (max-width: 480px) {
  .price-layout { max-width: 100%; }
  .price-card { padding: 28px 22px 24px; }
  .price-card-amount { font-size: 2.6rem; }
  .price-card-currency { font-size: 1.2rem; }
  .price-tile { padding: 16px 16px; }
  .price-tile-icon { width: 40px; height: 40px; }
}

/* ===== UTILITY: inline-style replacements ===== */
.faq-inline-link { color: var(--primary); font-weight: 600; text-decoration: underline; }
.map-address-sub { opacity: 0.7; }
.footer-legal-link { color: rgba(255, 248, 240, 0.6); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal-link:hover { color: var(--primary); }

/* ===== SOUHLAS SE ZPRACOVÁNÍM ÚDAJŮ ===== */
.form-consent { margin-bottom: 16px; }

.form-consent .consent-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 0.88rem; font-weight: 400; color: var(--dark-light); line-height: 1.5;
  margin-bottom: 0;
}
.form-consent .consent-label input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  flex-shrink: 0; width: 18px !important; height: 18px;
  padding: 0 !important; margin-top: 2px;
  border: 1.5px solid rgba(58, 37, 24, 0.25); border-radius: 4px;
  background: var(--cream); cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.form-consent .consent-label input[type="checkbox"]:checked {
  background: var(--primary); border-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpolyline points='1,5 4.5,8.5 11,1' fill='none' stroke='white' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px 9px;
}
.form-consent .consent-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--primary); outline-offset: 2px;
}
.form-consent .consent-label a {
  color: var(--primary); text-decoration: underline; text-underline-offset: 2px; font-weight: 500;
}
.form-consent .consent-label a:hover { color: var(--primary-dark); }

/* =============================================
   LEGAL PAGE (ochrana-osobnich-udaju.html)
   ============================================= */
.legal-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
  text-align: center;
}
.legal-hero .eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--primary); margin-bottom: 16px;
}
.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark); margin-bottom: 12px;
}
.legal-hero .legal-meta {
  font-size: 0.9rem; color: var(--dark-light);
}

.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.legal-content h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--dark);
  margin: 48px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(181, 42, 53, 0.12);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  font-size: 0.97rem;
  color: var(--dark-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 16px 0;
  padding-left: 1.4em;
}
.legal-content ul li {
  font-size: 0.97rem;
  color: var(--dark-light);
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--primary-dark); }
.legal-content strong { color: var(--dark); }
.legal-contact-box {
  background: var(--light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 16px;
}
.legal-contact-box p {
  margin-bottom: 4px;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 48px;
}
.legal-back svg {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 2;
  fill: none; flex-shrink: 0;
}

/* ===== HERO: druhý odstavec popisu ===== */
.hero-subtitle:not(:last-of-type) { margin-bottom: 18px; }

/* ===== KONTAKT: odkazy v mapové kartě ===== */
.map-info-link {
  color: var(--primary); text-decoration: none;
  transition: color var(--transition);
}
.map-info-link:hover { text-decoration: underline; text-underline-offset: 3px; }


/* ===== HERO: plovoucí kartička na jeden řádek i na mobilu =====
   Text "Z každé lekce si odnesete hotové jídlo domů!" se pod 414 px
   lámal na dva řádky. Získáváme šířku (užší odsazení, menší vnitřní
   okraje a ikona) a zbytek dorovná plynulá velikost písma.
   Musí být až na konci souboru – přebíjí pravidlo pro .icon svg výše. */
/* 769–968 px: hero obrázek je tu užší, kartičce se musí přitáhnout odsazení */
@media (max-width: 968px) {
  .hero-float-card { bottom: 16px; left: 16px; right: 16px; }
}

/* Pod 560 px už na jeden řádek nestačí pevná velikost – písmo plyne se šířkou */
@media (max-width: 560px) {
  .hero-float-card { font-size: clamp(0.6rem, 4.3vw - 4.6px, 0.86rem); }
}

/* Pod 480 px je potřeba získat i šířku, samotné písmo nestačí */
@media (max-width: 480px) {
  .hero-float-card {
    bottom: 12px; left: 10px; right: 10px;
    padding: 9px 11px;
    gap: 8px;
  }
  .hero-float-card .icon svg { width: 16px; height: 16px; }
}
