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

:root {
  --nav:         #893D29;
  --nav-hover:   #6e3020;
  --nav-logo:    #a84f37;

  --green-dark:  #3a7050;
  --green:       #52966E;
  --green-mid:   #68b088;
  --green-light: #d4eadc;
  --green-pale:  #eef6f1;

  --white:       #ffffff;
  --off-white:   #f6f6f6;
  --text:        #1a1a1a;
  --text-mid:    #3d3d3d;
  --text-muted:  #666666;
  --border:      rgba(82,150,110,0.18);
  --border-mid:  rgba(82,150,110,0.32);
  --border-gray: rgba(0,0,0,0.09);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.11);
  --shadow-section: 0 4px 24px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img {
  height: 42px; width: auto;
  display: block; flex-shrink: 0;
  /* boost visibility on dark nav bg */
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.15));
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 700; color: #fff; letter-spacing: 0.03em; text-transform: uppercase;
}
.logo-sub { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: flex; align-items: center;
  padding: 8px 15px;
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 14.5px; font-weight: 500; border-radius: 7px;
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--green); color: #fff !important; font-weight: 600; margin-left: 6px;
}
.nav-links .nav-cta:hover { background: var(--green-dark); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ── MOBILE MENU ─────────────────── */
.mobile-menu {
  display: none; position: fixed;
  top: 66px; left: 0; right: 0; bottom: 0;
  background: rgba(100,38,24,0.98); z-index: 99;
  flex-direction: column; padding: 1.5rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 15px 0;
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 19px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: #fff; }

/* ── HERO ────────────────────────── */
.hero {
  height: 100vh; background: var(--white);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 85% 40%, rgba(82,150,110,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 90%,  rgba(82,150,110,0.05) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(82,150,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82,150,110,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-mid));
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 120px 2rem 90px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 55% 1fr; gap: 4rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); border: 1px solid var(--border-mid);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--green-dark); letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: blink 2.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700; color: var(--text); line-height: 1.15;
  margin-bottom: 1.4rem; letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--green); }

.hero-desc {
  font-size: 19px; color: var(--text-muted);
  margin-bottom: 2.25rem; font-weight: 400; line-height: 1.8; max-width: 500px;
}

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

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 16px; text-decoration: none;
  transition: var(--transition); border: 2px solid var(--green);
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-mid);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 500; font-size: 16px; text-decoration: none;
  transition: var(--transition); border: 1.5px solid var(--border-gray);
  font-family: 'Inter', sans-serif;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 2.5rem;
  border: 1px solid var(--border-gray); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat { background: var(--off-white); padding: 1.1rem; text-align: center; }
.stat-num {
  font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 700;
  color: var(--green); line-height: 1; margin-bottom: 5px;
}
.stat-label { font-size: 11.5px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* Hero right — feature cards */
.hero-cards { display: flex; flex-direction: column; gap: 1rem; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 1.15rem 1.4rem;
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.hero-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--green-dark); }
.hero-card-icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: var(--green-pale); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-title { font-size: 14.5px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.hero-card-sub   { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ── SHARED SECTION STYLES ──────── */
/* Každá sekce je bílá karta se stínem a orámováním */
section {
  padding: 0 2rem 3rem;
  scroll-margin-top: 66px;
}
section:first-of-type { padding-top: 0; }

.section-wrap {
  max-width: 1200px; margin: 3rem auto 0;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-section);
  padding: 3.5rem;
}

/* Hero nemá section-wrap */
.hero .hero-inner { margin: 0 auto; }

.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--green); border-radius: 2px; }

h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--green);
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

/* ── O NÁS ──────────────────────── */
#onas {
  background: transparent;
  min-height: calc(100vh - 66px);
  display: flex;
  flex-direction: column;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-top: 2.5rem;
  flex: 1;
}
.about-lead {
  font-size: 18px; font-weight: 400; color: var(--text-mid);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.about-body { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

.about-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.75rem; }
.pill {
  background: var(--green-pale); color: var(--green-dark);
  font-size: 14px; font-weight: 500; padding: 6px 14px;
  border-radius: 100px; border: 1px solid var(--border-mid);
}

#onas .section-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.timeline-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; position: relative; overflow: hidden;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-sm);
}
.timeline-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--green), var(--green-mid));
}
.tc-title { font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--green); margin-bottom: 0.3rem; }
.tc-sub   { font-size: 14px; color: var(--text-muted); margin-bottom: 1.75rem; }

.timeline { display: flex; flex-direction: column; gap: 1.15rem; }
.tl-item  { display: flex; gap: 13px; align-items: flex-start; }
.tl-dot {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%; background: var(--green-pale); border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 9.5px; font-weight: 700; color: var(--green-dark); margin-top: 2px;
}
.tl-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.tl-desc  { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

.cert-strip {
  display: flex; align-items: center; gap: 12px;
  background: var(--green-pale); border: 1px solid var(--border-mid);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin-top: 1.5rem;
}
.cert-strip-icon { font-size: 22px; flex-shrink: 0; }
.cert-strip-text { font-size: 13.5px; color: var(--green-dark); line-height: 1.4; }
.cert-strip-text strong { display: block; color: var(--green); font-size: 14px; margin-bottom: 1px; }

.cert-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 1.1rem;
  font-size: 13.5px; font-weight: 600;
  color: var(--green); text-decoration: none;
  border: 1px solid var(--border-mid);
  border-radius: 7px; padding: 8px 16px;
  transition: var(--transition);
  background: var(--green-pale);
}
.cert-link:hover { background: var(--green-light); border-color: var(--green); }

/* ── SLUŽBY ─────────────────────── */
#sluzby { background: transparent; }

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; gap: 2rem; flex-wrap: wrap;
}
.services-intro { max-width: 400px; font-size: 17px; color: var(--text-muted); line-height: 1.75; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.svc-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-mid); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: var(--green-pale); border: 1px solid rgba(82,150,110,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.svc-title {
  font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--green); margin-bottom: 0.6rem;
}
.svc-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.svc-list li {
  font-size: 15px; color: var(--text-mid);
  padding-left: 15px; position: relative; line-height: 1.5;
}
.svc-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--green);
}

/* ── CENÍK ──────────────────────── */
#cenik { background: transparent; }

.cenik-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem;
}
.cenik-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-gray); padding: 1.75rem; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.cenik-card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-md); }
.cenik-card.wide { grid-column: span 2; background: #f2f2f2; border: 1px solid var(--border-gray); box-shadow: none; }
.cenik-card-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.cenik-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green); margin-bottom: 0.5rem;
}
.cenik-card.wide .cenik-label { color: var(--green-dark); }
.cenik-title {
  font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--green); margin-bottom: 1.1rem;
}
.cenik-card.wide .cenik-title { color: var(--text); }

.price-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.price-table tr { border-bottom: 1px solid var(--border-gray); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 9px 0; color: var(--text-muted); line-height: 1.5; }
.price-table td:last-child {
  text-align: right; font-weight: 600; color: var(--green);
  white-space: nowrap; padding-left: 12px;
}
.cenik-card.wide .price-table tr { border-bottom-color: rgba(0,0,0,0.08); }
.cenik-card.wide .price-table td { color: var(--text-muted); }
.cenik-card.wide .price-table td:last-child { color: var(--green); }

.cenik-note {
  margin-top: 1.75rem;
  background: var(--green-pale); border: 1px solid var(--border-mid);
  border-left: 4px solid var(--green); border-radius: var(--radius);
  padding: 1.1rem 1.4rem; font-size: 15.5px; color: var(--text-mid); line-height: 1.7;
}

/* ── KONTAKT ────────────────────── */
#kontakt { background: transparent; }

.kontakt-header { margin-bottom: 2.5rem; }
.kontakt-header h2 { color: var(--green); }
.kontakt-lead {
  font-size: 17px; color: var(--text-muted);
  margin-top: 0.75rem; line-height: 1.8; max-width: 540px;
}

.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}

/* Kontaktní tabulka */
.k-table-wrap {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.k-table-head {
  background: var(--green);
  padding: 13px 20px;
  font-size: 14px; font-weight: 600; color: #fff; letter-spacing: 0.02em;
  display: flex; align-items: center;
}
.k-table { width: 100%; border-collapse: collapse; }
.k-table tr { border-bottom: 1px solid var(--border-gray); }
.k-table tr:last-child { border-bottom: none; }
.k-table tr:nth-child(even) { background: var(--off-white); }
.k-table td {
  padding: 12px 20px; font-size: 15px; vertical-align: top; line-height: 1.6;
}
.k-table td:first-child {
  color: var(--text-muted); font-size: 14px; white-space: nowrap;
  padding-right: 8px; width: 40%;
}
.k-table td:first-child .k-td-icon { margin-right: 6px; vertical-align: middle; }
.k-table td:last-child { color: var(--text-mid); font-weight: 500; }
.k-table td:last-child strong { color: var(--text); }
.k-table a { color: var(--green); text-decoration: none; transition: color var(--transition); }
.k-table a:hover { color: var(--green-dark); }

/* Mapa */
.k-map-wrap {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.k-map-head {
  background: var(--green);
  padding: 13px 20px;
  font-size: 14px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.k-map-head span { opacity: 0.85; font-weight: 400; }
.k-map-wrap iframe { flex: 1; width: 100%; min-height: 340px; border: none; display: block; }

/* ── FOOTER ─────────────────────── */
footer {
  background: var(--nav); padding: 1.75rem 2rem;
  border-top: 3px solid var(--green);
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem; text-align: center;
}
.footer-row1 { font-size: 13px; color: rgba(255,255,255,0.38); }
.footer-row2 {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem;
  justify-content: center; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.38);
}
.footer-row2 a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color var(--transition); }
.footer-row2 a:hover { color: #8de09a; }
.footer-sep { color: rgba(255,255,255,0.15); }

/* ── GDPR MODAL ─────────────────── */
.gdpr-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 999;
  align-items: center; justify-content: center;
}
.gdpr-overlay.open { display: flex; }
.gdpr-box {
  background: #fff; border-radius: 14px; padding: 2.25rem;
  max-width: 480px; margin: 1rem; position: relative;
}
.gdpr-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 22px; cursor: pointer; color: #777;
}
.gdpr-box h3 { font-family: 'Inter', sans-serif; font-size: 1.2rem; color: var(--green); margin-bottom: 0.75rem; font-weight: 700; }
.gdpr-box p  { font-size: 15.5px; color: var(--text-mid); line-height: 1.75; }

/* ── DAŇOVÝ KALENDÁŘ ────────────── */
#kalendar { background: transparent; }

.kalendar-intro {
  font-size: 17px; color: var(--text-muted); line-height: 1.8;
  max-width: 680px; margin-top: 0.75rem; margin-bottom: 2.5rem;
}

.kalendar-current {
  display: flex; align-items: center; gap: 12px;
  background: var(--green-pale); border: 1px solid var(--border-mid);
  border-left: 4px solid var(--green);
  border-radius: var(--radius); padding: 1rem 1.4rem;
  margin-bottom: 2.5rem;
  font-size: 16px; color: var(--green-dark); font-weight: 500;
}
.kalendar-current strong { color: var(--green); }

.quarter-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}

.quarter-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-gray); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: var(--transition);
}
.quarter-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-mid); }

.quarter-head {
  background: var(--green); color: #fff;
  padding: 12px 18px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}

.quarter-months { padding: 10px 0; }

.month-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--text-mid); font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--border-gray);
  transition: var(--transition);
}
.month-link:last-child { border-bottom: none; }
.month-link:hover { background: var(--green-pale); color: var(--green-dark); }
.month-link.current-month { background: var(--green-pale); color: var(--green-dark); font-weight: 600; }
.month-link.current-month .month-num { background: var(--green); color: #fff; }

.month-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--border-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--text-muted); flex-shrink: 0;
}

.month-name { flex: 1; }

.month-arrow {
  color: var(--text-muted); opacity: 0.4; font-size: 13px; flex-shrink: 0;
  transition: var(--transition);
}
.month-link:hover .month-arrow { opacity: 1; color: var(--green); transform: translateX(2px); }

.kalendar-note {
  margin-top: 1.75rem;
  background: var(--off-white); border: 1px solid var(--border-gray);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius); padding: 1rem 1.4rem;
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
}

/* ── ANIMATIONS ─────────────────── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────── */
@media (max-width: 960px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 100px; }
  .about-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid   { grid-template-columns: 1fr 1fr; }
  .cenik-grid      { grid-template-columns: 1fr; }
  .cenik-card.wide { grid-column: auto; }
  .cenik-card-inner{ grid-template-columns: 1fr; gap: 1.5rem; }
  .kontakt-grid    { grid-template-columns: 1fr; }
  .quarter-grid    { grid-template-columns: 1fr 1fr; }
  .section-wrap    { padding: 2.5rem 1.75rem; }
  .nav-links       { display: none; }
  .hamburger       { display: flex; }
}
@media (max-width: 620px) {
  /* Hero — skryjeme karty vpravo, vše se vejde na jednu obrazovku */
  .hero            { height: 100svh; align-items: center; }
  .hero-inner      { padding: 80px 1.25rem 2rem; gap: 0; grid-template-columns: 1fr; }
  .hero-cards      { display: none; }
  .hero h1         { font-size: 1.85rem; margin-bottom: 0.9rem; }
  .hero-badge      { margin-bottom: 1rem; font-size: 11px; }
  .hero-desc       { font-size: 16px; margin-bottom: 1.5rem; }
  .btn-primary,
  .btn-ghost       { padding: 12px 20px; font-size: 15px; }
  .hero-stats      { margin-top: 1.75rem; }
  .stat-num        { font-size: 1.5rem; }

  /* Ostatní sekce */
  .section-wrap    { padding: 2rem 1.25rem; margin: 1.5rem auto 0; border-radius: var(--radius); }
  .services-grid   { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; }
  .quarter-grid    { grid-template-columns: 1fr; }
  section          { padding: 0 1.25rem 2rem; }

  /* Ceník — zabraňuje přetékání obsahu */
  .cenik-card-inner{ grid-template-columns: 1fr; gap: 1.5rem; }
  .price-table     { font-size: 13.5px; }
  .price-table td:last-child { padding-left: 6px; font-size: 13px; }

  /* Kontakt — skládáme do jednoho sloupce, zabraňujeme přetékání */
  .kontakt-grid        { grid-template-columns: 1fr; }
  .k-table td          { padding: 9px 12px; font-size: 14px; }
  .k-table td:first-child { white-space: normal; width: auto; font-size: 13px; }
  .k-map-wrap iframe   { min-height: 240px; }
}

/* Samsung S25 a podobné úzké telefony (360 px viewport) */
@media (max-width: 390px) {
  /* Hero — ještě menší fonty aby se vše vešlo */
  .hero h1         { font-size: 1.6rem; margin-bottom: 0.75rem; }
  .hero-desc       { font-size: 15px; margin-bottom: 1.25rem; line-height: 1.65; }
  .hero-badge      { font-size: 10.5px; padding: 4px 12px; margin-bottom: 0.85rem; }
  .btn-primary,
  .btn-ghost       { padding: 11px 16px; font-size: 14px; }
  .hero-stats      { margin-top: 1.25rem; }
  .stat-num        { font-size: 1.3rem; }
  .stat-label      { font-size: 10px; }
  .hero-inner      { padding: 76px 1rem 1.5rem; }

  /* Ceník — úplně skládáme tabulku do jednoho sloupce */
  .price-table     { font-size: 13px; }
  .price-table td  { padding: 7px 0; }
  .price-table td:last-child { font-size: 12.5px; padding-left: 4px; }
  .cenik-note      { font-size: 13px; }
}
