/* ═══════════════════════════════════════════════════════════════════════════════
   SMUKÝRKA — Design System v2.0
   Font: Sora (headings) + Inter (body)
   Color Scheme: Dark Naturals + Forest Green Accent
   ═══════════════════════════════════════════════════════════════════════════════ */

:root {
  --c-dark: #1A1A1A;
  --c-text: #2B2B2B;
  --c-muted: #6B6B6B;
  --c-border: #E0DED8;
  --c-light: #F5F4F0;
  --c-white: #FFFFFF;
  --c-green: #3B7A57;
  --c-green-light: #5A9E73;
  --c-green-pale: #EAF2EC;
  --c-accent: #C4703F;

  --font-display: 'Sora', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-w: 1200px;
  --section-py: clamp(80px, 10vw, 140px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GLOBAL RESET & DEFAULTS
   ═══════════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY & SECTION LABELS
   ═══════════════════════════════════════════════════════════════════════════════ */

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--c-green);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-text);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ANIMATION & REVEAL EFFECTS
   ═══════════════════════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 0.12s);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════════════════════════════════════════ */

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease 0.4s, visibility 0s linear 1s;
}

.loader-inner img {
  width: 230px;
  height: auto;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 0.8rem 2.5rem;
  box-shadow: 0 1px 3px rgba(26, 26, 26, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
  height: 56px;
  transition: height 0.4s ease;
  overflow: visible;
}

.nav.scrolled .nav-logo {
  height: 40px;
}

.nav-logo img {
  height: 100%;
  width: auto;
  transition: opacity 0.4s ease;
  object-fit: contain;
}

.nav-logo .logo-white {
  opacity: 1;
}

.nav-logo .logo-dark {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.nav.scrolled .logo-white {
  opacity: 0;
}

.nav.scrolled .logo-dark {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--c-text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: white;
}

.nav.scrolled .nav-links a.active {
  color: var(--c-green);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav.scrolled .nav-cta {
  border-color: var(--c-text);
  color: var(--c-text);
}

.nav-cta:hover {
  background: var(--c-green);
  border-color: var(--c-green);
  color: white;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: white;
  transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span {
  background: var(--c-text);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--c-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.6) saturate(0.9);
  transform: scale(1.08);
  animation: hero-zoom 25s ease-out forwards;
}

@keyframes hero-zoom {
  0% {
    transform: scale(1.15);
    filter: brightness(0) saturate(0);
  }
  30% {
    filter: brightness(0.6) saturate(0.9);
  }
  100% {
    transform: scale(1.08);
    filter: brightness(0.6) saturate(0.9);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.25);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
  animation: hero-fade-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  height: 80px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-fade-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-logo img {
  height: 100%;
  width: auto;
}

.hero-badge {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green-light);
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: hero-fade-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-weight: 500;
  animation: hero-fade-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-headline {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  animation: hero-fade-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-headline span {
  display: block;
  font-weight: 300;
  font-size: 0.4em;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.8em;
}

/* obal hlavní části nadpisu (kvůli editovatelnosti) — dědí styl H1, ne podtitulku */
.hero-headline .hero-headline-main {
  display: inline;
  font-weight: inherit;
  font-size: 1em;
  color: inherit;
  letter-spacing: inherit;
  text-transform: none;
  margin-top: 0;
}

/* Hero keywords — tagline-style words above the main headline */
.hero-keywords {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: hero-fade-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--c-green);
  margin: 1.5rem auto;
  animation: hero-fade-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.hero-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: hero-fade-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: hero-fade-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  width: max-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  animation: hero-fade-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
  z-index: 2;
}

.scroll-line {
  width: 1.5px;
  height: 24px;
  background: rgba(255, 255, 255, 0.4);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 0.8;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: translateY(1px);
}

/* Button: Primary (Strong Green) */
.btn-primary {
  background: var(--c-green);
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(59, 122, 87, 0.2);
}

.btn-primary:hover {
  background: var(--c-green-light);
  box-shadow: 0 12px 32px rgba(59, 122, 87, 0.3);
  transform: translateY(-2px);
}

.btn-primary:focus {
  outline: 2px solid var(--c-green);
  outline-offset: 2px;
}

/* Button: Ghost (Transparent border) */
.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-ghost:hover {
  background: white;
  color: var(--c-dark);
  transform: translateY(-2px);
}

/* Button: White (White bg) */
.btn-white {
  background: white;
  color: var(--c-green);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--c-light);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Button: Outline (Green border) */
.btn-outline {
  background: transparent;
  color: var(--c-green);
  border: 2px solid var(--c-green);
}

.btn-outline:hover {
  background: var(--c-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 122, 87, 0.2);
}

/* Button: Arrow variant */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow::after {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PILLAR CARDS
   ═══════════════════════════════════════════════════════════════════════════════ */

.pillars {
  padding: var(--section-py) 2rem;
  background: var(--c-white);
}

.pillars-header {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  text-align: center;
}

.pillars-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: white;
  border: 1px solid var(--c-border);
  border-bottom: 3px solid var(--c-green);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--c-green-light);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.pillar-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--c-text);
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.7;
}

.pillar-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-green);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.pillar-card:hover .pillar-cta {
  color: var(--c-green-light);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TEASER SECTIONS
   ═══════════════════════════════════════════════════════════════════════════════ */

.teaser-section {
  padding: var(--section-py) 2rem;
  background: white;
}

.teaser-section.alt {
  background: var(--c-light);
}

.teaser-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.teaser-grid.reverse .teaser-image {
  order: 2;
}

.teaser-grid.reverse .teaser-text {
  order: 1;
}

.teaser-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 400px;
}

.teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.teaser-section:hover .teaser-image img {
  transform: scale(1.05);
}

.teaser-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.teaser-text p {
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTENT SECTIONS (SPLIT & CENTERED)
   ═══════════════════════════════════════════════════════════════════════════════ */

.content-section {
  padding: var(--section-py) 2rem;
  background: white;
}

.content-section-alt {
  padding: var(--section-py) 2rem;
  background: var(--c-light);
}

.content-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.content-centered {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.content-centered h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.content-centered p {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* více bloků pod sebou v jedné sekci — jasný rozestup */
.content-split + .content-split {
  margin-top: 5rem;
}

.content-split-reverse .content-image {
  order: 2;
}

.content-split-reverse .content-text {
  order: 1;
}

.content-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: auto;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-split:hover .content-image img {
  transform: scale(1.05);
}

.content-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--c-text);
}

.content-text p {
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.content-text .btn {
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   INFO CARDS (GRID)
   ═══════════════════════════════════════════════════════════════════════════════ */

.content-inner > .reveal + .info-grid,
.content-inner > .reveal + .reveal.info-grid {
  margin-top: 2.5rem;
}

.content-inner h2 {
  margin-bottom: 1.2rem;
}

.info-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card {
  background: white;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-green);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.info-card h3,
.info-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--c-text);
}

.info-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

.info-card p {
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Info card with image thumbnail */
.info-card-img {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.info-card-thumb {
  width: 140px;
  min-height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.info-card-body {
  padding: 1.5rem;
  flex: 1;
}

.info-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--c-text);
}

.info-card-body p {
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SERVICE CARDS (PRICING)
   ═══════════════════════════════════════════════════════════════════════════════ */

.service-cards {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  border: 1px solid var(--c-border);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
  background: var(--c-dark);
  color: white;
  border-color: var(--c-dark);
  border-top: 4px solid var(--c-green);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.service-card h3,
.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: inherit;
}

.card-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-green);
  margin: 1.5rem 0;
  line-height: 1;
}

.service-card.featured .card-price {
  color: var(--c-green-light);
}

.card-desc {
  font-size: 0.95rem;
  color: inherit;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.service-card.featured .card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.service-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.service-card li {
  padding: 0.5rem 0;
  color: inherit;
  opacity: 0.9;
}

.service-card li::before {
  content: '✓';
  margin-right: 0.75rem;
  color: var(--c-green);
  font-weight: 700;
}

.service-card.featured li::before {
  color: var(--c-green-light);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TIMELINE (LEFT-ALIGNED VERTICAL)
   ═══════════════════════════════════════════════════════════════════════════════ */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot-wrap {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--c-green);
  border: 3px solid var(--c-white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--c-green);
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: white;
  border: 1px solid var(--c-border);
  padding: 2rem;
  border-radius: 2px;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.timeline-img {
  max-height: 180px;
  overflow: hidden;
  margin-top: 1rem;
}

.timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════════════════════ */

.gallery-section {
  padding: var(--section-py) 2rem;
  background: white;
}

.gallery-section .section-label {
  display: block;
  text-align: center;
}

.gallery-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 300px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--c-light);
  cursor: pointer;
  border-radius: 2px;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.25);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════════════════════ */

.lightbox-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.lightbox-backdrop.lightbox-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  animation: lightbox-zoom-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightbox-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.cta-section {
  padding: var(--section-py) 2rem;
  background: linear-gradient(135deg, var(--c-green) 0%, #2D5F3E 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: bg-drift 20s linear infinite;
}

@keyframes bg-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  color: white;
  margin-bottom: 1.2rem;
}

.cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 1.2rem;
  line-height: 1.8;
}

.cta-inner .btn {
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════════════════════ */

.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--c-border);
  background: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-text);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(59, 122, 87, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */

.footer {
  padding: 4rem 2rem 2rem;
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-inner h4 {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.footer-inner ul {
  list-style: none;
}

.footer-inner li {
  margin-bottom: 0.75rem;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-inner a:hover {
  color: var(--c-green-light);
}

.footer-copy {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.footer-social a:hover {
  background: var(--c-green);
  color: white;
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MAP SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.map-section {
  padding: var(--section-py) 2rem;
  background: white;
}

.map-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--c-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: 1.1rem;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-column: span 2;
  }

  .content-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .content-split-reverse .content-image,
  .content-split-reverse .content-text {
    order: unset;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--c-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .nav.scrolled .nav-links a {
    color: white;
  }

  .nav-links a.active {
    color: var(--c-green-light);
  }

  .nav.scrolled .nav-links a.active {
    color: var(--c-green-light);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 999;
  }

  .nav-toggle.open span {
    background: white;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    padding: 2rem;
  }

  .teaser-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .teaser-grid.reverse .teaser-image,
  .teaser-grid.reverse .teaser-text {
    order: unset;
  }

  .info-grid-2col {
    grid-template-columns: 1fr;
  }

  .info-card-img {
    flex-direction: column;
  }

  .info-card-thumb {
    width: 100%;
    height: 160px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
    transform: scale(1);
  }

  .service-card.featured:hover {
    transform: translateY(-8px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-item {
    grid-auto-rows: 200px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: -50px;
    transform: none;
  }

  .lightbox-prev {
    left: 20%;
  }

  .lightbox-next {
    right: 20%;
  }

  .lightbox-close {
    top: -35px;
    right: -10px;
  }

  .contact-grid {
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner h4,
  .footer-inner ul {
    text-align: center;
  }

  .teaser-image {
    height: 300px;
  }

  .map-wrap {
    height: 350px;
  }

  .cta-section {
    padding: 3rem 2rem;
  }

  .cta-inner h2 {
    font-size: 1.8rem;
  }

  .cta-inner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-py: 3rem;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .nav.scrolled {
    padding: 0.75rem 1.5rem;
  }

  .nav-logo {
    height: 40px;
  }

  .hero-headline {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-label {
    font-size: 10px;
    gap: 8px;
  }

  .section-label::before {
    width: 20px;
    height: 2px;
  }

  .pillar-number {
    font-size: 2.5rem;
  }

  .pillar-card h3 {
    font-size: 1.1rem;
  }

  .pillar-card p {
    font-size: 0.9rem;
  }

  .teaser-image {
    height: 250px;
  }

  .btn {
    font-size: 0.85rem;
    padding: 12px 24px;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .card-price {
    font-size: 2rem;
  }

  .card-desc {
    margin-bottom: 1.5rem;
  }

  .service-card ul {
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item {
    grid-auto-rows: 200px;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .form-input,
  .form-textarea {
    margin-bottom: 1rem;
    padding: 0.75rem;
  }

  .footer-inner {
    gap: 1.5rem;
  }

  .footer-inner h4 {
    margin-bottom: 1rem;
    font-size: 0.85rem;
  }

  .footer-copy {
    font-size: 0.8rem;
  }

  .map-wrap {
    height: 300px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   UTILITY & PRINT
   ═══════════════════════════════════════════════════════════════════════════════ */

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media print {
  .nav,
  .hero-scroll-hint {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO MODIFIKÁTOR – menší verze pro podstránky (obsazenost, zóna)
═══════════════════════════════════════════════════════════════════════ */
.hero.hero-sub {
  min-height: 100vh;
}

.hero.hero-sub .hero-headline {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
}

/* ═══════════════════════════════════════════════════════════════════════
   OBSAZENOST ZAHRÁDEK
═══════════════════════════════════════════════════════════════════════ */
.occupancy-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}

@media (max-width: 720px) {
  .occupancy-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

.stat-card {
  background: #FAF9F5;
  border: 1px solid #E8E5DC;
  border-radius: 4px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.stat-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--c-dark);
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A756B;
}

.occupancy-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  padding: 1rem 1.4rem;
  background: #FAF9F5;
  border: 1px solid #E8E5DC;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-dark);
}

.legend-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.legend-free     { background: #5A9E73; }
.legend-reserved { background: #E8C547; }
.legend-rented   { background: #C44536; }

.legend-updated {
  margin-left: auto;
  font-size: 0.78rem;
  color: #8A847A;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .legend-updated {
    margin-left: 0;
    width: 100%;
  }
}

/* SVG mapa parcel */
.plot-map-wrapper {
  background: #FBFAF5;
  border: 1px solid #E8E5DC;
  border-radius: 6px;
  padding: 1.4rem;
  overflow-x: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.plot-map-wrapper svg {
  display: block;
  width: 100%;
  height: auto;
  min-width: 820px;
}

.map-label-dark {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  fill: #6B665D;
  text-transform: uppercase;
}

/* Jednotlivé parcely */
.plot {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.plot rect {
  stroke: rgba(0, 0, 0, 0.12);
  stroke-width: 0.8;
  transition: fill 0.3s ease, stroke 0.2s ease, filter 0.2s ease;
}

.plot-free rect     { fill: #5A9E73; }
.plot-reserved rect { fill: #E8C547; }
.plot-rented rect   { fill: #C44536; }

.plot-number {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  fill: #fff;
  pointer-events: none;
  letter-spacing: 0.02em;
}

.plot-reserved .plot-number {
  fill: #5A5028;
}

.plot:hover rect {
  stroke: var(--c-dark);
  stroke-width: 1.8;
  filter: brightness(1.08);
}

.plot:hover {
  transform: translateY(-1px);
}

.occupancy-note {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #8A847A;
}

/* ═══════════════════════════════════════════════════════════════════════
   MODAL DETAILU PARCELY
═══════════════════════════════════════════════════════════════════════ */
.plot-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.plot-modal.open {
  display: flex;
}

.plot-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(3px);
  animation: modal-fade 0.3s ease both;
}

.plot-modal-content {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 2.4rem 2.2rem 2rem;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  animation: modal-pop 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modal-pop {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.plot-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  color: #6B665D;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.plot-modal-close:hover {
  background: #F5F3EE;
  color: var(--c-dark);
}

.plot-modal-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A847A;
  margin: 0 0 0.4rem;
}

.plot-modal-title {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: 2.2rem;
  margin: 0 0 1rem;
  color: var(--c-dark);
}

.plot-modal-status {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.plot-modal-status.status-free {
  background: rgba(90, 158, 115, 0.12);
  color: #2F6543;
}

.plot-modal-status.status-reserved {
  background: rgba(232, 197, 71, 0.18);
  color: #7A6612;
}

.plot-modal-status.status-rented {
  background: rgba(196, 69, 54, 0.12);
  color: #8B2F23;
}

.plot-modal-details {
  border-top: 1px solid #EDEBE4;
  border-bottom: 1px solid #EDEBE4;
  padding: 1rem 0;
  margin-bottom: 1.4rem;
}

.plot-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: #5A554C;
}

.plot-detail-row strong {
  color: var(--c-dark);
  font-weight: 500;
}

.plot-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.plot-modal-actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   ZÁKAZNICKÁ ZÓNA (zona.html)
═══════════════════════════════════════════════════════════════════════ */
.zona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-bottom: 3rem;
}

.zona-card {
  background: #FAF9F5;
  border: 1px solid #E8E5DC;
  border-radius: 6px;
  padding: 1.8rem 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.zona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  border-color: var(--c-accent, #5A9E73);
}

.zona-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.zona-card h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--c-dark);
}

.zona-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #6B665D;
  margin: 0 0 1rem;
  flex-grow: 1;
}

.zona-card-cta {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #2F6543;
  font-weight: 500;
}

.form-embed {
  background: #FBFAF5;
  border: 1px solid #E8E5DC;
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1.5rem;
}

.form-embed iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 0;
  border-radius: 4px;
  background: #fff;
}

.zona-intro-card {
  background: linear-gradient(135deg, #F5F3EE 0%, #FAF9F5 100%);
  border: 1px solid #E8E5DC;
  border-radius: 6px;
  padding: 2rem 1.8rem;
  margin-bottom: 2.5rem;
}

.zona-intro-card h2 {
  margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   KALENDÁŘ AKCÍ NA HOMEPAGE
═══════════════════════════════════════════════════════════════════════ */
.events-section {
  padding: 6rem 2rem;
  background: #FAF9F5;
}

.events-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.events-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.events-cal-wrapper {
  background: #fff;
  border: 1px solid #E8E5DC;
  border-radius: 6px;
  padding: 0.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.events-cal-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 4px;
}

@media (max-width: 720px) {
  .events-cal-wrapper iframe {
    min-height: 520px;
  }
}

.events-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #8A847A;
  text-align: center;
}

.form-embed-placeholder {
  padding: 2rem 1.6rem;
  text-align: center;
  color: #6B665D;
  font-size: 0.95rem;
  border: 1px dashed #CFCBC1;
  border-radius: 4px;
  background: #fff;
}

.form-embed-placeholder p { margin: 0.35rem 0; }
.form-embed-placeholder a { color: #2F6543; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════════
   HERO – bez fotek, jen tmavý podklad + typografie
═══════════════════════════════════════════════════════════════════════ */
.hero .hero-bg,
.hero .hero-overlay {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  background-image: none !important;
  width: 0 !important;
  height: 0 !important;
}

.hero {
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(255,255,255,0.02) 0%, transparent 55%),
    var(--c-dark);
}

/* ═══════════════════════════════════════════════════════════════════════
   NAV CTA GROUP – dvě tlačítka vpravo v navigaci (Zóna + Kontakt)
═══════════════════════════════════════════════════════════════════════ */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-cta-group .nav-cta {
  white-space: nowrap;
}

/* Variant pro zákaznickou zónu – o trošku výraznější (zelený akcent) */
.nav-cta.nav-cta-alt {
  background: var(--c-green);
  border-color: var(--c-green);
  color: #fff;
}

.nav-cta.nav-cta-alt:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.nav.scrolled .nav-cta.nav-cta-alt {
  background: var(--c-green);
  border-color: var(--c-green);
  color: #fff;
}

.nav.scrolled .nav-cta.nav-cta-alt:hover {
  background: var(--c-text);
  border-color: var(--c-text);
  color: #fff;
}

/* Na desktopu: CTA group viditelná, mobilní odkaz skrytý */
.nav-zona-mobile {
  display: none;
}

@media (max-width: 960px) {
  .nav-cta-group {
    display: none;
  }
  /* V hamburgeru zobrazit odkaz na zónu */
  .nav-zona-mobile {
    display: list-item;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   MOCKUP KALENDÁŘE (vizualizace pro klienta)
═══════════════════════════════════════════════════════════════════════ */
.cal-mockup {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.cal-toolbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid #E8E5DC;
  flex-wrap: wrap;
}

.cal-nav-btn {
  background: none;
  border: 1px solid #E0DED8;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  font-size: 1.1rem;
  color: #6B665D;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-title {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--c-dark);
}

.cal-tabs {
  margin-left: auto;
  display: flex;
  gap: 0;
  border: 1px solid #E0DED8;
  border-radius: 4px;
  overflow: hidden;
}

.cal-tab {
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #8A847A;
  border-right: 1px solid #E0DED8;
  cursor: default;
}

.cal-tab:last-child { border-right: none; }

.cal-tab-active {
  background: var(--c-dark);
  color: #fff;
}

.cal-agenda {
  padding: 0.5rem 0;
  max-height: 540px;
  overflow-y: auto;
}

.cal-date-group {
  padding: 0.3rem 1.2rem 0.6rem;
}

.cal-date-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A847A;
  padding: 0.5rem 0 0.3rem;
  border-bottom: 1px solid #F0EDE6;
  margin-bottom: 0.5rem;
}

.cal-event {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  background: #FAFAF7;
  margin-bottom: 0.4rem;
  transition: background 0.2s ease;
}

.cal-event:hover { background: #F5F3EE; }

.cal-event-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.cal-event-green .cal-event-dot { background: #5A9E73; }
.cal-event-amber .cal-event-dot { background: #D4A843; }
.cal-event-blue  .cal-event-dot { background: #4A7FB5; }

.cal-event-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cal-event-body strong {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-dark);
  line-height: 1.3;
}

.cal-event-time {
  font-size: 0.78rem;
  color: #5A9E73;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cal-event-desc {
  font-size: 0.85rem;
  color: #6B665D;
  line-height: 1.45;
}

.cal-footer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-top: 1px solid #E8E5DC;
  background: #FAFAF7;
}

.cal-footer-icon { color: #8A847A; display: flex; }

.cal-footer-link {
  font-size: 0.78rem;
  color: #4A7FB5;
  font-weight: 500;
  cursor: default;
}

@media (max-width: 720px) {
  .cal-tabs { display: none; }
  .cal-agenda { max-height: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   MOCKUP FORMULÁŘŮ (vizualizace pro klienta)
═══════════════════════════════════════════════════════════════════════ */
.form-mockup {
  background: #fff;
  border-radius: 6px;
  padding: 2rem 1.8rem 1.6rem;
}

.form-mockup-title {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--c-dark);
  margin: 0 0 0.3rem;
}

.form-mockup-desc {
  font-size: 0.88rem;
  color: #6B665D;
  margin: 0 0 1.6rem;
  line-height: 1.5;
  border-bottom: 3px solid #5A9E73;
  padding-bottom: 1.2rem;
}

.form-mockup-group {
  margin-bottom: 1.4rem;
}

.form-mockup-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: 0.4rem;
}

.form-mockup-required {
  color: #C44536;
  margin-left: 2px;
}

.form-mockup-input {
  display: block;
  width: 100%;
  padding: 0.65rem 0;
  border: none;
  border-bottom: 1px solid #D4D1C8;
  font-size: 0.9rem;
  color: #A8A59C;
  background: transparent;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-mockup-input:focus {
  border-bottom-color: #5A9E73;
}

.form-mockup-textarea {
  display: block;
  width: 100%;
  min-height: 80px;
  padding: 0.65rem 0;
  border: none;
  border-bottom: 1px solid #D4D1C8;
  font-size: 0.9rem;
  color: #A8A59C;
  background: transparent;
  outline: none;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.form-mockup-select {
  display: block;
  width: 100%;
  padding: 0.65rem 0;
  border: none;
  border-bottom: 1px solid #D4D1C8;
  font-size: 0.9rem;
  color: #A8A59C;
  background: transparent;
  outline: none;
  font-family: inherit;
  cursor: default;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.form-mockup-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.2rem;
}

.form-mockup-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #5A554C;
  cursor: default;
}

.form-mockup-radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #D4D1C8;
  flex-shrink: 0;
}

.form-mockup-file {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem;
  border: 1px dashed #D4D1C8;
  border-radius: 4px;
  color: #8A847A;
  font-size: 0.85rem;
  cursor: default;
}

.form-mockup-file-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F0EDE6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-mockup-submit {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.7rem 2rem;
  background: #5A9E73;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: default;
}

.form-mockup-footer {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid #EDEBE4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: #A8A59C;
}

.form-mockup-footer svg { flex-shrink: 0; }

.form-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.4rem;
}

@media (max-width: 720px) {
  .form-mockup-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONZIVITA – OPRAVY PRO MOBIL (≤768px)
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero na mobilu – menší padding, menší text */
  .hero.hero-sub .hero-headline {
    font-size: clamp(1.7rem, 5.5vw, 2.3rem);
  }

  .hero-intro {
    font-size: 0.92rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

  /* Events section – padding menší */
  .events-section {
    padding: 3.5rem 1.2rem;
  }

  .events-header p {
    font-size: 0.88rem;
    text-align: center;
    padding: 0;
  }

  .events-cal-wrapper {
    padding: 0.4rem;
  }

  /* Kalendář mockup na mobilu */
  .cal-toolbar {
    padding: 0.6rem 0.8rem;
    gap: 0.4rem;
  }

  .cal-title {
    font-size: 0.85rem;
  }

  .cal-date-group {
    padding: 0.3rem 0.8rem 0.5rem;
  }

  .cal-event {
    padding: 0.6rem 0.5rem;
    gap: 0.5rem;
  }

  .cal-event-body strong {
    font-size: 0.85rem;
  }

  .cal-event-desc {
    font-size: 0.8rem;
  }

  .cal-footer {
    padding: 0.6rem 0.8rem;
  }

  /* Obsazenost – stats na jednom sloupci */
  .occupancy-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .stat-card {
    padding: 1.2rem 0.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .occupancy-legend {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
  }

  /* Plot mapa – horizontální scroll */
  .plot-map-wrapper {
    padding: 0.8rem;
  }

  /* Modal – plná šířka */
  .plot-modal-content {
    padding: 1.8rem 1.4rem 1.5rem;
    margin: 0 0.5rem;
    max-width: 100%;
  }

  .plot-modal-title {
    font-size: 1.8rem;
  }

  /* Zona grid – sloupec na mobilu */
  .zona-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .zona-card {
    padding: 1.4rem 1.2rem;
  }

  .zona-intro-card {
    padding: 1.4rem 1.2rem;
  }

  /* Formuláře mockup – plná šířka grid */
  .form-mockup {
    padding: 1.4rem 1.2rem 1.2rem;
  }

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

  .form-mockup-title {
    font-size: 1.1rem;
  }

  .form-mockup-desc {
    font-size: 0.82rem;
  }

  .form-mockup-radio {
    font-size: 0.82rem;
  }

  .form-mockup-submit {
    width: 100%;
    text-align: center;
  }

  /* Obecná content section */
  .content-section {
    padding: 3rem 1.2rem;
  }

  .content-section-alt {
    padding: 3rem 1.2rem;
  }

  .section-title {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  /* CTA section */
  .cta-inner {
    padding: 2.5rem 1.5rem;
  }

  .cta-inner h2 {
    font-size: 1.5rem;
  }

  /* Nav-cta-group – skrytá přes celou mobilní šířku */
  .nav-cta-group {
    display: none;
  }

  /* Footer na mobilu */
  .footer {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .events-section {
    padding: 2.5rem 1rem;
  }

  .hero.hero-sub .hero-headline {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .occupancy-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .cal-event-dot {
    width: 8px;
    height: 8px;
    margin-top: 4px;
  }

  .cal-event-body strong {
    font-size: 0.8rem;
  }

  .cal-event-time {
    font-size: 0.72rem;
  }

  .cal-event-desc {
    font-size: 0.75rem;
  }

  .zona-card-icon {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .form-mockup-file {
    flex-direction: column;
    text-align: center;
    padding: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   SUBMENU – dropdown pod „Zahrady" (Obsazenost + Zahradní servis)
═══════════════════════════════════════════════════════════════════════ */
.has-submenu {
  position: relative;
}

.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.submenu-arrow {
  font-size: 0.6rem;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}

.submenu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  border-radius: 4px;
  z-index: 1001;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-submenu:hover .submenu-arrow {
  transform: rotate(180deg);
}

.submenu li {
  margin: 0;
  padding: 0;
}

.submenu a {
  display: block;
  padding: 0.7rem 1.4rem;
  color: var(--c-text) !important;
  white-space: nowrap;
  font-size: 0.78rem !important;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: none;
}

.submenu a::after {
  display: none !important;
}

.submenu a:hover {
  background: var(--c-light);
  color: var(--c-green) !important;
}

.submenu a.active {
  color: var(--c-green) !important;
  background: var(--c-light);
}

@media (max-width: 768px) {
  .submenu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    margin-top: 1rem;
    min-width: 0;
  }

  .submenu li {
    text-align: center;
    margin: 0.8rem 0;
  }

  .submenu a {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 1.1rem !important;
    letter-spacing: 0;
    padding: 0.3rem 0;
  }

  .submenu a:hover,
  .submenu a.active {
    background: transparent;
    color: var(--c-green-light) !important;
  }

  .has-submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .submenu-arrow {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   INTERAKTIVNÍ PLÁNEK — schematický vektorový SVG (z PDF DPZ 05/2026)
═══════════════════════════════════════════════════════════════════════ */
.plot-interactive-wrapper {
  margin: 3rem 0 2rem;
  background: #FAFAF7;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  overflow: hidden;
  padding: 1.5rem 1.5rem 0;
}

.plot-svg {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
}

.plot-marker {
  cursor: pointer;
  pointer-events: bounding-box;
}

.plot-marker-rect {
  stroke-width: 0.6;
  fill-opacity: 0.55;
  transition: fill-opacity 0.18s ease, stroke-width 0.18s ease;
}

.plot-marker-num {
  font-family: 'Sora', sans-serif;
  font-size: 5.5px;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  text-anchor: middle;
  dominant-baseline: central;
}

/* Hover — zvýraznit parcelu */
.plot-marker:hover .plot-marker-rect {
  fill-opacity: 0.85;
  stroke-width: 1.2;
}
.plot-marker:hover .plot-marker-num {
  font-size: 7px;
}

/* Stavy — výplň + obrys */
.plot-marker.plot-free .plot-marker-rect {
  fill: #5A9E73;
  stroke: #2D5C42;
}
.plot-marker.plot-free .plot-marker-num {
  fill: #FFFFFF;
}

.plot-marker.plot-reserved .plot-marker-rect {
  fill: #E8C547;
  stroke: #8A6E13;
}
.plot-marker.plot-reserved .plot-marker-num {
  fill: #1A1A1A;
}

.plot-marker.plot-rented .plot-marker-rect {
  fill: #C44536;
  stroke: #762519;
}
.plot-marker.plot-rented .plot-marker-num {
  fill: #FFFFFF;
}

.plot-plan-caption {
  padding: 0.9rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--c-muted);
  font-style: italic;
  text-align: center;
  border-top: 1px solid var(--c-border);
  background: var(--c-light);
  margin: 0;
}

@media (max-width: 768px) {
  .plot-marker-num {
    font-size: 8.5px;
  }
  .plot-marker-circle {
    stroke-width: 1.5;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   PLOT GRID — interaktivní přehled 83 parcel po sekcích
═══════════════════════════════════════════════════════════════════════ */
.plot-grid-wrapper {
  margin-top: 3rem;
}

.plot-grid-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.4rem;
}

.plot-grid-sub {
  color: var(--c-muted);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}

.plot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
}

.plot-section-title {
  grid-column: 1 / -1;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 1.2rem 0 0.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border);
}

.plot-section-title:first-child {
  margin-top: 0;
}

.plot-card {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: 4px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0.4rem;
  position: relative;
  overflow: hidden;
}

.plot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0.12;
  z-index: 0;
}

.plot-card > * {
  position: relative;
  z-index: 1;
}

.plot-card-num {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
}

.plot-card-size {
  font-size: 0.7rem;
  color: var(--c-muted);
  font-weight: 500;
}

.plot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.08);
}

.plot-card.plot-free {
  color: var(--c-green-light);
  border-color: var(--c-green-light);
}

.plot-card.plot-reserved {
  color: #E8C547;
  border-color: #E8C547;
}

.plot-card.plot-rented {
  color: #C44536;
  border-color: #C44536;
}

@media (max-width: 768px) {
  .plot-grid {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 0.4rem;
  }
  .plot-card {
    padding: 0.3rem;
  }
  .plot-card-num {
    font-size: 0.9rem;
  }
  .plot-card-size {
    font-size: 0.62rem;
  }
}



/* ═══════════════════════════════════════════════════════════════════════════════
   CTA SPLIT — dva rovnocenné kontaktní bloky (Zahrady + Usedlost), v2.0 korektury
   ═══════════════════════════════════════════════════════════════════════════════ */

.cta-split {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.cta-col h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  color: white;
  margin-bottom: 1.2rem;
}

.cta-col p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.cta-col .btn {
  margin-top: auto;
}

@media (max-width: 768px) {
  .cta-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════════
   AKTUALITY + DETAIL ČLÁNKU (CMS)
   ═══════════════════════════════════════════════════════════════════════════════ */

.article-page { background: var(--c-white); }
.nav.scrolled { position: sticky; }

.article-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 9rem 2rem 5rem;
}

.aktuality-main { max-width: 1100px; }

.article-head { margin-bottom: 2.2rem; }
.article-back {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--c-muted);
  text-decoration: none;
  margin-bottom: 1.6rem;
}
.article-back:hover { color: var(--c-green); }
.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--c-muted);
  margin-bottom: 0.9rem;
}
.article-tag, .aktualita-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-green);
  background: #EAF3EE;
  padding: 0.2rem 0.7rem;
  border-radius: 99px;
}
.article-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  color: var(--c-text);
}
.article-hero-img { margin: 0 0 2rem; }
.article-hero-img img { width: 100%; height: auto; border-radius: 10px; }

.article-content { font-size: 1.02rem; line-height: 1.85; color: var(--c-text); }
.article-content .article-perex { font-size: 1.15rem; font-weight: 500; color: var(--c-dark); }
.article-content p { margin: 0 0 1.1rem; }
.article-content h2 { font-family: var(--font-display); font-size: 1.45rem; margin: 2rem 0 0.8rem; }
.article-content h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 1.6rem 0 0.6rem; }
.article-content ul { list-style: disc; margin: 0 0 1.1rem 1.4rem; }
.article-content li { margin-bottom: 0.35rem; }
.article-content a { color: var(--c-green); }
.article-img { margin: 1.6rem 0; }
.article-img img, .article-gallery img { width: 100%; height: auto; border-radius: 8px; display: block; }
.article-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.6rem 0;
}
.article-gallery img { aspect-ratio: 4 / 3; object-fit: cover; }

/* výpis aktualit */
.aktuality-intro { color: var(--c-muted); margin-top: 0.6rem; }
.aktuality-empty { color: var(--c-muted); padding: 2rem 0; }
.aktuality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}
.aktualita-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--c-text);
  background: var(--c-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.aktualita-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.09); }
.aktualita-card.featured { flex-direction: row; }
.aktualita-card.featured .aktualita-img { flex: 1.2; }
.aktualita-card.featured .aktualita-body { flex: 1; }
.aktualita-img { aspect-ratio: 16 / 9; overflow: hidden; }
.aktualita-card.featured .aktualita-img { aspect-ratio: auto; min-height: 280px; }
.aktualita-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aktualita-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; }
.aktualita-meta { display: flex; gap: 0.8rem; align-items: center; font-size: 0.78rem; color: var(--c-muted); }
.aktualita-body h3 { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.35; color: var(--c-dark); }
.aktualita-card.featured .aktualita-body h3 { font-size: 1.45rem; }
.aktualita-body p { font-size: 0.92rem; line-height: 1.65; color: var(--c-muted); }
.aktualita-more { font-family: var(--font-display); font-size: 0.83rem; font-weight: 600; color: var(--c-green); margin-top: auto; }

/* kalendář — prázdný stav */
.cal-empty { padding: 2.2rem 1.5rem; text-align: center; color: var(--c-muted); font-size: 0.95rem; }

@media (max-width: 820px) {
  .aktualita-card.featured { flex-direction: column; }
  .article-main { padding: 7rem 1.2rem 3.5rem; }
}

/* patička — odkaz na aktuality */
.footer-aktuality { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
.footer-aktuality:hover { color: #fff; }


/* ═══════════════════════════════════════════════════════════════════════════════
   GALERIE ETAP (Historie) + CMS lightbox + kontaktní formulář
   ═══════════════════════════════════════════════════════════════════════════════ */

.era-gallery {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.9rem 0 0.4rem;
  scrollbar-width: thin;
}
.era-gallery img {
  height: 86px;
  width: auto;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.era-gallery img:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }

.cms-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(15, 15, 15, 0.92);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.8rem; padding: 2rem;
}
.cms-lightbox img { max-width: 92vw; max-height: 80vh; border-radius: 8px; }
.cms-lightbox .cms-lb-cap { color: rgba(255,255,255,0.85); font-size: 0.9rem; text-align: center; }
.cms-lightbox button {
  position: absolute; background: none; border: none; color: #fff;
  font-size: 2.2rem; cursor: pointer; opacity: 0.75; padding: 1rem;
}
.cms-lightbox button:hover { opacity: 1; }
.cms-lb-close { top: 0.5rem; right: 1rem; }
.cms-lb-prev { left: 0.6rem; top: 50%; transform: translateY(-50%); }
.cms-lb-next { right: 0.6rem; top: 50%; transform: translateY(-50%); }

/* kontaktní formulář — stav odeslání */
.form-status { margin-top: 1rem; font-size: 0.95rem; display: none; }
.form-status.ok { display: block; color: var(--c-green); }
.form-status.err { display: block; color: #C44536; }
.form-select { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--c-border); border-radius: 6px; font-size: 0.95rem; font-family: var(--font-body); background: var(--c-white); }


/* ═══ Sbalená galerie (Usedlost) — fixní výška + rozbalení ═══ */
.gallery-grid.collapsed { max-height: 640px; overflow: hidden; position: relative; }
.gallery-grid.collapsed::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 130px;
  background: linear-gradient(transparent, var(--c-white));
  pointer-events: none;
}
.gallery-expand {
  display: block; margin: 0 auto 1.8rem;
}
.gallery-collapse-bottom {
  display: block; margin: 1.4rem auto 0;
}
.gallery-collapse-bottom[hidden] { display: none; }

/* ═══ Google Calendar embed ═══ */
.gcal-embed { border: 1px solid var(--c-border); border-radius: 10px; overflow: hidden; background: var(--c-white); }
.gcal-embed iframe { display: block; width: 100%; height: 620px; border: 0; }


/* ═══ Kontakt — formulář nahoře, dlaždice pod ním ═══ */
.contact-stack { max-width: 760px; margin: 0 auto; }
.contact-form-head { text-align: center; margin-bottom: 2rem; }
.contact-form-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 0.8rem; }
.contact-form-head p { color: var(--c-muted); max-width: 620px; margin: 0 auto; }
.contact-stack .contact-form { margin-bottom: 3rem; }
.contact-stack .info-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.contact-stack .reveal > .section-label { display: none; }
.contact-stack > .reveal > p:first-of-type { text-align: center; color: var(--c-muted); }


/* ═══ Horní menu na střed (desktop) — po odstranění CTA tlačítka ═══ */
@media (min-width: 961px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* kontrolní otázka ve formuláři */
.form-captcha label { display:block; font-size: 0.85rem; color: var(--c-muted); margin-bottom: 0.4rem; }
