/* ==========================================================
   POLABÍNEK — dětská skupina
   Podle manuálu vizuální identity v1.0 · 2026
   Varianta C "Teplá pudrová"
   ========================================================== */

:root {
  /* HLAVNÍ BARVY */
  --terracotta: #B87168;
  --terracotta-dark: #A06058;
  --powder-pink: #C89594;
  --caramel: #D4A574;
  --olive-sage: #98A079;
  --dust-blue: #7A8094;
  --sand: #EBDFC9;

  /* JEMNÉ ODSTÍNY */
  --powder-pink-tint: #F4E3E0;
  --olive-tint: #E8ECD9;
  --caramel-tint: #F0E2CF;
  --terracotta-tint: rgba(184, 113, 104, 0.08);

  /* NEUTRÁLNÍ */
  --linen: #F9F4EA;
  --linen-deep: #F4ECD8;
  --walnut: #3A2F24;
  --walnut-soft: #6A5D4E;
  --walnut-light: #8A7D6E;

  /* TYPOGRAFIE */
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  /* PROSTOR */
  --container: 1180px;
  --section-pad: clamp(48px, 7vw, 88px);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--walnut);
  background: var(--linen);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

/* ==========================================================
   TYPOGRAFIE
   ========================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--walnut);
}

h1 { font-size: clamp(30px, 4vw, 48px); line-height: 1.1; }
h2 { font-size: clamp(26px, 3.2vw, 38px); }
h3 { font-size: 22px; font-weight: 500; }
h4 { font-size: 18px; font-weight: 500; }

/* Akcent v nadpisech zarovnán s běžným textem nadpisu */
h1 em, h2 em, h3 em {
  font-style: normal;
  color: inherit;
  font-weight: inherit;
}

p { color: var(--walnut-soft); line-height: 1.7; }
p strong, p b { color: var(--walnut); font-weight: 600; }

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

.section {
  padding: var(--section-pad) 0;
}
.section-cream { background: var(--sand); }
.section-cream-deep { background: var(--linen-deep); }
.section-powder { background: var(--powder-pink-tint); }
.section-olive { background: var(--olive-tint); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-number,
.section-eyebrow {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: block;
}

.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 17px; max-width: 580px; margin: 0 auto; }

/* Label-small (uppercase tracked) */
.label-small {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--walnut-light);
  display: block;
  margin-bottom: 14px;
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(184, 113, 104, 0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo { flex-shrink: 0; }
.logo img {
  height: 56px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
}

.primary-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.primary-nav a {
  text-decoration: none;
  color: var(--walnut-soft);
  font-size: 16px;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s;
  position: relative;
}
.primary-nav a:hover { color: var(--walnut); }
.primary-nav a.active {
  color: var(--terracotta);
}
.primary-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--terracotta);
}

.btn-cta-small {
  background: var(--terracotta) !important;
  color: white !important;
  padding: 10px 18px !important;
  border-radius: var(--radius-pill);
  font-size: 13px !important;
  transition: background 0.2s;
}
.btn-cta-small:hover { background: var(--terracotta-dark) !important; }
.btn-cta-small::after { display: none !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--walnut);
  border-radius: 2px;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 1.5px solid transparent;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--terracotta);
  color: white;
}
.btn-primary:hover { background: var(--terracotta-dark); }

.btn-ghost {
  background: transparent;
  color: var(--walnut);
  border-color: var(--walnut-light);
}
.btn-ghost:hover {
  background: var(--terracotta-tint);
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.btn-white {
  background: white;
  color: var(--terracotta);
}
.btn-white:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 20px;
  display: block;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--walnut-soft);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1022 / 658;
  padding: 0 !important;
  margin: 0;
  background: transparent;
  font-size: 0;
  line-height: 0;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 8px 20px -10px rgba(58, 47, 36, 0.25);
}
.hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================
   STRIP — 4 hodnoty
   ========================================================== */
.strip {
  background: white;
  border-top: 1px solid rgba(184, 113, 104, 0.10);
  border-bottom: 1px solid rgba(184, 113, 104, 0.10);
  padding: 28px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--walnut-soft);
}
.strip-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--powder-pink-tint);
  color: var(--terracotta);
}
.strip-item-icon.olive { background: var(--olive-tint); color: var(--olive-sage); }
.strip-item-icon.caramel { background: var(--caramel-tint); color: #B5854E; }
.strip-item-icon.dust { background: rgba(122, 128, 148, 0.12); color: var(--dust-blue); }
.strip-item svg { width: 22px; height: 22px; }
.strip-item strong {
  color: var(--walnut);
  font-weight: 600;
  display: block;
  font-size: 15px;
}
.strip-item small {
  color: var(--walnut-light);
  font-size: 12.5px;
  display: block;
  margin-top: 2px;
}

/* ==========================================================
   CARDS — tři pilíře
   ========================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 113, 104, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(58, 47, 36, 0.06);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: white;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon.terracotta { background: var(--terracotta); }
.card-icon.olive { background: var(--olive-sage); }
.card-icon.caramel { background: var(--caramel); }
.card-icon.dust { background: var(--dust-blue); }
.card-icon.powder { background: var(--powder-pink); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 15px; }

/* ==========================================================
   TWO-COLUMN
   ========================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p { margin-bottom: 16px; font-size: 16px; }

.check-list { margin-top: 24px; display: grid; gap: 4px; }
.check-list li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  align-items: flex-start;
  color: var(--walnut);
  font-size: 15px;
  border-bottom: 1px solid rgba(184, 113, 104, 0.08);
  line-height: 1.6;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "•";
  color: var(--terracotta);
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: -2px;
  line-height: 1.4;
}

.two-col-visual {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1.2 / 1;
  border: 1px solid rgba(184, 113, 104, 0.10);
}
.tile {
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.tile svg { width: 44px; height: 44px; }
.tile-terra { background: var(--terracotta); }
.tile-olive { background: var(--olive-sage); }
.tile-caramel { background: var(--caramel); }
.tile-dust { background: var(--dust-blue); }
.tile-powder { background: var(--powder-pink); }

/* ==========================================================
   O NÁS — obrázek vedle textu
   ========================================================== */
.o-nas-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 16px -4px rgba(58, 47, 36, 0.10);
}
.o-nas-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================
   TEAM — zakladatelky
   ========================================================== */
.team-members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}
.team-member {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-photo-only {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 354 / 532;
  background: var(--sand);
  box-shadow: 0 6px 16px -4px rgba(58, 47, 36, 0.10);
}
.team-photo-only img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-text-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 32px 32px;
  border: 1px solid rgba(184, 113, 104, 0.10);
}
.team-text-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.team-text-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.team-text-card p:last-child { margin-bottom: 0; }

/* ==========================================================
   PRICE TABLE
   ========================================================== */
.price-table-wrap {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 113, 104, 0.10);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(58, 47, 36, 0.04);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.price-table thead {
  background: var(--linen-deep);
}
.price-table th {
  text-align: left;
  padding: 24px 28px;
  font-weight: 500;
  font-size: 14px;
  color: var(--walnut);
  border-bottom: 1px solid rgba(184, 113, 104, 0.10);
}
.price-table th:not(:first-child) {
  text-align: center;
}
.price-table th .age-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.price-table th .age-period {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--walnut-light);
  font-weight: 600;
}
.price-table td {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(184, 113, 104, 0.08);
  font-size: 15px;
  color: var(--walnut-soft);
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table tr:hover td {
  background: var(--terracotta-tint);
}
.price-table td:first-child {
  font-weight: 500;
  color: var(--walnut);
}
.price-table td:not(:first-child) {
  text-align: center;
}
.price-table td strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--walnut);
}
.price-table .unit {
  font-size: 13px;
  color: var(--walnut-light);
  margin-left: 4px;
}

.price-note {
  margin-top: 32px;
  max-width: 760px;
}
.price-note p {
  font-size: 14.5px;
  color: var(--walnut-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}
.price-note p:last-child { margin-bottom: 0; }
.price-note strong { color: var(--walnut); font-weight: 600; }

/* INCLUDES / NEZAHRNUJE */
.price-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.includes-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 113, 104, 0.10);
}
.includes-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(184, 113, 104, 0.10);
}
.includes-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.includes-icon svg { width: 22px; height: 22px; }
.includes-icon.olive { background: var(--olive-sage); }
.includes-icon.terracotta { background: var(--terracotta); }
.includes-head h3 { margin: 0; }
.includes-card ul {
  display: grid;
  gap: 4px;
}
.includes-card li {
  padding: 10px 0;
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--walnut-soft);
  line-height: 1.6;
  border-bottom: 1px solid rgba(184, 113, 104, 0.06);
}
.includes-card li:last-child { border-bottom: none; }
.includes-card li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: 8px;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 20px;
}

/* ==========================================================
   GALLERY + LIGHTBOX
   ========================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.gallery-item {
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 2px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(58, 47, 36, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: lightbox-fade 0.2s ease-out;
}
.lightbox[hidden] { display: none; }

@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-frame {
  max-width: min(90vw, 1400px);
  max-height: 90vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox-image {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  display: block;
}
.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  text-align: center;
  max-width: 600px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}
.lightbox-close:active,
.lightbox-prev:active,
.lightbox-next:active {
  transform: scale(0.96);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Lightbox na malých obrazovkách */
@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; }
  .lightbox-prev { left: 8px; width: 44px; height: 44px; }
  .lightbox-next { right: 8px; width: 44px; height: 44px; }
  .lightbox-counter { bottom: 12px; font-size: 12px; }
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-card {
  padding: 40px 36px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 113, 104, 0.10);
}
.contact-card h3 { margin-bottom: 20px; }
.contact-card dl {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}
.contact-card dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-card dd { font-size: 16px; color: var(--walnut); line-height: 1.5; }
.contact-card a:not(.btn) { color: var(--terracotta); text-decoration: none; transition: color 0.2s; }
.contact-card a:not(.btn):hover { color: var(--terracotta-dark); text-decoration: underline; }

.map-wrap {
  margin-top: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--sand);
  border: 1px solid rgba(184, 113, 104, 0.10);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================
   PRO RODIČE — dokumenty
   ========================================================== */
.docs-list {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.doc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 113, 104, 0.10);
  text-decoration: none;
  transition: transform 0.15s, border-color 0.2s;
  color: var(--walnut);
}
.doc-item:hover {
  transform: translateX(4px);
  border-color: var(--terracotta);
}
.doc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--powder-pink-tint);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-icon svg { width: 24px; height: 24px; }
.doc-info { flex: 1; }
.doc-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 2px;
}
.doc-info span {
  font-size: 13px;
  color: var(--walnut-light);
}
.doc-arrow {
  color: var(--terracotta);
  flex-shrink: 0;
}

.info-block {
  background: white;
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 113, 104, 0.10);
  margin-bottom: 24px;
}
.info-block h3 { margin-bottom: 14px; }
.info-block p { margin-bottom: 12px; }
.info-block p:last-child { margin-bottom: 0; }

/* ==========================================================
   CTA BAND
   ========================================================== */
.cta-band {
  background: var(--terracotta);
  padding: clamp(56px, 7vw, 80px) 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-band::before {
  width: 240px; height: 240px;
  top: -80px; left: -60px;
}
.cta-band::after {
  width: 180px; height: 180px;
  bottom: -60px; right: -40px;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 {
  color: white;
  margin-bottom: 14px;
}
.cta-band h2 em { color: var(--sand); }
.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--walnut);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 24px;
  font-size: 14px;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 44px;
  align-items: start;
}
.site-footer h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-big {
  color: white !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2px;
}
.footer-contact {
  display: grid;
  gap: 12px;
}
.footer-contact li a,
.footer-contact li > span {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  transition: color 0.2s;
}
.footer-contact li a:hover {
  color: white;
}
.footer-contact svg {
  flex-shrink: 0;
  color: var(--powder-pink);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards { grid-template-columns: 1fr; }
  .price-includes { grid-template-columns: 1fr; }
  .team-members { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Tabulka ceníku na mobilu — kompaktnější */
  .price-table th,
  .price-table td { padding: 14px 16px; font-size: 14px; }
  .price-table th .age-label { font-size: 15px; }
  .price-table td strong { font-size: 18px; }
  .price-table .unit { display: block; margin-left: 0; font-size: 12px; }

  .header-inner { padding: 12px 20px; }
  .logo img { height: 54px; }

  .menu-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(184, 113, 104, 0.10);
    display: none;
    padding: 16px 20px;
    box-shadow: 0 12px 30px rgba(58, 47, 36, 0.08);
  }
  .primary-nav.open { display: block; }
  .primary-nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }
  .primary-nav a {
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid rgba(184, 113, 104, 0.08);
  }
  .primary-nav a.active::after { display: none; }
  .btn-cta-small {
    text-align: center;
    margin-top: 12px;
  }

  .container { padding: 0 20px; }
}

@media (max-width: 560px) {
  .strip-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 30px; }
  .logo img { height: 48px; }
}
