:root {
  color-scheme: light;
  scrollbar-gutter: stable;
  color: #111;
  background: #f7f8fb;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background: #f7f8fb;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
.page {
  padding: 0 24px;
}
header {
  background: #ffffff;
  border-bottom: 1px solid #e6e8ec;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  min-height: 62px;
}
.brand {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f7d2d;
}
nav {
  display: flex;
  gap: 24px;
}
.menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  font-size: 0.95rem;
  color: #1f7d2d;
}
.menu a:hover {
  color: #16612a;
}
.menu a[aria-current="page"] {
  color: #16612a;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1f7d2d;
  margin: 4px 0;
  border-radius: 2px;
}
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
}
.headline {
  max-width: 660px;
}
.eyebrow {
  margin: 0;
  color: #1f7d2d;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
h1,
.section-title {
  margin: 20px 0 20px;
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #0f172a;
}
p.lead,
.subtitle {
  margin: 0 0 32px;
  color: #475569;
  font-size: 1.05rem;
  max-width: 44rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  background: #1f7d2d;
  color: #ffffff;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button.primary {
  background: #1f7d2d;
  color: #ffffff;
  border-color: #1f7d2d;
}
.button-icon {
  flex: 0 0 auto;
}
.button.secondary {
  background: #1f7d2d;
  color: #ffffff;
  border-color: #1f7d2d;
}
.button.secondary:hover {
  background: #16612a;
  color: #ffffff;
  border-color: #16612a;
}
.button:hover {
  transform: translateY(-1px);
  background: #16612a;
  border-color: #16612a;
}
.hero-image {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.12);
  background: #ffffff;
  padding: 32px;
  display: grid;
  place-items: center;
}
.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.section {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding-bottom: 8px;
}
.section h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  color: #0f172a;
}
.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 26px 24px;
  min-height: 220px;
  display: grid;
  gap: 16px;
}
.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf3ea;
  color: #1f7d2d;
}
.card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #0f172a;
}
.card p {
  margin: 0;
  color: #475569;
  font-size: 0.99rem;
}
.list-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.list-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
}
.list-item h3 {
  margin-top: 0;
  font-size: 1.05rem;
  color: #0f172a;
}
.list-item ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #475569;
}
.list-item ul li {
  margin-bottom: 10px;
}
footer {
  background: #f7faf6;
  color: #1f2937;
  padding: 34px 0 42px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer p {
  margin: 0;
  color: #475569;
}
.footer .footer-brand {
  font-weight: 600;
  font-size: 0.98rem;
}
.overline {
  margin: 0 0 1rem;
  font-weight: 700;
  color: #1f7d2d;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.page-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.page-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #eaf3ea;
  color: #1f7d2d;
  flex-shrink: 0;
}
.page-icon svg {
  width: 24px;
  height: 24px;
}
.steps {
  display: grid;
  gap: 16px;
}
.step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
}
.step strong {
  color: #0f172a;
}

/* Shared page layout */
.site-page {
  background: #ffffff;
}
.site-page main.section {
  max-width: none;
  margin: 0;
  padding: 0;
}
.site-page .hero {
  min-height: 540px;
  padding: 76px 0 68px;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: start;
}
.site-page .headline {
  max-width: 700px;
}
.site-page .eyebrow {
  min-height: 1.6em;
}
.site-page h1 {
  max-width: 680px;
  font-size: clamp(2.7rem, 4vw, 3.9rem);
  line-height: 1.08;
}
.site-page .hero-image {
  width: 320px;
  justify-self: center;
  margin-top: 64px;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.content-band {
  margin: 0 -24px;
  padding: 58px 24px 72px;
  background: #f7f8fb;
}
.content-band-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.content-band h2 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.15;
  color: #0f172a;
}
.content-band .card,
.content-band .list-item {
  min-height: 220px;
  border-radius: 24px;
}
.content-band .list-item p {
  margin: 0;
  color: #475569;
}
.content-actions {
  margin-top: 32px;
}

/* Contact page: keep the hero scale and whitespace consistent with the homepage. */
.contact-page {
  background: #ffffff;
}
.contact-page .section {
  max-width: none;
  margin: 0;
  padding: 0;
}
.contact-page .hero {
  min-height: 540px;
  padding: 76px 0 68px;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
}
.contact-page .headline {
  max-width: 700px;
}
.contact-page h1 {
  max-width: 680px;
  font-size: clamp(2.7rem, 4vw, 3.9rem);
  line-height: 1.08;
}
.contact-page .hero-image {
  width: 320px;
  justify-self: center;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.contact-page .contact-process {
  margin: 0 -24px;
  padding: 58px 24px 72px;
  background: #f7f8fb;
}
.contact-page .contact-process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-page .contact-process h2 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.15;
  color: #0f172a;
}
.contact-page .steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contact-page .step {
  min-height: 220px;
  padding: 26px 24px;
  border: 1px solid #dfe4ea;
  border-radius: 24px;
  background: #ffffff;
}
.contact-page .step-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #eaf3ea;
  color: #1f7d2d;
  font-size: 1.1rem;
  font-weight: 800;
}
.contact-page .step h3 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 1.08rem;
}
.contact-page .step p {
  margin: 0;
  color: #475569;
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .cards,
  .list-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-page .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-page .hero-image {
    width: min(320px, 75vw);
    margin-top: 0;
  }
  .contact-page .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-page .hero-image {
    width: min(320px, 75vw);
  }
  .contact-page .steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    border-bottom: 1px solid #e6e8ec;
    padding: 16px 24px;
  }
  .menu.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 28px;
  }
  .cards,
  .list-grid {
    grid-template-columns: 1fr;
  }
}

/* Zostava týždňa */
.weekly-page .week-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eaf3ea;
  color: #16612a;
  font-weight: 700;
  font-size: 0.9rem;
}
.weekly-page .week-price {
  margin: 0 0 26px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f7d2d;
}
.weekly-page .week-price span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #475569;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
}
.spec-table th,
.spec-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #eef1f5;
  font-size: 1rem;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}
.spec-table th {
  width: 34%;
  color: #0f172a;
  font-weight: 700;
}
.spec-table td {
  color: #475569;
}
.archive {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.archive li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  color: #475569;
}
.archive strong {
  color: #0f172a;
}
@media (max-width: 700px) {
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    border-bottom: 0;
    padding: 4px 20px;
  }
  .spec-table th {
    padding-top: 16px;
  }
  .spec-table td {
    padding-bottom: 16px;
    border-bottom: 1px solid #eef1f5;
  }
}

.footer-meta {
  max-width: 62ch;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}
.footer-meta a {
  color: #1f7d2d;
}
