/* ── Google Fonts import ─────────────────────────────────────────────────────
   Pro self-hosted verzi stáhni fonty z https://gwfh.mranftl.com/fonts
   a vlož je sem místo tohoto @import.
   Konkrétně potřebuješ: Lora (400, 400i, 500, 600) a DM Sans (300, 400, 500, 600)
   ─────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── Page wrapper ── */
.page-wrapper {
  background: hsl(158 18% 8%);
  background-image: url("../img/bg-okno.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.5s, backdrop-filter 0.5s, border-bottom 0.5s;
  background: transparent;
  border-bottom: none;
}
header.scrolled {
  background: hsl(158 18% 8% / 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(38 20% 20% / 0.4);
}
.header-inner {
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: inherit;
}
.logo-name {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  color: hsl(38 55% 80%);
}
.logo-sub {
  font-size: 0.6875rem;
  line-height: 1;
  margin-top: 0.125rem;
  letter-spacing: 0.05em;
  color: hsl(38 20% 55%);
}
nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  color: hsl(38 15% 55%);
}
@media (min-width: 768px) { nav { display: flex; } }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: hsl(38 55% 65%);
  border-radius: 2px;
}
.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(128 28% 62% / 0.18);
  color: hsl(128 28% 72%);
  border: 1px solid hsl(128 28% 62% / 0.35);
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }
.nav-cta.active { background: hsl(128 28% 62% / 0.3); }
.menu-btn {
  display: flex;
  padding: 0.5rem;
  color: hsl(38 25% 65%);
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) { .menu-btn { display: none; } }
.mobile-menu {
  display: none;
  background: hsl(26 16% 11%);
  border-top: 1px solid hsl(38 20% 18%);
  padding: 1.25rem 1.5rem;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9375rem;
  color: hsl(38 20% 65%);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .nav-cta { text-align: center; margin-left: 0; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right,
    hsl(158 20% 6% / 0.25) 0%,
    hsl(158 20% 6% / 0.55) 45%,
    hsl(158 20% 6% / 0.78) 100%
  );
}
.hero-content {
  position: relative;
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 6rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero-content { padding-top: 10rem; padding-bottom: 8rem; }
}
.hero-text { max-width: 36rem; }
@media (min-width: 768px) { .hero-text { margin-left: auto; } }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(128 30% 68%);
}
.hero-eyebrow-line {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: hsl(128 30% 68%);
}
h1 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  color: hsl(38 35% 93%);
  text-shadow: 0 2px 20px hsl(158 20% 4% / 0.5);
}
.hero-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  padding-left: 1.25rem;
  font-size: 1.02rem;
  color: hsl(38 18% 72%);
  border-left: 2px solid hsl(38 45% 45%);
}
.hero-quote--lead {
  margin-bottom: 1.75rem;
  font-size: 1.08rem;
  color: hsl(38 22% 78%);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: hsl(158 20% 8%);
  background: hsl(128 28% 58%);
  box-shadow: 0 8px 30px hsl(128 28% 30% / 0.35);
  transition: opacity 0.3s, transform 0.3s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.hero-bottom-fade { display: none; }

/* ── Sections ── */
main {
  position: relative;
}
main::before {
  content: '';
  position: fixed;
  inset: 0;
  background: hsl(158 16% 7% / 0.72);
  backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}
main > * { position: relative; z-index: 1; }

.section-pro-koho { padding-block: 6rem; }
.section-jana { padding-block: 6rem; position: relative; overflow: hidden; }
.section-pomoc { padding-block: 6rem; }
.section-kontakt { padding-block: 6rem; position: relative; overflow: hidden; }
@media (min-width: 768px) {
  .section-pro-koho, .section-jana, .section-pomoc, .section-kontakt { padding-block: 8rem; }
}
.container { max-width: 64rem; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2rem); }
.container-sm { max-width: 42rem; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2rem); }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(38 50% 55%);
  margin-bottom: 1rem;
}
h2 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: hsl(38 28% 85%);
}

/* Pro koho */
.moments { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 4rem; }
.moment-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  background: hsl(157 14% 12% / 0.75);
  border: 1px solid hsl(157 15% 18%);
}
.moment-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: hsl(28 14% 17%);
}
.moment-text { font-size: 1rem; line-height: 1.6; color: hsl(38 15% 70%); padding-top: 0.5rem; }

/* Jana */
.jana-glow { display: none; }
.jana-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .jana-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.jana-body { font-size: 1rem; line-height: 1.8; color: hsl(38 12% 62%); display: flex; flex-direction: column; gap: 1rem; }
.jana-photo-wrap { display: flex; justify-content: center; }
@media (min-width: 768px) { .jana-photo-wrap { justify-content: flex-end; } }
.jana-photo {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: min(320px, 90vw);
  aspect-ratio: 3 / 4;
  border-radius: 2rem;
  border: 1px solid hsl(155 20% 28% / 0.5);
  box-shadow: 0 0 80px hsl(155 25% 15% / 0.6), 0 20px 60px hsl(26 16% 5% / 0.5);
}
.jana-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.jana-photo-fade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, hsl(28 14% 8% / 0.4) 0%, transparent 40%); }

/* Pomoc */
.pomoc-closing {
  margin-top: 3.5rem;
  text-align: center;
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: hsl(38 28% 85%);
  line-height: 1.4;
}
.pomoc-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: hsl(38 18% 62%);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid hsl(38 45% 40%);
}
.pomoc-quote--right {
  text-align: left;
  padding-left: 1.25rem;
  padding-right: 0;
  border-left: 2px solid hsl(38 45% 40%);
  border-right: none;
  margin-left: auto;
  margin-right: 0;
  max-width: 42rem;
  margin-bottom: 2rem;
}
.service-grid { display: grid; gap: 1.25rem; margin-top: 3.5rem; }
@media (min-width: 768px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: 1rem;
  background: hsl(157 14% 12% / 0.75);
  border: 1px solid hsl(157 15% 17%);
}
.service-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: hsl(28 14% 17%);
}
.service-title { font-family: 'Lora', Georgia, serif; font-weight: 600; font-size: 1.0625rem; color: hsl(38 25% 82%); }
.service-desc { font-size: 0.9375rem; line-height: 1.6; color: hsl(38 10% 58%); }

/* Kontakt */
.kontakt-glow { display: none; }
.kontakt-inner { position: relative; text-align: center; }
.kontakt-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  margin-inline: auto;
  margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: center;
  background: hsl(128 28% 62% / 0.12);
  border: 1px solid hsl(128 28% 62% / 0.25);
}
.kontakt-heading { font-family: 'Lora', Georgia, serif; font-weight: 600; line-height: 1.3; margin-bottom: 1.25rem; font-size: clamp(1.7rem, 4vw, 2.4rem); color: hsl(38 28% 87%); }
.kontakt-sub { font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; max-width: 28rem; margin-inline: auto; color: hsl(38 12% 58%); }

/* Formulář */
.kontakt-form { text-align: left; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: hsl(38 20% 55%);
}
.form-group input,
.form-group textarea {
  background: hsl(157 14% 14% / 0.8);
  border: 1px solid hsl(157 15% 22%);
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: hsl(38 20% 80%);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: hsl(38 10% 38%); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: hsl(128 28% 45%);
  background: hsl(157 14% 16% / 0.9);
}
.btn-kontakt {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 1rem 2rem; border-radius: 9999px;
  font-weight: 600; font-size: 0.9375rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: hsl(26 16% 9%);
  background: hsl(128 28% 62%);
  box-shadow: 0 8px 40px hsl(128 28% 40% / 0.3);
  transition: opacity 0.3s, transform 0.3s;
  border: none; cursor: pointer;
  align-self: center;
}
.btn-kontakt:hover { opacity: 0.9; transform: translateY(-2px); }
.kontakt-alt {
  font-size: 0.875rem;
  color: hsl(38 10% 42%);
  margin-top: 0.5rem;
}
.kontakt-alt a { color: hsl(38 30% 55%); text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
footer { padding-block: 2.5rem; background: hsl(158 16% 6% / 0.82); backdrop-filter: blur(2px); border-top: 1px solid hsl(157 15% 14% / 0.6); }
.footer-inner {
  max-width: 64rem; margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem; color: hsl(38 10% 40%);
}
@media (min-width: 640px) { .footer-inner { flex-direction: row; } }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-links { display: flex; align-items: center; gap: 1.25rem; }
.footer-links a { color: inherit; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
strong { font-weight: 600; }
