/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: #201810;
  background: #fff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   TYPOGRAPHY
===================== */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 600; }

/* =====================
   COLORS
===================== */
:root {
  --primary: #1A1208;
  --primary-light: #3D2A14;
  --accent: #CFA95F;
  --accent-light: #DFBE78;
  --gray-50: #faf8f5;
  --gray-100: #f3f0ea;
  --gray-200: #e8e2d8;
  --gray-500: #7a7060;
  --gray-700: #4a4035;
  --white: #ffffff;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

.btn-nav {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.25s;
}
.btn-nav:hover { background: var(--accent-light); }

/* =====================
   SECTION HELPERS
===================== */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; }

/* =====================
   HEADER / NAV
===================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(26,18,8,0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}
.logo-img {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* =====================
   MOBILE MENU
===================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* =====================
   HERO + CAROUSEL
===================== */
.hero {
  position: relative;
  overflow: hidden;
}

/* Carousel wrapper */
.carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Jednotlivé slidy */
.c-slide {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Fallback barvy pro slidy bez fotky */
.c-slide:nth-child(1) { background-color: #1A1208; }
.c-slide:nth-child(2) { background-color: #0F1A0E; }
.c-slide:nth-child(3) { background-color: #141414; }

.c-slide.visible {
  display: flex;
}
.c-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Split hero slide */
.c-slide-split.visible {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.c-split-text {
  display: flex;
  align-items: center;
  background: var(--primary);
  padding: 0 60px;
}
.c-split-text .c-content {
  padding-top: 80px;
  padding-bottom: 60px;
  max-width: 520px;
}
.c-split-photo {
  position: relative;
  overflow: hidden;
  background: #ddd6cc;
}
.c-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}
.c-slide-split .c-content h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}
@media (max-width: 768px) {
  .c-slide-split.visible {
    display: flex;
    flex-direction: column;
  }
  .c-split-photo {
    display: none;
  }
  .c-split-text {
    padding: 0 24px;
    flex: 1;
  }
}

/* Tmavý overlay přes foto */
.c-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,8,5,0.75) 0%,
    rgba(12,8,5,0.45) 60%,
    rgba(12,8,5,0.65) 100%
  );
}

/* Obsah slidu */
.c-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 100px;
  padding-bottom: 120px;
}

/* Jméno pod tlačítky */
.hero-person-tag {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-person-tag strong {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}
.hero-person-tag span {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

/* Šipky */
.c-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.c-arrow:hover {
  border-color: var(--accent);
  background: rgba(207,169,95,0.2);
  color: var(--accent);
}
.c-arrow svg { width: 22px; height: 22px; }
.c-arrow-prev { left: 28px; }
.c-arrow-next { right: 28px; }

/* Tečky */
.c-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.c-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.c-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* Progress bar */
.c-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}
.c-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
}

.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-content h1, .c-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-content p, .c-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =====================
   KALKULAČKA
===================== */
.kalkulator {
  padding: 100px 0;
  background: var(--gray-50);
}

/* Hlavní záložky */
.kalk-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 6px;
}

.kalk-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--gray-500);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.kalk-tab svg { width: 18px; height: 18px; flex-shrink: 0; }
.kalk-tab:hover { color: var(--primary); background: var(--gray-100); }
.kalk-tab.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,58,92,0.2);
}

/* Panel obsah */
.kalk-body { }
.kalk-panel { display: none; }
.kalk-panel.active { display: block; }

.kalk-form-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.kalk-col { }

/* Skupiny polí */
.kf-group {
  margin-bottom: 20px;
}
.kf-group label, .kalk-col > .kf-group > label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.kf-intro {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.kf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kf-group input[type="number"],
.kf-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.kf-group input:focus, .kf-group select:focus {
  border-color: var(--primary-light);
}

/* Button-style selektory */
.kf-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kf-btns-wrap { flex-wrap: wrap; }

.kf-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--gray-700);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.kf-btn:hover { border-color: var(--primary-light); color: var(--primary); }
.kf-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Sub-sekce podle typu nemovitosti */
.kf-sub { display: none; }
.kf-sub.active { display: block; }

/* Toggle přepínač */
.kf-site-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 10px;
  gap: 16px;
}
.kf-site-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.95rem;
}
.kf-site-input {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.9rem;
}
.kf-site-input input {
  width: 72px;
  padding: 7px 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--primary);
  text-align: center;
  outline: none;
}
.kf-site-input input:focus { border-color: var(--primary-light); }

/* Toggle switch */
.kf-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.kf-switch input { opacity: 0; width: 0; height: 0; }
.kf-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--gray-200);
  border-radius: 24px;
  transition: 0.3s;
}
.kf-slider:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.kf-switch input:checked + .kf-slider { background: var(--primary); }
.kf-switch input:checked + .kf-slider:before { transform: translateX(20px); }

/* Výsledek */
.kalk-result-col {
  position: sticky;
  top: 90px;
}

.kalk-result {
  background: var(--primary);
  border-radius: 16px;
  padding: 32px 28px;
  color: var(--white);
}

.kalk-result-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.kalk-result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
  min-height: 48px;
}

.kalk-result-range {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  min-height: 20px;
}

.kalk-result-detail {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-bottom: 16px;
  min-height: 60px;
}
.kalk-result-detail .rdet-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 4px 0;
  color: rgba(255,255,255,0.7);
}
.kalk-result-detail .rdet-row span:last-child {
  font-weight: 500;
  color: var(--white);
}

.kalk-result-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .kalk-tabs { flex-direction: column; }
  .kalk-tab { justify-content: flex-start; }
  .kalk-form-grid { grid-template-columns: 1fr; }
  .kalk-result-col { position: static; }
}
@media (max-width: 600px) {
  .kf-row { grid-template-columns: 1fr; }
}

/* =====================
   STATS
===================== */
.stats {
  background: var(--primary);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

/* =====================
   SLUZBY
===================== */
.sluzby {
  padding: 100px 0;
  background: var(--gray-50);
}

.sluzby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sluzba-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.sluzba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26,58,92,0.12);
  border-color: var(--accent);
}

.sluzba-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sluzba-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.sluzba-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}
.sluzba-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =====================
   O NÁS
===================== */
.o-nas {
  padding: 100px 0;
  background: var(--white);
}

.o-nas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.o-nas-text h2 { margin-bottom: 20px; }
.o-nas-text p {
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.8;
}

.o-nas-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.o-nas-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--gray-700);
}
.o-nas-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.o-nas-visual { position: relative; }

/* Foto verze */
.o-nas-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 560px;
}
.o-nas-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.o-nas-photo-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.97) 60%, transparent 100%);
  padding: 32px 28px 28px;
}
.o-nas-photo-card blockquote {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}
.o-nas-photo-card cite {
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
  font-size: 0.85rem;
}

/* =====================
   STRUKTURA SKUPINY
===================== */
.struktura {
  padding: 100px 0;
  background: var(--primary);
}

.struktura .section-tag { color: var(--accent); }
.struktura .section-header h2 { color: var(--white); }
.struktura .section-header p { color: rgba(255,255,255,0.55); }

.struktura-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Zakladatel */
.str-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.str-person {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.str-person svg {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.7);
}
.str-founder span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}
.str-founder small {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}

/* Šipky */
.str-arrow-down {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.str-arrow-down svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  opacity: 0.7;
}

/* Holding */
.str-holding {
  background: var(--accent);
  border-radius: 14px;
  padding: 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 280px;
  text-align: center;
}
.str-holding-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 4px;
}
.str-holding strong {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}
.str-holding span {
  color: rgba(26,58,92,0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Dcery */
.str-dcery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 900px;
}

.str-dcera {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all 0.3s;
}
.str-dcera:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.str-dcera-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.str-dcera-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.str-dcera strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.str-dcera span {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}

@media (max-width: 768px) {
  .str-dcery { grid-template-columns: repeat(2, 1fr); }
  .str-holding { min-width: unset; padding: 20px 32px; }
}
@media (max-width: 480px) {
  .str-dcery { grid-template-columns: 1fr; }
}

/* =====================
   PROJEKTY
===================== */
.projekty {
  padding: 100px 0;
  background: var(--gray-50);
}

.projekty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.projekt-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.projekt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,58,92,0.12);
}

.projekt-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.projekt-img-1 { background-color: #3D2A14; background-image: linear-gradient(135deg, #1A1208, #3D2A14); }
.projekt-img-2 { background-color: #3a6b3a; background-image: linear-gradient(135deg, #1e3d1e, #3a6b3a); }
.projekt-img-3 { background-color: #5a3a1a; background-image: linear-gradient(135deg, #3d1e0a, #8a6030); }

.projekt-info {
  padding: 24px;
}
.projekt-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: #a07830;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.projekt-info h3 {
  color: var(--primary);
  margin-bottom: 8px;
}
.projekt-info p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.projekty-cta {
  text-align: center;
  padding: 48px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}
.projekty-cta p {
  color: var(--gray-700);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* =====================
   KONTAKT
===================== */
.kontakt {
  padding: 100px 0;
  background: var(--white);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.kontakt-info h2 { margin-bottom: 16px; }
.kontakt-info > p {
  color: var(--gray-500);
  margin-bottom: 40px;
  line-height: 1.8;
}

.kontakt-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.kontakt-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.kontakt-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.kontakt-item a, .kontakt-item span {
  color: var(--primary);
  font-weight: 500;
}
.kontakt-item a:hover { color: var(--primary-light); }

/* FORM */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--gray-50);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  background: var(--white);
}
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: #d4edda;
  color: #155724;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}
.form-success.show { display: block; }

/* =====================
   FOOTER
===================== */
.footer {
  background: #0C0805;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .hero-content { padding-right: 0; padding-bottom: 60px; }
  .sluzby-grid { grid-template-columns: repeat(2, 1fr); }
  .projekty-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .o-nas-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .sluzby-grid { grid-template-columns: 1fr; }
  .projekty-grid { grid-template-columns: 1fr; }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row { grid-template-columns: 1fr; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat strong { font-size: 2rem; }
}
