:root {
  --sage:       #7a9e87;
  --sage-light: #a8c5b2;
  --sage-dark:  #4e7260;
  --cream:      #f8f5f0;
  --warm-white: #fdfaf6;
  --charcoal:   #2c2c2c;
  --muted:      #6b7280;
  --gold:       #c9a96e;
}

* { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
}

h1, h2, h3, .display-font {
  font-family: 'Cormorant Garamond', serif;
}

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 158, 135, 0.15);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(253, 250, 246, 0.8);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
}
.navbar-brand img { height: 48px; }
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  padding: 0.4rem 0.9rem !important;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--sage-dark) !important; }
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
.social-nav a {
  color: var(--sage);
  font-size: 1.1rem;
  margin-left: 0.5rem;
  transition: color 0.2s;
}
.social-nav a:hover { color: var(--sage-dark); }

/* ── HERO ───────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%), url('../img/header.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-overline {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 600;
}
.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 600;
  line-height: 0.9;
  color: var(--warm-white);
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--sage-light);
  font-style: italic;
}
.hero-subtitle em {
  color: var(--warm-white);
  font-weight: 800;
}
.hero-tagline {
  font-size: 1rem;
  color: var(--warm-white);
  font-weight: 300;
  letter-spacing: 0.03em;
}
.btn-sage {
  background: var(--sage);
  color: #fff;
  border: none;
  padding: 0.85rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-sage:hover {
  background: var(--sage-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-sage {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}
.hero-content .btn-outline-sage {
  background-color: var(--warm-white);
}
.btn-outline-sage:hover {
  background: var(--sage);
  color: #fff;
}

/* ── STATS BAR ──────────────────────────── */
.stats-bar {
  background: var(--sage-dark);
  color: #fff;
  padding: 2.5rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--sage-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.4rem;
}

/* ── SECTION GENERAL ────────────────────── */
section { padding: 6rem 0; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.divider-sage {
  width: 48px;
  height: 2px;
  background: var(--sage);
  margin: 1.2rem 0 2rem;
}

/* ── SERVICES ───────────────────────────── */
#jakvammohupomoci { background: var(--cream); }
.service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  height: 100%;
  border-top: 3px solid var(--sage-light);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2rem;
  color: var(--sage);
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}
.service-card .btn-outline-sage {
  margin-top: 1.5rem;
  font-size: 0.78rem;
}

/* ── ABOUT ──────────────────────────────── */
#omne { background: var(--warm-white); }
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--warm-white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--sage-dark);
  line-height: 1.4;
  border-left: 3px solid var(--sage-light);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.philosophy-block {
  background: var(--cream);
  padding: 4rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.value-icon {
  font-size: 1.3rem;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ── SKILLS / BARS ──────────────────────── */
#praxe { background: var(--cream); }
.skill-row { margin-bottom: 1.5rem; }
.skill-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.skill-label i { color: var(--sage); font-size: 1rem; }
.progress {
  height: 6px;
  border-radius: 0;
  background: rgba(122,158,135,0.15);
}
.progress-bar {
  background: linear-gradient(90deg, var(--sage-light), var(--sage-dark));
  transition: width 1.5s ease;
}

/* ── TESTIMONIALS ───────────────────────── */
#reference { background: var(--warm-white); }
.testimonial-card {
  background: var(--cream);
  padding: 2.5rem;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--sage-light);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-top: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-author-role {
  font-size: 0.78rem;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── PARTNERS ───────────────────────────── */
#partneri { background: var(--cream); }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
}
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }
.partner-logo img { max-height: 44px; max-width: 120px; object-fit: contain; }

/* ── CONTACT ────────────────────────────── */
#kontakt { background: var(--sage-dark); color: #fff; }
#kontakt .section-title { color: #fff; }
#kontakt .section-label { color: var(--sage-light); }
.contact-lead { font-size: 1.05rem; opacity: 0.85; line-height: 1.75; }
.form-control-sage {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
}
.form-control-sage::placeholder { color: rgba(255,255,255,0.45); }
.form-control-sage:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--sage-light);
  color: #fff;
  box-shadow: none;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
}
.btn-gold:hover { background: #b8934d; color: #fff; transform: translateY(-2px); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.contact-info-item i { font-size: 1.2rem; color: var(--sage-light); flex-shrink: 0; margin-top: 0.15rem; }
.contact-info-item p { margin: 0; line-height: 1.5; font-size: 0.95rem; }
.contact-info-item a { color: var(--sage-light); text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }

/* ── FOOTER ─────────────────────────────── */
footer { background: #1e2a24; color: rgba(255,255,255,0.5); padding: 2rem 0; }
footer .social-link { color: rgba(255,255,255,0.4); font-size: 1.2rem; margin: 0 0.4rem; transition: color 0.2s; }
footer .social-link:hover { color: var(--sage-light); }

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

/* ── BACK TO TOP ────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--sage);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  z-index: 999;
  font-size: 1.1rem;
}
#backToTop.show { opacity: 1; pointer-events: all; }
#backToTop:hover { background: var(--sage-dark); }

.section-situace {
  background-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%), url(../img/terezka.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 0;
}

@supports (-webkit-touch-callout: none) {
  .section-situace {
    background-attachment: scroll;
  }
}

.section-situace .section-title {
  color: var(--warm-white);
}

.section-situace p:not(.section-label):not(.section-title) {
  color: rgba(255,255,255,0.7);
}

.page-alone {
  padding: 14rem 0 10rem;
  background-image:  linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%), url(../img/abstract-bg.jpg);
}

.page-alone .section-title {
  font-size: clamp(2rem, 4vw, 4rem);
}

.section-prvni-schuzka {
  background: var(--sage);
  color: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.section-faq p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--muted);
}

.section-faq p strong {
  color: var(--charcoal);
  font-weight: 600;
}

.dropdown-menu-language {
  background: var(--warm-white);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 0;
  padding: 0.5rem 0;
}

.dropdown-menu-language svg {
  width: 20px;
  height: 14px;
  object-fit: cover;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .philosophy-block { padding: 2rem; }
  .about-img-secondary { display: none; }
  #hero::before {
    background-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%), url('../img/header.jpg');
    background-position: center, right -380px center;
  }
  .section-situace {
     background-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%), url(../img/terezka.jpg);
     background-position: center, right -60vw center;
     background-attachment: scroll;
  }
  .page-alone {
    background-image:  linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%), url(../img/abstract-bg.jpg);
  }
}

.invalid-feedback {
  color: var(--gold);
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
}

.div-last {
  display: none;
}