:root {
  --bg: #f5f8f0;
  --bg-alt: #eaf3e4;
  --surface: #ffffff;
  --surface-alt: #edf5e8;
  --text: #33463a;
  --muted: #5b6f61;
  --primary: #3f6b4f;
  --primary-dark: #2e4e3a;
  --accent: #7c9b6a;
  --accent-soft: #cfe0c2;
  --accent-light: #f4ebdf;
  --border: #d4e1d0;
  --shadow: rgba(63, 107, 79, 0.14);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  background-image:
    url('assets/bg-hero.svg'),
    radial-gradient(at 0% 0%, rgba(124, 155, 106, 0.18) 0px, transparent 45%),
    radial-gradient(at 100% 100%, rgba(63, 107, 79, 0.14) 0px, transparent 48%);
  background-size: cover, auto, auto;
  background-position: center top, 0% 0%, 100% 100%;
  line-height: 1.65;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* Navigácia s Logom */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(45, 90, 75, 0.15);
}
.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 330px;
  height: 120px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 160ms ease;
}
.brand-link:hover .brand-logo,
.brand-link:focus .brand-logo {
  transform: scale(1.03);
}
.brand-logo[src] {
  display: inline-block;
}
.brand-logo {
  vertical-align: middle;
}
.brand {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.nav-links {
  display: flex;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}
.nav-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

/* Karty */
.hero-card, .info-card, .service-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(237,245,232,0.95));
  border: 1px solid rgba(63, 107, 79, 0.12);
  border-radius: 24px;
  box-shadow: 0 15px 35px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-card:hover, .info-card:hover, .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(63, 107, 79, 0.14);
}

/* Striedanie farieb kariet pre väčšiu pestrosť */
.about-grid .info-card:nth-child(even),
.services .service-card:nth-child(even) {
  background: var(--surface-alt);
  border-color: #cbdcd5;
}

.eyebrow {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(45, 90, 75, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1, h2, h3 { line-height: 1.25; margin: 0 0 0.8rem; color: var(--primary-dark); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { color: var(--primary); font-size: 1.4rem; }
p { color: var(--muted); margin-bottom: 1.5rem; }
p:last-child { margin-bottom: 0; }

/* Tlačidlá */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(25, 56, 46, 0.2);
}
.btn-secondary { 
  background: #ffffff; 
  color: var(--primary); 
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--surface-alt);
}

/* Hero sekcia */
.hero { padding: 2.5rem 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }
.hero-card { padding: 3rem; border-left: 6px solid var(--primary); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }

/* Vizuálny zelený box napravo */
.hero-visual { 
  padding: 2rem; 
  background: linear-gradient(135deg, rgba(63,107,79,0.16) 0%, rgba(207,224,194,0.7) 100%); 
  min-height: 400px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border-radius: 32px;
  border: 1px solid rgba(63, 107, 79, 0.12);
}
.visual-card { 
  width: 100%; 
  background: rgba(255, 255, 255, 0.95); 
  border-radius: 24px; 
  padding: 2.5rem; 
  border: 1px solid rgba(255,255,255,1);
  box-shadow: 0 20px 40px rgba(25,56,46,0.05);
}
.visual-card .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); display: inline-block; margin-right: 0.6rem; }

section { padding: 3rem 0; }
.page-header { padding: 5rem 0 3rem; text-align: center; max-width: 750px; margin: 0 auto; }
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-card { padding: 2.5rem; border-top: 4px solid var(--primary); }

.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.info-card { padding: 2.5rem; }

.info-card .team-photo {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
  border: 3px solid rgba(63,107,79,0.08);
}

@media (max-width: 900px) {
  .info-card .team-photo { width: 64px; height: 64px; }
}

/* Cenník Tabuľka */
.pricing-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: 20px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.02); margin-top: 2rem; border: 1px solid var(--border); }
.pricing-table th, .pricing-table td { padding: 1.4rem; text-align: left; border-bottom: 1px solid var(--border); }
.pricing-table th { background: var(--surface-alt); color: var(--primary-dark); font-weight: 700; }
.pricing-table tr:hover td { background: rgba(232, 240, 237, 0.4); }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; background: var(--surface); padding: 3rem; border-radius: 32px; box-shadow: 0 25px 55px rgba(0,0,0,0.03); border: 1px solid var(--border); }
.contact-item { margin-bottom: 1.5rem; background: var(--bg); padding: 1rem 1.2rem; border-radius: 16px; border-left: 4px solid var(--primary); }
.contact-item strong { display: block; color: var(--primary-dark); font-size: 0.9rem; text-transform: uppercase; margin-bottom: 0.2rem; }

input, textarea { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 0.95rem 1.1rem; font: inherit; background: var(--bg); margin-bottom: 1.2rem; }
input:focus, textarea:focus { outline: none; border-color: var(--primary); background: #ffffff; }
textarea { min-height: 140px; resize: vertical; }

footer { padding: 2.5rem 0; text-align: center; color: var(--muted); border-top: 1px solid var(--border); margin-top: 5rem; }

.footer-logo {
  width: auto;
  height: 48px;
  max-height: 48px;
  vertical-align: middle;
  margin-right: 0.75rem;
}

@media (max-width: 900px) {
  .brand-wrapper { flex: 0 0 auto; }
  .footer-logo { width: auto; height: 32px; }
}

@media (max-width: 900px) {
  .hero-grid, .contact-grid, .services { grid-template-columns: 1fr; }
}