/* ═══════════════════════════════════════════════════════════════════
   Golf Club Chateau St. Havel – Redesign 2026
   Design: seriózní, čistý, honosný
   Paleta: tmavá zelená + champagne zlatá + krémová
   Typografie: Cormorant Garamond (nadpisy) + Inter (text)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS Reset & Variables ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors */
  --green-900:  #0F2018;
  --green-800:  #1C3829;   /* primární tmavá zelená */
  --green-700:  #2A5039;
  --green-600:  #3D7A58;
  --green-100:  #EBF2EC;
  --green-50:   #F3F8F4;

  /* Zlatá */
  --gold:       #C9A84C;
  --gold-light: #DEAD68;
  --gold-dark:  #A88A34;
  --gold-pale:  #F5EDD8;

  /* Neutral */
  --cream:      #F8F5EE;   /* teplé pozadí */
  --stone:      #E8E3D8;
  --text:       #1A1A1A;
  --text-mid:   #4A5568;
  --text-light: #8B9099;
  --white:      #FFFFFF;
  --border:     #DDD8CC;

  /* Utility */
  --radius:     4px;
  --radius-lg:  10px;
  --shadow-sm:  0 2px 8px rgba(15,32,24,.07);
  --shadow-md:  0 6px 24px rgba(15,32,24,.12);
  --shadow-lg:  0 16px 48px rgba(15,32,24,.18);
  --transition: .25s ease;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:      1280px;
  --header-h:   80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Typografie ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
  color: var(--green-800);
}

/* ─── Utility ────────────────────────────────────────────────────── */
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 24px;
}
.gold-line.center { margin: 16px auto 24px; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--green-800);
  line-height: 1.2;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.section-header.center .gold-line { margin: 16px auto 24px; }

/* Tlačítka */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-900);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(201,168,76,.5);
}
.btn-outline-gold:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-700);
}
.btn-outline-green:hover {
  background: var(--green-800);
  color: var(--white);
}

.btn-green {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}
.btn-green:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ─── TOP BAR ────────────────────────────────────────────────────── */
.topbar {
  background: var(--green-900);
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  letter-spacing: .03em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left  { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.75); transition: var(--transition); }
.topbar a:hover { color: var(--gold-light); }
.topbar i { margin-right: 6px; color: var(--gold); opacity: .8; }

/* ─── HEADER / NAV ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Průhledný header nad hero – topbar se odečte automaticky */
body.has-hero .site-header {
  background: transparent;
  border-bottom-color: rgba(255,255,255,.1);
}
body.has-hero .site-header.scrolled,
.site-header.scrolled {
  background: var(--green-900);
  border-bottom-color: rgba(201,168,76,.2);
  box-shadow: 0 4px 32px rgba(15,32,24,.35);
}

/* Stránky bez hero – vždy plný header */
body:not(.has-hero) .site-header {
  background: var(--green-900);
  border-bottom-color: rgba(201,168,76,.2);
  box-shadow: 0 4px 24px rgba(15,32,24,.2);
  position: sticky;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Logo */
.site-logo img { height: 52px; width: auto; transition: opacity var(--transition); }
.site-logo:hover img { opacity: .85; }

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 2px; }

.main-nav > a,
.nav-dropdown > a {
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.main-nav > a:hover,
.nav-dropdown > a:hover,
.main-nav > a.active,
.nav-dropdown > a.active {
  color: var(--gold-light);
}
.main-nav > a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 1px;
  background: var(--gold);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  vertical-align: middle;
  opacity: .6;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-900);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(15,32,24,.5);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform .2s ease;
  transform: translateX(-50%) translateY(-8px);
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: var(--transition);
}
.nav-dropdown-menu a:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,.08);
  padding-left: 26px;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--green-900);
  border-left: 1px solid rgba(201,168,76,.25);
  border-top: 1px solid rgba(201,168,76,.25);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-weight: 600;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  white-space: nowrap;
  line-height: 1.3;
}
.header-phone i { color: var(--gold); margin-right: 7px; }
.header-phone small { display: block; font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.45); letter-spacing: .03em; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: none;
  background: none;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

/* ─── MOBILE NAV ─────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  background: var(--green-900);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 20px 32px 28px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold-light); padding-left: 6px; }
.mobile-nav .mobile-cta { margin-top: 20px; display: block; text-align: center; text-transform: uppercase; }

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,32,24,.82) 0%,
    rgba(15,32,24,.55) 55%,
    rgba(15,32,24,.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 0 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 64px;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* ─── QUICK ACCESS BAR ───────────────────────────────────────────── */
.quick-access {
  background: var(--green-800);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-access-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  color: rgba(255,255,255,.8);
  border-right: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
  text-decoration: none;
}
.quick-access-item:last-child { border-right: none; }
.quick-access-item:hover {
  background: rgba(201,168,76,.07);
  color: var(--gold-light);
}
.quick-access-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.quick-access-item:hover .quick-access-icon {
  background: rgba(201,168,76,.2);
}
.quick-access-text h4 {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  color: inherit;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.quick-access-text p {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.3;
}

/* ─── SEKCE – OBECNÉ ─────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--cream); }
.section-dark {
  background: var(--green-800);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,.65); }

/* ─── O AREÁLU (split layout) ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green-800);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,.3);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.about-content .section-label { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 0; }
.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-text h4 {
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 2px;
}
.about-feature-text p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }

/* ─── NEWS CARDS ─────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.news-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--stone);
  position: relative;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.06); }
.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-date {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.news-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green-800);
  line-height: 1.3;
  margin-bottom: 12px;
  flex: 1;
}
.news-card-excerpt {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.news-card-link:hover { color: var(--gold-dark); gap: 10px; }

/* ─── PACKAGES / CENÍK KARTY ─────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}
.package-card:hover { border-color: rgba(201,168,76,.45); }
.package-card:hover::before { opacity: 1; }
.package-card.featured {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.4);
}
.package-card.featured::before { opacity: 1; }

.package-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.package-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}
.package-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 24px;
}
.package-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 4px;
  display: block;
}
.package-price-note {
  font-size: .74rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

/* ─── HOTEL / RESTAURACE / WELLNESS ─────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.partner-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.partner-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.partner-card:hover .partner-card-bg { transform: scale(1.06); }
.partner-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,32,24,.85) 30%, transparent 100%);
}
.partner-card-body {
  position: relative;
  z-index: 1;
  padding: 28px;
  width: 100%;
}
.partner-card-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.partner-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
}
.partner-card-body p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.partner-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  transition: var(--transition);
}
.partner-card:hover .partner-card-arrow {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}

/* ─── CTA BANNER ─────────────────────────────────────────────────── */
.cta-banner {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="%23C9A84C" opacity=".08"/></svg>') repeat;
  background-size: 40px 40px;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── KONTAKT STRIP ──────────────────────────────────────────────── */
.contact-strip {
  background: var(--green-900);
  padding: 20px 0;
  border-top: 1px solid rgba(201,168,76,.15);
}
.contact-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}
.contact-strip-item i { color: var(--gold); font-size: 1rem; }
.contact-strip-item a { color: inherit; transition: var(--transition); }
.contact-strip-item a:hover { color: var(--gold-light); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
  border-top: 1px solid rgba(201,168,76,.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 20px;
  opacity: .9;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: rgba(201,168,76,.15);
  border-color: var(--gold);
  color: var(--gold-light);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact { gap: 14px !important; }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact li i {
  color: var(--gold);
  font-size: .85rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact li span,
.footer-contact li a {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

/* ─── SCROLL TO TOP ──────────────────────────────────────────────── */
#goTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--green-800);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-light);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
#goTopBtn.show { display: flex; }
#goTopBtn:hover {
  background: var(--green-700);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ─── VNITŘNÍ STRÁNKY ────────────────────────────────────────────── */
/* Prostor pod pevným headerem na stránkách bez hero */
body:not(.has-hero) main,
body:not(.has-hero) .page-main {
  padding-top: 0;
}

.page-main {
  padding: 64px 0 96px;
  min-height: 55vh;
}

/* Breadcrumb / page header */
.page-hero {
  background: var(--green-800);
  padding: 80px 0 60px;
  margin-top: 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.06) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  position: relative;
  z-index: 1;
}
.page-hero .section-label { position: relative; z-index: 1; }

.page-main h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green-800);
  margin-bottom: 8px;
  font-weight: 600;
}
.page-main h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--green-800);
  margin-top: 48px;
  margin-bottom: 16px;
}
.page-main h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green-800);
  margin-top: 32px;
  margin-bottom: 12px;
}
.page-main p { color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.page-main ul, .page-main ol { padding-left: 22px; margin-bottom: 18px; color: var(--text-mid); }
.page-main li { list-style: disc; margin-bottom: 8px; line-height: 1.7; }
.page-main ol li { list-style: decimal; }
.page-main a { color: var(--green-700); }
.page-main a:hover { color: var(--gold-dark); text-decoration: underline; }
.page-main table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: .93rem;
}
.page-main th, .page-main td {
  padding: 12px 18px;
  border: 1px solid var(--stone);
  text-align: left;
}
.page-main th { background: var(--cream); font-weight: 600; color: var(--green-800); }
.page-main img { border-radius: var(--radius-lg); margin-bottom: 20px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 640px; margin: 0 auto; }
  .about-badge { right: 0; bottom: -20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .quick-access-grid { grid-template-columns: 1fr 1fr; }
  .quick-access-item:nth-child(2) { border-right: none; }
  .quick-access-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }
  .quick-access-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); border-right: none; }

  .news-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { height: 260px; }

  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .contact-strip .container { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .quick-access-grid { grid-template-columns: 1fr; }
  .quick-access-item { border-right: none !important; border-top: 1px solid rgba(255,255,255,.07) !important; }
  .quick-access-item:first-child { border-top: none !important; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}
