/* ============================================================
   uzdravenie.sk — pure HTML/CSS rebuild
   Design tokens (from original Atoms build)
   ============================================================ */
:root {
  --green-900: #2d5016;   /* primary dark green */
  --green-700: #4a7c59;   /* medium green */
  --green-500: #7ab362;   /* light green accent */
  --gold:      #c9a96e;
  --gold-dark: #b8955c;
  --cream:     #f5f0e8;   /* page / soft background */
  --border:    #ede4d3;   /* warm border */
  --ink:       #2c2c2c;   /* body text */
  --white:     #ffffff;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --maxw: 80rem;          /* max-w-7xl = 1280px */
  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  min-height: 100vh;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--green-700);
  font-weight: 500;
  margin-bottom: .75rem;
}
.heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .heading { font-size: 2.25rem; } }
.muted { color: rgba(44,44,44,.6); }
.muted--center { max-width: 42rem; margin-left: auto; margin-right: auto; }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
/* offset anchored scrolling so section headings aren't hidden under the fixed nav */
section[id] { scroll-margin-top: 5.5rem; }

.center-head { text-align: center; margin-bottom: 3.5rem; }

/* Icons */
.ico { width: 14px; height: 14px; flex-shrink: 0; }
.ico--lg { width: 24px; height: 24px; color: var(--green-700); }
.ico--sm { width: 16px; height: 16px; color: var(--green-700); }
.ico--gold { color: var(--gold); }

.icon-circle {
  display: flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  width: 3.5rem; height: 3.5rem;
  margin: 0 auto;
  transition: background-color .2s ease;
}
.icon-circle--green { background: rgba(122,179,98,.1); }
.icon-circle--cream { background: var(--cream); width: 3rem; height: 3rem; }
.icon-circle--gold  { background: rgba(201,169,110,.1); width: 3rem; height: 3rem; }
.icon-circle--sm { width: 2.5rem; height: 2.5rem; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; white-space: nowrap;
  font-family: var(--font-body);
  font-size: .875rem; font-weight: 500;
  cursor: pointer; border: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn--pill { border-radius: 9999px; padding: .5rem 1.5rem; height: 2.5rem; }
.btn--lg { height: 2.75rem; padding: 1.5rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--green-900); color: #fff; }
.btn--primary:hover { background: var(--green-700); }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-dark); }

.btn--outline {
  background: transparent; border: 1px solid var(--green-700); color: var(--green-700);
}
.btn--outline:hover { background: var(--green-700); color: #fff; }

.btn--ghost {
  background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff;
}
.btn--ghost:hover { border-color: #fff; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
/* frosted bar once the page is scrolled off the hero */
.nav--scrolled {
  background: rgba(245,240,232,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(237,228,211,.7);
  box-shadow: 0 1px 12px rgba(45,80,22,.06);
}

/* over the hero (top of page) the logo/links are light for contrast;
   they flip to the dark palette once the frosted bar kicks in */
.nav .nav__logo { color: #fff; }
.nav .nav__link { color: rgba(255,255,255,.85); }
.nav .nav__link:hover { color: #fff; }
.nav .nav__burger { color: #fff; }
.nav--scrolled .nav__logo { color: var(--green-900); }
.nav--scrolled .nav__link { color: rgba(44,44,44,.8); }
.nav--scrolled .nav__link:hover { color: var(--green-900); }
.nav--scrolled .nav__burger { color: var(--ink); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .nav__inner { height: 5rem; } }
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 600;
  color: var(--green-900);
  letter-spacing: .025em;
  display: inline-flex; align-items: center;
}
/* logo image — white over the hero, green once the header turns solid */
.nav__logo-img { height: 2.3rem; width: auto; display: block; }
@media (min-width: 768px) { .nav__logo-img { height: 2.7rem; } }
/* soft halo so the thin white logo stays legible over the hero image */
.nav__logo-img--light { filter: drop-shadow(0 0 3px rgba(0,0,0,.55)) drop-shadow(0 1px 2px rgba(0,0,0,.4)); }
.nav__logo-img--dark { display: none; }
.nav--scrolled .nav__logo-img--light,
.nav--solid .nav__logo-img--light,
.page-header .nav__logo-img--light { display: none; }
.nav--scrolled .nav__logo-img--dark,
.nav--solid .nav__logo-img--dark,
.page-header .nav__logo-img--dark { display: block; }
.nav__links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__link {
  font-size: .875rem; font-weight: 500;
  color: rgba(44,44,44,.8);
  transition: color .2s ease;
}
.nav__link:hover { color: var(--green-900); }

.nav__burger {
  display: inline-flex; padding: .5rem;
  color: var(--ink); cursor: pointer;
  background: none; border: none;
}
@media (min-width: 768px) { .nav__burger { display: none; } }

/* JS-toggled mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: .5rem 1rem 1rem;
  background: rgba(245,240,232,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__mobile.is-open { display: flex; }
@media (min-width: 768px) { .nav__mobile.is-open { display: none; } }
.nav__mobile-link {
  padding: .75rem .5rem;
  font-size: .95rem; font-weight: 500;
  color: rgba(44,44,44,.85);
  border-radius: .5rem;
}
.nav__mobile-link:hover { color: var(--green-900); background: rgba(122,179,98,.08); }
.nav__mobile-cta { margin-top: .5rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(45,80,22,.6) 0%, rgba(45,80,22,.4) 50%, rgba(45,80,22,.7) 100%);
}
.hero__content {
  position: relative; z-index: 10;
  max-width: 56rem; margin: 0 auto;
  padding: 6rem 1rem 3rem;
  color: #fff;
}
.hero__eyebrow {
  font-size: .875rem; text-transform: uppercase;
  letter-spacing: .3em; color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
}
.hero__title {
  font-size: 2.5rem; font-weight: 700;
  line-height: 1.1; margin-bottom: 1.5rem;
}
.hero__title-accent { color: var(--gold); }
.hero__hl { color: var(--gold); font-weight: 600; }
.hero__lead {
  font-size: 1.125rem; color: rgba(255,255,255,.9);
  max-width: 42rem; margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex; flex-direction: column; gap: 1rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.hero__pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
  font-size: .75rem; color: rgba(255,255,255,.7);
}
.pill {
  display: inline-flex; align-items: center; gap: .375rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-radius: 9999px; padding: .5rem 1rem;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; }
  .hero__title { font-size: 3rem; }
  .hero__pills { font-size: .875rem; }
}
@media (min-width: 768px) {
  .hero__eyebrow { font-size: 1rem; }
  .hero__title { font-size: 3.75rem; }
  .hero__lead { font-size: 1rem; }
}
@media (min-width: 1024px) { .hero__title { font-size: 4.5rem; } }
/* keep wide letter-spacing from overflowing narrow phones */
@media (max-width: 420px) {
  .hero__eyebrow { letter-spacing: .2em; font-size: .8rem; }
  .eyebrow { letter-spacing: .15em; }
}

/* ============================================================
   O MNE
   ============================================================ */
.about {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.about__media { position: relative; max-width: 20rem; margin-inline: auto; }
.about__photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__blob { position: absolute; border-radius: 9999px; filter: blur(40px); z-index: -0; }
.about__blob--gold  { bottom: -1rem; right: -1rem; width: 6rem; height: 6rem; background: rgba(201,169,110,.2); }
.about__blob--green { top: -1rem; left: -1rem; width: 8rem; height: 8rem; background: rgba(122,179,98,.2); }
.about__body { display: flex; flex-direction: column; gap: 1.5rem; }
.about__body .eyebrow { margin-bottom: 0; }
.about__body .heading { margin-bottom: 0; }
.about__text { display: flex; flex-direction: column; gap: 1rem; color: rgba(44,44,44,.7); line-height: 1.7; }
.about__body .btn { align-self: flex-start; margin-top: .5rem; }
.about__creds {
  font-size: .9rem; font-weight: 500; color: var(--green-900); line-height: 1.6;
  border-left: 3px solid var(--gold); padding-left: 1rem;
}

/* ============================================================
   PARALLAX BAND
   ============================================================ */
.band { position: relative; height: 16rem; overflow: hidden; }
@media (min-width: 768px) { .band { height: 20rem; } }
.band__img { width: 100%; height: 100%; object-fit: cover; }
.band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent, rgba(245,240,232,.5));
}
.band__center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.band__quote {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700; color: #fff;
  text-align: center; padding: 0 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
@media (min-width: 768px) { .band__quote { font-size: 1.875rem; } }

/* ============================================================
   METÓDY
   ============================================================ */
.methods__head {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: center; margin-bottom: 3.5rem;
}
@media (min-width: 1024px) { .methods__head { grid-template-columns: 1fr 1fr; } }
.methods__head .muted { margin-top: .25rem; }
.methods__head-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.methods__head-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.methods__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .methods__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .methods__grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.card--soft {
  box-shadow: var(--shadow-sm);
  padding: 1.5rem; text-align: center;
  transition: box-shadow .2s ease;
}
.card--soft:hover { box-shadow: var(--shadow-md); }
.card--soft:hover .icon-circle--green { background: rgba(122,179,98,.2); }
.card__title {
  font-size: 1.125rem; font-weight: 600; color: var(--ink);
  margin: 1rem 0 .75rem;
}
.card__text { font-size: .875rem; color: rgba(44,44,44,.6); line-height: 1.7; }

.methods__foot { margin-top: 3rem; display: flex; justify-content: center; }
.methods__foot img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  max-width: 28rem; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
}

/* ============================================================
   CENNÍK
   ============================================================ */
.pricing__hero {
  margin: 2rem auto 0; max-width: 48rem;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.pricing__hero img { width: 100%; height: 12rem; object-fit: cover; }
@media (min-width: 768px) { .pricing__hero img { height: 16rem; } }

.pricing__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 64rem; margin: 0 auto;
}
@media (min-width: 768px) { .pricing__grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem;
  transition: box-shadow .2s ease;
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card--featured {
  border: 2px solid var(--green-700);
  box-shadow: var(--shadow-lg);
}
.price-card--featured:hover { box-shadow: var(--shadow-lg); }
.price-card__badge {
  position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%);
  background: var(--green-700); color: #fff;
  font-size: .75rem; padding: .25rem 1rem; border-radius: 9999px;
  white-space: nowrap;
}
.price-card__title { font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.price-card__desc { font-size: .875rem; color: rgba(44,44,44,.6); }
.price-card__price { padding: 1rem 0; }
.price { font-size: 1.875rem; font-weight: 700; color: var(--green-900); }
.price__note { display: block; margin-top: .25rem; font-size: .875rem; color: rgba(44,44,44,.5); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  max-width: 64rem; margin: 0 auto;
}
@media (min-width: 1024px) { .contact { grid-template-columns: 1fr 1fr; } }

.contact__form-card { box-shadow: var(--shadow-md); padding: 2rem; }
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: .875rem; font-weight: 500; color: var(--ink);
  margin-bottom: .375rem;
}
.field input, .field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(245,240,232,.5);
  font-family: var(--font-body);
  font-size: .875rem; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: none; }
.field input::placeholder, .field textarea::placeholder { color: rgba(44,44,44,.4); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 2px rgba(74,124,89,.3);
}

.contact__side { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.contact__img img { width: 100%; height: 100%; object-fit: cover; }
.contact__info { display: flex; flex-direction: column; gap: 1rem; }
.contact__item { display: flex; align-items: flex-start; gap: .75rem; }
/* icon-circle has margin:0 auto for centering in cards; cancel it here
   so the icon stays left with the text beside it (not spread apart) */
.contact__item .icon-circle { margin: 0; }
.contact__label { font-size: .875rem; font-weight: 500; color: var(--ink); }
.contact__value { font-size: .875rem; color: rgba(44,44,44,.6); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-900); color: rgba(255,255,255,.9); }
.footer .container { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .footer .container { padding-top: 4rem; padding-bottom: 4rem; } }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr; } }
.footer__col { display: flex; flex-direction: column; gap: 1rem; }
.footer__brand { font-size: 1.5rem; font-weight: 600; color: #fff; }
.footer__logo { height: 2.5rem; width: auto; display: block; align-self: flex-start; }
@media (min-width: 768px) { .footer__logo { height: 2.9rem; } }
.footer__about { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 20rem; }
.footer__heading { font-size: 1.125rem; font-weight: 500; color: #fff; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer__list a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color .2s ease; }
.footer__list a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.7); }
.footer__social { display: flex; gap: 1rem; padding-top: .5rem; }
.footer__social a {
  width: 2.25rem; height: 2.25rem; border-radius: 9999px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease;
}
.footer__social a:hover { background: rgba(255,255,255,.2); }
.footer__social svg { width: 1rem; height: 1rem; }
.footer__bottom {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 1rem;
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; } }
.footer__bottom p { font-size: .75rem; color: rgba(255,255,255,.5); }
.footer__made { display: inline-flex; align-items: center; gap: .25rem; }
.ico--heart { width: 12px; height: 12px; color: var(--gold); }

.footer__bottom-links { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.footer__bottom-links a,
.footer__cookie-btn {
  font-size: .75rem; color: rgba(255,255,255,.5);
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-body);
  transition: color .2s ease;
}
.footer__bottom-links a:hover,
.footer__cookie-btn:hover { color: rgba(255,255,255,.85); }

/* ============================================================
   CONTACT FORM — consent + status
   ============================================================ */
.contact__value a { color: inherit; transition: color .2s ease; }
.contact__value a:hover { color: var(--green-700); }

.consent-check {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .8rem; color: rgba(44,44,44,.7); line-height: 1.5;
  cursor: pointer;
}
.consent-check input {
  margin-top: .15rem; width: 1rem; height: 1rem; flex-shrink: 0;
  accent-color: var(--green-700); cursor: pointer;
}
.consent-check a { color: var(--green-700); text-decoration: underline; }

.form-status {
  font-size: .875rem; line-height: 1.5; margin-top: .25rem;
}
.form-status:empty { display: none; }
.form-status.is-success { color: var(--green-900); }
.form-status.is-error { color: #b23b3b; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 60;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(45,80,22,.15);
  max-width: 40rem; margin: 0 auto;
  animation: cookie-in .35s ease;
}
.cookie[hidden] { display: none; }
@keyframes cookie-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.cookie__inner {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.25rem 1.5rem;
}
.cookie__text { font-size: .85rem; color: rgba(44,44,44,.75); line-height: 1.6; }
.cookie__text a { color: var(--green-700); text-decoration: underline; }
.cookie__actions { display: flex; gap: .75rem; }
.cookie__actions .btn { flex: 1; }
@media (min-width: 560px) {
  .cookie__inner { flex-direction: row; align-items: center; }
  .cookie__text { flex: 1; }
  .cookie__actions { flex: 0 0 auto; }
  .cookie__actions .btn { flex: 0 0 auto; }
}

/* ============================================================
   SIMPLE CONTENT PAGE (privacy policy, 404)
   ============================================================ */
.page {
  max-width: 48rem; margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
}
.page h1 {
  font-size: 2rem; font-weight: 700; color: var(--ink);
  margin-bottom: 1.5rem;
}
.page h2 {
  font-size: 1.25rem; font-weight: 600; color: var(--green-900);
  margin: 2rem 0 .75rem;
}
.page p, .page li { color: rgba(44,44,44,.8); line-height: 1.7; margin-bottom: .75rem; }
.page ul { padding-left: 1.25rem; margin-bottom: .75rem; }
.page a { color: var(--green-700); text-decoration: underline; }
.page .page__updated { font-size: .85rem; color: rgba(44,44,44,.5); margin-bottom: 2rem; }
.page .btn { text-decoration: none; margin-top: 1.5rem; }
/* buttons/back-link keep their own colours (override the generic .page a rule) */
.page a.btn { text-decoration: none; }
.page .btn--primary, .page .btn--gold,
.page .btn--primary:hover, .page .btn--gold:hover { color: #fff; }
.page a.subpage__back { text-decoration: none; color: var(--green-700); }
.page a.subpage__back:hover { color: var(--green-900); }

.page--center { text-align: center; min-height: 70vh; display: flex; flex-direction: column; justify-content: center; align-items: center; }

.page-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(245,240,232,.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(237,228,211,.7);
}
.page-header .nav__inner { height: 4rem; }
@media (min-width: 768px) { .page-header .nav__inner { height: 5rem; } }
.page-header .nav__logo { color: var(--green-900); }
.page-header a.back { font-size: .875rem; font-weight: 500; color: rgba(44,44,44,.8); }
.page-header a.back:hover { color: var(--green-900); }

/* ============================================================
   SUBPAGES (o-mne, metódy, cenník, method details)
   Full site nav, but always in the "solid" state because there
   is no hero behind it.
   ============================================================ */
.nav--solid {
  background: rgba(245,240,232,.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(237,228,211,.7);
  box-shadow: 0 1px 12px rgba(45,80,22,.06);
}
.nav--solid .nav__logo { color: var(--green-900); }
.nav--solid .nav__link { color: rgba(44,44,44,.8); }
.nav--solid .nav__link:hover { color: var(--green-900); }
.nav--solid .nav__burger { color: var(--ink); }

.subpage { padding: 7rem 0 5rem; }
@media (min-width: 768px) { .subpage { padding: 9rem 0 6rem; } }
.subpage__head { text-align: center; max-width: 44rem; margin: 0 auto 3.5rem; }
.subpage__head .heading { margin-bottom: 1rem; }
.subpage__back { display: inline-block; margin-bottom: 2rem; font-size: .875rem; color: var(--green-700); }
.subpage__back:hover { color: var(--green-900); }

/* method overview: 3 + 3 grid */
.method-grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .method-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .method-grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* method overview cards become links */
a.method-card { text-decoration: none; display: block; }
a.method-card .card__more {
  display: inline-block; margin-top: 1rem;
  font-size: .875rem; font-weight: 500; color: var(--green-700);
}
a.method-card:hover .card__more { color: var(--green-900); }

/* cenník overview */
.cennik-sections { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 74rem; margin: 0 auto; }
@media (min-width: 560px)  { .cennik-sections { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px)  { .cennik-sections { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .cennik-sections { grid-template-columns: repeat(5, 1fr); } }
.cennik-section {
  display: flex; flex-direction: column; text-align: center; color: var(--ink);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  padding: 2rem 1.5rem; gap: .75rem;
}
a.cennik-section { text-decoration: none; transition: box-shadow .2s ease; }
a.cennik-section:hover { box-shadow: var(--shadow-md); }
.cennik-section h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.cennik-section .from { font-size: 1.25rem; font-weight: 700; color: var(--green-900); }
.cennik-section p { font-size: .875rem; color: rgba(44,44,44,.6); flex: 1; }
.cennik-section .more { font-size: .875rem; font-weight: 500; color: var(--green-700); margin-top: .25rem; }
a.cennik-section:hover .more { color: var(--green-900); }

/* program accordion (category detail pages) */
.programs { max-width: 52rem; margin: 0 auto; }
.program {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  margin-bottom: 1rem; overflow: hidden;
}
.program > summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: .9rem;
  padding: 1.2rem 1.5rem;
}
.program > summary::-webkit-details-marker { display: none; }
.program__name { flex: 1; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.program__meta { color: var(--green-900); font-weight: 700; white-space: nowrap; font-size: .95rem; }
.program > summary::after { content: "+"; color: var(--green-700); font-size: 1.4rem; line-height: 1; width: 1rem; text-align: center; }
.program[open] > summary::after { content: "\2013"; }
.program__body { padding: 0 1.5rem 1.5rem; }
.program__body p { color: rgba(44,44,44,.75); line-height: 1.7; margin-bottom: 1rem; }
.program__body h4 { font-weight: 600; color: var(--green-900); margin: 1.25rem 0 .6rem; font-family: var(--font-body); font-size: .95rem; }
.program__body ul { padding-left: 1.25rem; }
.program__body li { color: rgba(44,44,44,.75); line-height: 1.6; margin-bottom: .4rem; }
.program__duration { display: inline-block; font-size: .8rem; font-weight: 600; color: var(--green-700); background: rgba(122,179,98,.12); border-radius: 9999px; padding: .25rem .75rem; margin-bottom: 1rem; }

.cennik-bundle {
  margin: 2.5rem auto 0; max-width: 52rem;
  background: var(--green-900); color: #fff;
  border-radius: var(--radius-lg); padding: 2rem;
  text-align: center;
}
.cennik-bundle h3 { color: #fff; font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.cennik-bundle p { color: rgba(255,255,255,.85); font-size: .9rem; max-width: 40rem; margin: 0 auto .75rem; }
.cennik-bundle .btn { margin-top: 1rem; }

.cennik-how {
  margin: 3rem auto 0; max-width: 52rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  text-align: center;
}
.cennik-how span {
  background: #fff; border: 1px solid var(--border);
  border-radius: 9999px; padding: .5rem 1.25rem;
  font-size: .85rem; color: rgba(44,44,44,.7);
}

/* draft banner for work-in-progress pages */
.draft-note {
  max-width: 52rem; margin: 0 auto 2.5rem;
  background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.4);
  border-radius: var(--radius); padding: .85rem 1.25rem;
  font-size: .85rem; color: #8a6d3b; text-align: center;
}

/* official certification badge */
.cert-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(122,179,98,.12);
  border: 1px solid rgba(74,124,89,.35);
  color: var(--green-900);
  border-radius: 9999px;
  padding: .55rem 1.1rem;
  font-size: .9rem; font-weight: 500; line-height: 1.3;
  margin: .25rem 0 1.75rem;
}
.cert-badge svg { width: 18px; height: 18px; color: var(--green-700); flex-shrink: 0; }

/* prominent TimeWaver tagline (pull-quote style) */
.quantum-tagline {
  font-family: var(--font-heading); font-size: 1.35rem; font-style: italic;
  color: var(--green-900); line-height: 1.4;
  border-left: 3px solid var(--gold); padding-left: 1rem;
  margin: 0 0 1.5rem;
}

/* operator (legal entity) note under contact details */
.contact__operator { font-size: .8rem; color: rgba(44,44,44,.5); margin-top: .5rem; line-height: 1.5; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 60rem; margin: 0 auto; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
a.blog-card {
  text-decoration: none; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  padding: 1.75rem; transition: box-shadow .2s ease;
}
a.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card__date { font-size: .8rem; color: var(--green-700); font-weight: 500; margin-bottom: .5rem; }
.blog-card__title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; line-height: 1.3; }
.blog-card__excerpt { font-size: .9rem; color: rgba(44,44,44,.65); line-height: 1.6; flex: 1; }
.blog-card__more { font-size: .875rem; font-weight: 500; color: var(--green-700); margin-top: 1rem; }
a.blog-card:hover .blog-card__more { color: var(--green-900); }
.article-meta { font-size: .85rem; color: rgba(44,44,44,.5); margin-bottom: 1.5rem; }

/* ============================================================
   LANDING — additional sections
   ============================================================ */
.section-cta { text-align: center; margin-top: 2.5rem; }

/* "S čím vám môžem pomôcť" */
.help-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .help-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .help-grid { grid-template-columns: repeat(3, 1fr); } }
.help-card {
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); padding: 1.75rem; text-align: center;
  transition: box-shadow .2s ease;
}
.help-card:hover { box-shadow: var(--shadow-md); }
.help-card h3 {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
  color: var(--ink); margin-bottom: .5rem;
}
.help-card p { font-size: .9rem; color: rgba(44,44,44,.6); line-height: 1.6; }

/* "Ako prebieha spolupráca" */
.steps {
  display: grid; grid-template-columns: 1fr; gap: 1.75rem;
  max-width: 62rem; margin: 0 auto 2.5rem;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { text-align: center; position: relative; }
/* arrow connectors between steps (desktop only) */
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: "→";
    position: absolute; top: 1.5rem; right: -1rem;
    transform: translateY(-50%);
    color: var(--green-700); font-size: 1.6rem; line-height: 1;
  }
}
.step__num {
  width: 3rem; height: 3rem; margin: 0 auto .75rem;
  border-radius: 9999px; background: var(--green-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.25rem;
}
.step__label { font-weight: 600; color: var(--ink); font-size: .95rem; line-height: 1.4; }
.steps-text { max-width: 44rem; margin: 0 auto; text-align: center; }

/* "Recenzie" */
.reviews { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); padding: 1.75rem;
}
.review__quote { color: rgba(44,44,44,.8); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.review__author { font-size: .875rem; font-weight: 600; color: var(--green-700); }

/* "Časté otázky" — native <details> accordion */
.faq { max-width: 48rem; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 0;
  font-weight: 500; color: var(--ink); font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green-700); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: rgba(44,44,44,.7); line-height: 1.7; padding: 0 0 1.15rem; font-size: .95rem; }
