/* ==========================================================================
   AERIS Resort Krkonoše — Design v2 (Modern / Editorial)
   Typography : Raleway (display) + Inter (body)
   Palette    : Midnight Navy · Warm Gold #C3995A · Cream · White
   Concept    : Transparent scrolling nav · split hero · large numbers ·
                editorial whitespace · asymmetric grids
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --ink:          #0F1419; /**/
  --ink-soft:     #171a1e;
  --gold:         #cfb381;
  --gold-light:   #D9B87A;
  --gold-pale:    #F0E4CC;
  --cream:        #F8F6F1;
  --warm:         #EDE9E0;
  --white:        #FDFCF8;
  --border:       #DDD9CF;
  --muted:        #6B7180;
  --blue:         #6B7FB8;
  --dark:         #0F1419;

  --font-h:  'Raleway', sans-serif;
  --font-b:  'Inter', sans-serif;

  --w-full:   1320px;
  --w-text:   760px;

  --nav-h:    72px;

  /* section spacing */
  --s-xl: 9rem;
  --s-lg: 6rem;
  --s-md: 4rem;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ==========================================================================
   Typography helpers
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  line-height: 1.08;
  color: var(--ink);
}

/* Display — extra large, light weight */
.display {
  font-family: var(--font-h);
  font-weight: 200;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.display-md {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.tag {
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.caption {
  font-family: var(--font-b);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.wrap        { max-width: var(--w-full); margin: 0 auto; padding: 0 2.5rem; }
.wrap-narrow { max-width: var(--w-text); margin: 0 auto; padding: 0 2.5rem; }

/* ==========================================================================
   Navigation — sticky, always solid white
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(15,20,25,0.05);
}

.nav-inner {
  width: 100%;
  max-width: var(--w-full);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
  padding-bottom: 3px;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--ink); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

/* Lucide icons — global reset */
[data-lucide], i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
[data-lucide] svg {
  width: 1em; height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* Nav home icon */
.nav-menu a [data-lucide],
.nav-drawer a [data-lucide] { font-size: 1rem; }

/* Contact card icons */
.contact-icon [data-lucide] { font-size: 1rem; }
.contact-icon [data-lucide] svg { stroke: var(--gold); }

/* FAB icons */
.fab [data-lucide] { font-size: 1.15rem; }
.fab [data-lucide] svg { stroke: currentColor; }

/* CTA */
.nav-btn {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.35rem;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2.5rem 2.25rem;
  z-index: 190;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.nav-drawer.open { display: block; opacity: 1; transform: none; pointer-events: auto; }

.nav-drawer ul { list-style: none; display: flex; flex-direction: column; }
.nav-drawer li a {
  display: block; padding: 0.85rem 0;
  font-size: 0.9rem; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.nav-drawer li:last-child a { border-bottom: none; }
.nav-drawer li a:hover { color: var(--gold); }

/* Klientská zóna v mobilním menu */
.nav-drawer li a.nav-btn-drawer {
  margin-top: 0.5rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; border-bottom: none;
  text-align: center;
}
.nav-drawer li a.nav-btn-drawer:hover { background: var(--gold); color: var(--ink); }
.nav-drawer-cta { margin-top: 1.5rem; }
.nav-drawer-cta a {
  display: block; padding: 0.8rem;
  text-align: center;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  border-radius: 2px;
  white-space: nowrap;
}

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #a87f40; color: var(--white); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #2a3844; color: var(--white); }

.btn-ghost { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-ghost-light { background: transparent; border: 1.5px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-ghost-light:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }

.btn-arrow::after { content: '→'; font-weight: 400; }

/* ==========================================================================
   Hero — split screen
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: calc(100vh - var(--nav-h));
}

.hero-left {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 3rem 5rem 3rem;
  position: relative;
}

/* Faint diagonal accent */
.hero-left::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 35%, var(--gold) 65%, transparent 100%);
  opacity: 0.4;
}

.hero-eyebrow {
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 strong {
  font-weight: 700;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(248,246,241,0.62);
  max-width: 420px;
  margin-bottom: 2.75rem;
}

.hero-sub b { color: rgba(248,246,241,0.9); font-weight: 500; }

.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* Hero stat bar */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(248,246,241,0.1);
}

.hero-stat-value {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(248,246,241,0.45);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.35rem;
}

/* Hero right — full image */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Info strip — compact horizontal bar
   ========================================================================== */
.info-strip {
  background: var(--gold);
  padding: 1rem 2.5rem;
  overflow: hidden;
}

.info-strip-inner {
  max-width: var(--w-full);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.info-strip-item {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.info-strip-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.4;
}

/* ==========================================================================
   Numbers — big typographic stats section
   ========================================================================== */
.numbers {
  background: var(--ink);
  padding: var(--s-xl) 2.5rem;
}

.numbers-header {
  text-align: center;
  margin-bottom: 4rem;
}

.numbers-header .tag { color: var(--gold); }

.numbers-header h2 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-top: 1rem;
}

.numbers-grid {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(248,246,241,0.08);
}

.number-cell {
  background: var(--ink);
  padding: 3.5rem 3rem;
  text-align: center;
  transition: background 0.3s ease;
}

.number-cell:hover { background: var(--ink-soft); }

.number-big {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gold);
  display: block;
}

.number-unit {
  font-size: 0.45em;
  font-weight: 400;
  color: var(--gold-light);
  vertical-align: top;
  margin-top: 0.2em;
  display: inline-block;
}

.number-label {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(248,246,241,0.5);
}

.number-desc {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(248,246,241,0.35);
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Features — horizontal icon + text list
   ========================================================================== */
.features {
  background: var(--white);
  padding: var(--s-xl) 2.5rem;
}

.features-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--w-full);
  margin: 0 auto 5rem;
}

.features-intro h2 {
  font-weight: 300;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 1rem;
}

.features-intro h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.features-text {
  padding-top: 2.5rem;
}

.features-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
}

/* Feature list */
.feature-list {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-item {
  padding: 2.5rem;
  border-top: 1px solid var(--border);
  position: relative;
  transition: background 0.2s ease;
}

.feature-item:nth-child(n+2) { border-left: 1px solid var(--border); }
.feature-item:nth-child(n+4) { border-top: 1px solid var(--border); }

.feature-item:hover { background: var(--cream); }

.feature-num {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.875rem;
}

.feature-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ==========================================================================
   Gallery — editorial masonry-style
   ========================================================================== */
.gallery {
  background: var(--cream);
  padding: var(--s-xl) 2.5rem;
}

.gallery-intro {
  max-width: var(--w-full);
  margin: 0 auto 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-intro h2 {
  font-weight: 300;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  letter-spacing: -0.025em;
  margin-top: 0.75rem;
}

.gallery-intro h2 em { font-style: italic; color: var(--gold); }

/* Asymmetric editorial grid */
.gallery-grid {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 380px 280px;
  gap: 0.5rem;
}

.g-item {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.g-item:hover img { transform: scale(1.05); }

/* Layout: item 1 spans 2 rows col 1 */
.g-item-a { grid-column: 1; grid-row: 1 / 3; }
/* item 2: col 2 row 1 */
.g-item-b { grid-column: 2; grid-row: 1; }
/* item 3: col 3 row 1 */
.g-item-c { grid-column: 3; grid-row: 1; }
/* item 4: col 2-3 row 2 */
.g-item-d { grid-column: 2 / 4; grid-row: 2; }

.g-caption {
  position: absolute;
  bottom: 1rem; left: 1.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.7);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.g-item:hover .g-caption { opacity: 1; transform: none; }

/* ==========================================================================
   Investment section — dark, large text
   ========================================================================== */
.invest {
  background: var(--ink-soft);
  padding: var(--s-xl) 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Gold accent bar */
.invest::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}

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

.invest-left .tag { color: var(--gold); margin-bottom: 1.25rem; }

.invest-left h2 {
  color: var(--white);
  font-weight: 200;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.invest-left h2 span {
  display: block;
  font-weight: 800;
  color: var(--gold);
}

.invest-right { padding-top: 1rem; }

.invest-right p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(248,246,241,0.65);
  margin-bottom: 2.5rem;
}

.invest-items { display: flex; flex-direction: column; gap: 1.5rem; }

.invest-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(248,246,241,0.08);
}
.invest-item:last-child { border-bottom: none; padding-bottom: 0; }

.invest-item-mark {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.invest-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(248,246,241,0.9);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.invest-item-text span {
  font-size: 0.82rem;
  color: rgba(248,246,241,0.45);
  line-height: 1.55;
}

/* ==========================================================================
   Herbs — clean table style on white
   ========================================================================== */
.herbs {
  background: var(--white);
  padding: var(--s-xl) 2.5rem;
}

.herbs-head {
  max-width: var(--w-full);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.herbs-head h2 {
  font-weight: 300;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  letter-spacing: -0.025em;
  margin-top: 0.75rem;
}

.herbs-head h2 em { font-style: italic; color: var(--gold); }

.herbs-head p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

/* Herb rows — table-like */
.herbs-table {
  max-width: var(--w-full);
  margin: 0 auto;
}

.herb-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr 1fr 1fr;
  gap: 0 3rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
  cursor: default;
}

.herb-row:first-child { border-top: 1px solid var(--border); }
.herb-row:hover { background: var(--cream); margin: 0 -2.5rem; padding: 1.5rem 2.5rem; }

.herb-letter {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.herb-name {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}

.herb-latin {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.herb-function {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Campanula highlight */
.campanula-bar {
  max-width: var(--w-full);
  margin: 3.5rem auto 0;
  background: var(--ink);
  border-left: 3px solid var(--blue);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border-radius: 0 3px 3px 0;
}

.campanula-bar p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--muted);
}

.campanula-bar p strong {
  color: var(--blue);
  font-style: italic;
  font-family: var(--font-h);
}

/* ==========================================================================
   Operator — split: image left, text right
   ========================================================================== */
.operator {
  padding: var(--s-xl) 0;
  background: var(--cream);
  overflow: hidden;
}

.operator-inner {
  max-width: var(--w-full);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.operator-img {
  aspect-ratio: 5/4;
  background-image:
    linear-gradient(to right, transparent 70%, rgba(242,239,231,0.8) 100%),
    url('img/harrachov.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  position: relative;
}

.operator-img-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
}

.operator-img-tag .caption { color: var(--gold-light); letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.65rem; }

.operator-img-tag p {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  margin-top: 0.25rem;
}

.operator-text h2 {
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
}

.operator-text h2 em { font-style: italic; color: var(--gold); }

.operator-text p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 1.5rem 0;
}

.operator-quote {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
}

.scores {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.score-val {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.025em;
}

.score-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.3rem;
}

/* ==========================================================================
   Wellness — full bleed
   ========================================================================== */
.wellness {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.wellness-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(100deg, rgba(15,20,25,0.92) 0%, rgba(15,20,25,0.55) 45%, rgba(15,20,25,0.2) 70%, transparent 100%),
    url('img/wellness-bazen.jpg');
  background-size: cover;
  background-position: center;
}

.wellness-content {
  position: relative; z-index: 1;
  max-width: var(--w-full);
  width: 100%;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  color: var(--white);
}

.wellness-text { max-width: 500px; }

.wellness-text h2 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  letter-spacing: -0.025em;
  margin-top: 0.75rem;
}

.wellness-text h2 em { font-style: italic; color: var(--gold-light); }

.wellness-amenities {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 2rem 0;
  font-size: 0.88rem;
  color: rgba(248,246,241,0.65);
  font-family: var(--font-h);
  font-weight: 300;
  font-style: italic;
}

.wellness-amenities span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wellness-amenities span::before {
  content: '';
  width: 1.25rem; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ==========================================================================
   CTA section
   ========================================================================== */
.cta-section {
  background: var(--white);
  padding: var(--s-xl) 2.5rem;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 4rem;
  background: linear-gradient(to bottom, transparent, var(--border));
}

.cta-tag { display: block; margin-bottom: 1.25rem; }

.cta-section h2 {
  font-weight: 200;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.cta-section h2 strong {
  font-weight: 800;
  color: var(--gold);
}

.cta-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.cta-form {
  display: flex;
  gap: 0.5rem;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-form input {
  flex: 1 1 200px;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-b);
  font-size: 0.93rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.2s;
}

.cta-form input:focus { outline: none; border-color: var(--gold); }
.cta-form input::placeholder { color: var(--muted); }

.cta-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--ink);
  padding: 4rem 2.5rem 2rem;
}

.footer-grid {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,246,241,0.08);
}

.footer-logo { height: 52px; width: auto; margin-bottom: 1.25rem; }

.footer-about p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(248,246,241,0.45);
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.3);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col li a {
  font-size: 0.85rem;
  color: rgba(248,246,241,0.6);
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--gold-light); }

.footer-col li span {
  font-size: 0.85rem;
  color: rgba(248,246,241,0.45);
}

.footer-bottom {
  max-width: var(--w-full);
  margin: 1.75rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: rgba(248,246,241,0.28);
}

/* ==========================================================================
   FABs
   ========================================================================== */
.fab-group {
  position: fixed;
  right: 1.5rem;
  bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 100;
}

.fab {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 18px rgba(15,20,25,0.25);
  transition: all 0.2s ease;
  text-decoration: none;
}

.fab:hover { background: var(--gold); color: var(--ink); transform: scale(1.08); }
.fab.wa { background: #25D366; color: #fff; }
.fab.wa:hover { background: #128C7E; color: #fff; }

/* ==========================================================================
   Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,20,25,0.55);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }

.modal-box {
  background: var(--white);
  width: calc(100% - 2rem);
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  border-radius: 3px;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.28s ease;
  box-shadow: 0 40px 80px rgba(15,20,25,0.25);
}
.modal-backdrop.open .modal-box { transform: none; }

.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: none; border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--cream); color: var(--ink); }

.modal-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.6; }

.mform { display: flex; flex-direction: column; gap: 1rem; }

.mform input {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  background: var(--white);
  transition: border-color 0.2s;
}
.mform input:focus { outline: none; border-color: var(--gold); }

.mform-check {
  display: flex; gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  align-items: flex-start;
}
.mform-check input { width: auto; margin-top: 0.15rem; }

.mform button { margin-top: 0.25rem; width: 100%; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeUp 0.9s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

/* ==========================================================================
   Responsive — 1024px
   ========================================================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 2rem 4rem; }
  .hero-right { min-height: 50vw; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px 260px;
  }
  .g-item-a { grid-column: 1 / -1; grid-row: 1; }
  .g-item-b { grid-column: 1; grid-row: 2; }
  .g-item-c { grid-column: 2; grid-row: 2; }
  .g-item-d { grid-column: 1 / -1; grid-row: 3; }

  .invest-inner { grid-template-columns: 1fr; gap: 3rem; }
  .operator-inner { grid-template-columns: 1fr; gap: 3rem; }
  .herbs-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .herb-row { grid-template-columns: 2rem 1fr 1fr; gap: 0 2rem; }
  .herb-function { display: none; }
  .features-top { grid-template-columns: 1fr; gap: 2rem; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(n+2) { border-left: none; }
  .feature-item:nth-child(even) { border-left: 1px solid var(--border); }
}

/* ==========================================================================
   Responsive — 768px
   ========================================================================== */
@media (max-width: 768px) {
  :root { --nav-h: 60px; --s-xl: 5rem; --s-lg: 3.5rem; }

  .nav { padding: 0 1.5rem; }
  .nav-logo img { height: 42px; }
  .nav-menu { display: none; }
  .nav-btn.desktop-only { display: none; }
  .nav-burger { display: flex; }
  .nav-drawer { display: block; }

  .hero-left { padding: 4rem 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-right { min-height: 60vw; }
  .hero-scroll { display: none; }

  .info-strip-inner { gap: 1.5rem; }
  .numbers-grid { grid-template-columns: 1fr; background: transparent; gap: 2px; }
  .number-cell { background: var(--ink-soft); }

  .feature-list { grid-template-columns: 1fr; }
  .feature-item:nth-child(even) { border-left: none; }
  .feature-item:nth-child(n+2) { border-left: none; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 240px);
  }
  .g-item-a, .g-item-b, .g-item-c, .g-item-d {
    grid-column: 1;
    grid-row: auto;
  }

  .scores { flex-direction: column; gap: 1.5rem; }

  .herb-row { grid-template-columns: 2rem 1fr; gap: 0 1rem; }
  .herb-latin { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .wrap { padding: 0 1.5rem; }
  .wrap-narrow { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-form { flex-direction: column; }
  .cta-form input { flex: none; width: 100%; }
}

/* ==========================================================================
   Shared page-level helpers
   ========================================================================== */

/* Section eyebrow badge (bordered) */
.section-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* Success / availability badge */
.badge-avail {
  background: #1d8a50;
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Mono-style numbers */
.mono {
  font-family: ui-monospace, 'Cascadia Code', 'JetBrains Mono', monospace;
  font-weight: 600;
}

/* Page hero — full-bleed with overlay */
.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative; z-index: 1;
  max-width: var(--w-full);
  margin: 0 auto;
  padding: 5rem 2.5rem 4.5rem;
  width: 100%;
}

.page-hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.page-hero h1 {
  font-family: var(--font-h);
  color: var(--white);
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin-bottom: 1.5rem;
}

.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }

.page-hero-sub {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(248,246,241,0.8);
  margin-bottom: 2.5rem;
}

/* Stat strip inside page hero */
.page-hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,169,97,0.3);
}

.page-hero-stat-num {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.page-hero-stat-lab {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.55);
  font-weight: 500;
}

/* Generic section spacing */
.pg-section { padding: 7rem 2.5rem; }
.pg-section-inner { max-width: var(--w-full); margin: 0 auto; }
.pg-section-header { max-width: 820px; margin: 0 auto 5rem; text-align: center; }

.pg-section-header h2 {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.disclaimer {font-size: 0.68rem;}
.pg-section-header h2 em { font-style: italic; color: var(--gold); }

.pg-section-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 840px;
  margin: 0 auto;
}

.pg-section-desc { max-width: 820px; margin: 0 auto 5rem; text-align: center; }

.pg-section-desc p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white);
  max-width: 840px;
  margin: 0 auto;
}

/* Footer CTA — green dark band */
.footer-cta-band {
  background: var(--ink-soft);
  padding: 5rem 2.5rem;
  text-align: center;
  color: var(--white);
}

.footer-cta-band h2 {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(1.875rem, 3vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-cta-band h2 em { font-style: italic; color: var(--gold-light); }

.footer-cta-band p {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: rgba(248,246,241,0.65);
  line-height: 1.7;
}

.footer-cta-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   RESORT PAGE (resort.html)
   ========================================================================== */

/* Hero */
.rs-hero-bg {
  background-image:
    linear-gradient(180deg, rgba(15,20,25,0.45) 0%, rgba(15,20,25,0.62) 55%, rgba(15,20,25,0.96) 100%),
    url('../img/sunset-leto.png');
}

/* Six herbs grid */
.herbs-section-dark {
  background: var(--ink);
  padding: var(--s-xl) 2.5rem;
  color: var(--white);
}

.herbs-section-dark .pg-section-header h2,
.herbs-section-dark .pg-section-header p { color: rgba(248,246,241,0.75); }
.herbs-section-dark .pg-section-header h2 { color: var(--white); }

.rs-herbs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.rs-herb-card {
  position: relative;
  padding: 2.5rem;
  border: 1px solid rgba(201,169,97,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.rs-herb-card:hover {
  background: rgba(201,169,97,0.05);
  border-color: var(--gold);
}

.rs-herb-card.flagship {
  background: linear-gradient(135deg, rgba(195,153,90,0.12) 0%, rgba(195,153,90,0.03) 100%);
  border-color: var(--gold);
}

.rs-herb-flag-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--gold); color: var(--ink);
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px;
}

.rs-herb-img {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 170px; height: 170px;
} 

.rs-herb-letter {
  font-family: var(--font-h);
  font-size: 3.5rem; font-weight: 800;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.4rem;
}

.rs-herb-name {
  font-family: var(--font-h);
  font-size: 2rem; font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1; margin-bottom: 0.2rem;
}

.rs-herb-latin {
  font-size: 0.85rem; font-style: italic;
  color: var(--gold-light); margin-bottom: 0.5rem;
}

.rs-herb-czech {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(248,246,241,0.5); margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,169,97,0.18);
}

.rs-herb-feature {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.5rem 0; font-size: 0.88rem; line-height: 1.55;
  color: rgba(248,246,241,0.75);
}

.rs-herb-feature-label {
  flex-shrink: 0; width: 80px;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; padding-top: 0.1rem;
}

.rs-herb-feature em { font-style: italic; color: var(--gold-light); font-family: var(--font-h); }

/* Garden split */
.rs-garden {
  background: var(--cream); padding: 0;
}

.rs-garden-flex {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 680px;
}

.rs-garden-image {
  background-image:
    linear-gradient(90deg, rgba(15,20,25,0) 60%, rgba(242,239,231,0.4) 100%),
    url('../img/lokalita-5.jpg');
  background-size: cover; background-position: center;
}

.rs-garden-text {
  padding: 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}

.rs-garden-text h2 {
  font-family: var(--font-h); font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.02em; margin-bottom: 1.25rem;
}

.rs-garden-text h2 em { font-style: italic; color: var(--gold); }

.rs-garden-text p {
  font-size: 1rem; line-height: 1.75; color: var(--muted); margin-bottom: 1.25rem;
}

.rs-garden-phases {
  margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}

.rs-garden-phase {
  padding: 1.5rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 4px;
}

.rs-garden-phase-label {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.5rem;
}

.rs-garden-phase h4 {
  font-family: var(--font-h); font-size: 1.15rem;
  font-style: italic; font-weight: 300; margin-bottom: 0.4rem;
}

.rs-garden-phase p {
  font-size: 0.83rem; line-height: 1.55; color: var(--muted); margin: 0;
}

/* Air / climatic spa */
.rs-air { background: var(--white); padding: var(--s-xl) 2.5rem; }

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

.rs-air-card {
  background: var(--cream); padding: 2.75rem 2.25rem;
  border: 1px solid var(--border); border-radius: 4px;
}

.rs-air-num {
  font-family: var(--font-h); font-size: 3.5rem;
  color: var(--gold); line-height: 1; font-weight: 800; margin-bottom: 0.4rem;
}

.rs-air-unit {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem;
}

.rs-air-card h3 {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 400;
  margin-bottom: 0.75rem;
}

.rs-air-image {
  background-image:
    linear-gradient(90deg, rgba(15,20,25,0) 60%, rgba(242,239,231,0.4) 100%),
    url('../img/lokalita-6.jpg');
  background-size: cover; background-position: center;
}

.rs-air-card h3 em { font-style: italic; color: var(--gold); }
.rs-air-card p { font-size: 0.93rem; line-height: 1.7; color: var(--muted); }

/* Wellness procedures grid */
.rs-wellness-section { background: var(--ink); padding: var(--s-xl) 2.5rem; }
.rs-wellness-section .pg-section-header h2 { color: var(--white); }
.rs-wellness-section .pg-section-header p { color: rgba(248,246,241,0.65); }

.rs-wellness-intro {
  max-width: 820px; margin: 0 auto 4rem;
  padding: 2rem 2.5rem;
  background: rgba(248,246,241,0.04);
  border-left: 3px solid var(--gold); border-radius: 0 3px 3px 0;
}

.rs-wellness-intro h3 {
  font-family: var(--font-h); font-size: 1.4rem; font-style: italic; font-weight: 300;
  color: var(--gold-light); margin-bottom: 0.75rem;
}

.rs-wellness-intro p {
  font-size: 0.95rem; line-height: 1.65; color: rgba(248,246,241,0.8);
}

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

.rs-wp-card {
  padding: 2rem 1.5rem;
  background: rgba(248,246,241,0.03);
  border: 1px solid rgba(201,169,97,0.18);
  border-radius: 4px; text-align: center;
}

.rs-wp-icon {
  font-family: var(--font-h); font-size: 1.6rem; font-style: italic;
  color: var(--gold); margin-bottom: 1rem;
}

.rs-wp-card h4 {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.5rem;
}

.rs-wp-card p { font-size: 0.83rem; line-height: 1.55; color: rgba(248,246,241,0.65); }

/* Campanula section */
.rs-campanula {
  background: var(--ink); padding: 9rem 2.5rem;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(201,169,97,0.12);
}

.rs-campanula::before {
  content: '';
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(107,127,184,0.1) 0%, transparent 55%);
  pointer-events: none;
}

.rs-campanula-inner {
  position: relative;
  max-width: var(--w-full); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.rs-campanula-symbol {
  font-family: var(--font-h); font-size: 3.5rem; font-style: italic;
  color: var(--blue); margin-bottom: 1rem;
}

.rs-campanula-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(107,127,184,0.9); margin-bottom: 1.5rem; font-weight: 600;
}

.rs-campanula-left h2 {
  font-family: var(--font-h); color: var(--white); font-weight: 300;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.08; margin-bottom: 1.75rem;
}

.rs-campanula-left h2 em { font-style: italic; color: var(--blue); }

.rs-campanula-left p {
  font-size: 1rem; line-height: 1.7;
  color: rgba(248,246,241,0.75); margin-bottom: 1.25rem;
}

.rs-campanula-pillars { display: flex; flex-direction: column; gap: 1rem; }

.rs-campanula-pillar {
  padding: 1.5rem 1.75rem;
  background: rgba(107,127,184,0.08);
  border-left: 3px solid var(--blue); border-radius: 0 3px 3px 0;
}

.rs-campanula-pillar h4 {
  font-family: var(--font-h); font-style: italic; font-weight: 300;
  font-size: 1.2rem; color: rgba(107,127,184,0.9); margin-bottom: 0.4rem;
}

.rs-campanula-pillar p {
  font-size: 0.88rem; line-height: 1.55; color: rgba(248,246,241,0.7); margin: 0;
}

/* Tagline finale */
.rs-tagline {
  background: var(--ink); padding: 8rem 2.5rem; text-align: center;
  border-top: 1px solid rgba(201,169,97,0.12);
}

.rs-tagline-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem; font-weight: 600;
}

.rs-tagline-display {
  font-family: var(--font-h); font-style: italic; font-weight: 200;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--gold-light); line-height: 1.15;
}

.rs-tagline-display .accent { color: var(--gold); display: block; }
.rs-tagline-display span { display: block; }

.rs-tagline-en {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(201,169,97,0.18);
  font-family: var(--font-h); font-style: italic; font-weight: 300;
  font-size: 1.1rem; color: rgba(248,246,241,0.45); letter-spacing: 0.05em;
}

/* Resort responsive */
@media (max-width: 900px) {
  .rs-herbs-grid { grid-template-columns: 1fr; }
  .rs-garden-flex { grid-template-columns: 1fr; }
  .rs-garden-image { min-height: 320px; }
  .rs-garden-text { padding: 4rem 2rem; }
  .rs-garden-phases { grid-template-columns: 1fr; }
  .rs-air-grid { grid-template-columns: 1fr; }
  .rs-wp-grid { grid-template-columns: repeat(2, 1fr); }
  .rs-campanula-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .rs-wp-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRODEJ JEDNOTEK (prodej-jednotek.html)
   ========================================================================== */

/* Page hero — interior image */
.pj-hero-bg {
  background-image:
    linear-gradient(180deg, rgba(15,20,25,0.5) 0%, rgba(15,20,25,0.65) 50%, rgba(15,20,25,0.96) 100%),
    url('../vizualizace/PP-Ap433-Cam01.jpg');
}

/* Typology cards */
.pj-typology {
  background: var(--cream); padding: var(--s-xl) 2.5rem;
}

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

.pj-type-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
}

.pj-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15,20,25,0.1);
  border-color: var(--gold);
}

.pj-type-card.featured {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(195,153,90,0.2);
}

.pj-type-head {
  background: var(--ink); padding: 2rem;
  position: relative;
}

.pj-type-card.featured .pj-type-head { background: var(--gold-pale); }

.pj-type-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: var(--ink);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 2px;
}

.pj-type-letter {
  font-family: var(--font-h); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}

.pj-type-card.featured .pj-type-letter { color: var(--gold); }

.pj-type-name {
  font-family: var(--font-h); font-size: 1.75rem; font-weight: 300;
  color: var(--white); line-height: 1;
}

.pj-type-card.featured .pj-type-name { color: var(--ink); }

.pj-type-body { padding: 2rem; flex: 1; }

.pj-type-stat {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.55rem 0; font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.pj-type-stat:last-child { border-bottom: none; }

.pj-type-stat-label { color: var(--muted); }

.pj-type-stat-value {
  font-family: ui-monospace, monospace;
  font-weight: 600; color: var(--ink);
}

.pj-type-stat-value.gold { color: var(--gold); font-size: 1.05rem; }

.pj-type-count {
  display: inline-block; margin-top: 1.25rem; margin-bottom: 0.75rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}

/* Filter bar */
.pj-filter-bar {
  background: var(--white); padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border); position: sticky; top: var(--nav-h); z-index: 100;
}

.pj-filter-inner {
  max-width: var(--w-full); margin: 0 auto;
  display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center;
}

.pj-filter-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-right: 0.5rem; white-space: nowrap;
}

.pj-filter-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  background: var(--white); color: var(--ink);
  font-family: var(--font-b); font-size: 0.83rem;
  border-radius: 2px; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7180' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  transition: border-color 0.2s;
}

.pj-filter-select:focus { outline: none; border-color: var(--gold); }

.pj-filter-reset {
  margin-left: auto; font-size: 0.78rem; color: var(--gold);
  cursor: pointer; font-weight: 500;
  background: none; border: none; padding: 0.4rem 0.75rem;
}

/* Units table */
.pj-units { background: var(--white); padding: 3.5rem 2.5rem var(--s-xl); }

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

.pj-units-title {
  font-family: var(--font-h); font-weight: 300;
  font-size: 1.5rem; letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.pj-table-wrap { overflow-x: auto; }

.pj-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.88rem;
}

.pj-table thead {
  background: var(--ink); color: var(--white);
}

.pj-table th {
  padding: 1rem 1.25rem; text-align: left;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}

.pj-table th.right { text-align: right; }

.pj-table tbody tr {
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background 0.15s;
}

.pj-table tbody tr:nth-child(even) { background: var(--cream); }
.pj-table tbody tr:hover { background: var(--warm); }

.pj-table td { padding: 1rem 1.25rem; }
.pj-table td.right { text-align: right; font-family: ui-monospace, monospace; }
.pj-table td.type-badge { font-weight: 600; color: var(--ink); }

.pj-table td .avail-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #1d8a50; margin-right: 0.5rem; vertical-align: middle;
}

.pj-lock-box {
  max-width: var(--w-full); margin: 3rem auto 0;
  background: var(--cream); border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.75rem 2rem; border-radius: 0 4px 4px 0;
  display: flex; gap: 1.25rem; align-items: flex-start;
}

.pj-lock-icon {
  font-size: 1.5rem; flex-shrink: 0; color: var(--gold);
}

.pj-lock-box p { font-size: 0.9rem; line-height: 1.65; color: var(--muted); }
.pj-lock-box p strong { color: var(--ink); }
.pj-lock-box a { color: var(--gold); font-weight: 600; }

/* Paywall modal */
.pj-paywall {
  padding: 0;
}

.mform select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-b); font-size: 0.9rem;
  background: var(--white); color: var(--ink);
  transition: border-color 0.2s; width: 100%;
}

.mform select:focus { outline: none; border-color: var(--gold); }

/* Prodej responsive */
@media (max-width: 900px) {
  .pj-typology-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pj-filter-bar { padding: 1rem 1.5rem; }
  .pj-filter-inner { gap: 0.5rem; }
}

/* ==========================================================================
   DETAIL JEDNOTKY (detail-jednotky.html)
   ========================================================================== */

/* Auth bar */
.auth-bar {
  background: #1d8a50; color: #fff;
  padding: 0.65rem 2.5rem; font-size: 0.78rem;
  text-align: center; letter-spacing: 0.05em; font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
  max-width: var(--w-full); margin: 0 auto;
  padding: 1.25rem 2.5rem;
  font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.03em;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.45; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* Unit hero image */
.unit-hero {
  max-width: var(--w-full); margin: 0 auto; padding: 0 2.5rem;
}

.unit-hero-image {
  aspect-ratio: 21/8;
  background-image:
    linear-gradient(180deg, rgba(15,20,25,0) 50%, rgba(15,20,25,0.65) 100%),
    url('../img/interior-krb.png');
  background-size: cover; background-position: center;
  border-radius: 4px; position: relative;
}

.unit-hero-overlay {
  position: absolute; bottom: 2rem; left: 3rem; right: 3rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  pointer-events: none;
}

.unit-hero-title {
  background: rgba(15,20,25,0.82); color: var(--white);
  padding: 1.5rem 2rem; border-radius: 3px; backdrop-filter: blur(8px);
}

.unit-hero-title h1 {
  font-family: var(--font-h); color: var(--white); font-weight: 300;
  font-size: 2.25rem; line-height: 1.1; margin-bottom: 0.4rem;
}

.unit-hero-title .meta {
  font-size: 0.85rem; color: rgba(248,246,241,0.75); letter-spacing: 0.04em;
}

.unit-hero-status {
  background: #1d8a50; color: #fff;
  padding: 0.55rem 1.25rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}

/* Unit main layout */
.unit-main {
  max-width: var(--w-full); margin: 0 auto;
  padding: 4rem 2.5rem;
  display: grid; grid-template-columns: 1fr 400px; gap: 3rem;
}

/* Floorplan */
.unit-floorplan {
  background: var(--cream); padding: 2.5rem; border-radius: 4px; margin-bottom: 2rem;
}

.unit-floorplan h3 {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 400;
  margin-bottom: 1.5rem;
}

.floorplan-svg {
  background: var(--white); border-radius: 3px; padding: 2rem;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}

.floorplan-svg svg { width: 100%; height: 100%; }

.floorplan-rooms {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem;
}

.room-card {
  background: var(--white); padding: 1rem; border-radius: 3px;
  text-align: center; font-size: 0.8rem; border: 1px solid var(--border);
}

.room-card .room-icon { font-size: 1.25rem; margin-bottom: 0.35rem; color: var(--gold); }
.room-card .room-name { font-weight: 600; color: var(--ink); }
.room-card .room-area { color: var(--muted); margin-top: 0.2rem; font-size: 0.75rem; }

/* View mockup */
.unit-view {
  background: var(--cream); padding: 2.5rem; border-radius: 4px;
}

.unit-view h3 {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 400;
  margin-bottom: 1.25rem;
}

.view-image {
  aspect-ratio: 16/9;
  background-image:
    linear-gradient(180deg, rgba(15,20,25,0) 60%, rgba(15,20,25,0.3) 100%),
    url('../img/zima-detail.jpg');
  background-size: cover; background-position: center;
  border-radius: 3px; position: relative; overflow: hidden;
}

.view-image::after {
  content: '';
  position: absolute; inset: 5% 8%;
  border: 3px solid rgba(248,246,241,0.8);
  box-shadow: 0 0 0 2000px rgba(15,20,25,0.2);
  pointer-events: none;
}

.view-meta {
  margin-top: 1rem; font-size: 0.82rem; color: var(--muted);
  font-style: italic; text-align: center; line-height: 1.55;
}

/* Price card sidebar */
.unit-sidebar {
  position: sticky; top: calc(var(--nav-h) + 1rem); align-self: start;
}

.price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
}

.price-card-head { background: var(--ink); color: var(--white); padding: 1.75rem 2rem; }

.price-card-head .label {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(248,246,241,0.6); margin-bottom: 0.4rem;
}

.price-card-head .price {
  font-family: var(--font-h); font-size: 2.5rem; color: var(--gold-light);
  font-weight: 700; line-height: 1; letter-spacing: -0.02em;
}

.price-card-body { padding: 2rem; }

.price-rows { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.88rem; margin-bottom: 1.5rem; }

.price-row { display: flex; justify-content: space-between; color: var(--muted); }

.price-row.subtotal {
  padding-top: 0.6rem; margin-top: 0.25rem;
  border-top: 1px solid var(--border);
  color: var(--ink); font-weight: 500;
}

.price-row.total {
  padding-top: 0.6rem; margin-top: 0.25rem;
  border-top: 2px solid var(--gold);
  color: var(--ink); font-weight: 700;
}

.price-row .val { font-family: ui-monospace, monospace; font-weight: 500; }
.price-row.total .val { color: var(--gold); font-size: 1.05rem; }

.yield-section {
  background: var(--cream); padding: 1.5rem; border-radius: 3px; margin-bottom: 1.5rem;
}

.yield-section-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 0.75rem;
}

.yield-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.4rem 0; font-size: 0.88rem;
}

.yield-row .lab { color: var(--muted); }
.yield-row .val { font-family: ui-monospace, monospace; color: var(--ink); font-weight: 600; }
.yield-row.highlight .val { color: var(--gold); font-size: 1.1rem; }

.price-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.price-actions .btn { width: 100%; justify-content: center; }

.fki-tip {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: rgba(195,153,90,0.08); border-left: 3px solid var(--gold);
  font-size: 0.83rem; line-height: 1.6; color: var(--muted);
}

.fki-tip strong { color: var(--gold); }

/* Cross-sell */
.cross-sell { padding: 4rem 2.5rem 8rem; }

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

.cross-sell h3 {
  font-family: var(--font-h); font-weight: 300; font-size: 1.875rem;
  letter-spacing: -0.015em; text-align: center; margin-bottom: 0.5rem;
}

.cross-sell h3 em { font-style: italic; color: var(--gold); }
.cross-sell .sub { text-align: center; color: var(--muted); margin-bottom: 3rem; }

.cross-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}

.cross-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; transition: all 0.3s ease;
  text-decoration: none; color: inherit; display: block;
}

.cross-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15,20,25,0.08);
  border-color: var(--gold);
}

.cross-card-img {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  position: relative;
}

.cross-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,20,25,0) 50%, rgba(15,20,25,0.7) 100%);
}

.cross-card-img-num {
  position: absolute; bottom: 1rem; left: 1rem;
  font-family: var(--font-h); font-size: 1.4rem;
  color: var(--white); font-weight: 300; font-style: italic; z-index: 1;
}

.cross-card-img.img-summer { background-image: url('../img/sunset-leto.png'); }
.cross-card-img.img-winter { background-image: url('../img/zima-detail.jpg'); }
.cross-card-img.img-interior { background-image: url('../img/interior-krb.png'); }
.cross-card-img.img-pool { background-image: url('../img/wellness-bazen.jpg'); }

.cross-card-body { padding: 1.25rem; }
.cross-card-num { font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; font-size: 0.88rem; }
.cross-card-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.4rem; }
.cross-card-price { font-family: ui-monospace, monospace; color: var(--gold); font-weight: 600; }

/* Unit detail responsive */
@media (max-width: 1100px) {
  .unit-main { grid-template-columns: 1fr; }
  .unit-sidebar { position: static; }
  .unit-hero-overlay { left: 2rem; right: 2rem; }
}

@media (max-width: 768px) {
  .unit-hero { padding: 0 1.5rem; }
  .unit-main { padding: 3rem 1.5rem; }
  .unit-hero-overlay { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .unit-hero-title h1 { font-size: 1.75rem; }
  .cross-grid { grid-template-columns: repeat(2, 1fr); }
  .floorplan-rooms { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRO INVESTORY (pro-investory.html)
   ========================================================================== */

/* Invest hero — light gradient over image */
.inv-hero {
  background-image:
    linear-gradient(180deg, rgba(245,240,232,0.85) 0%, rgba(251,249,244,0.95) 55%, var(--white) 100%),
    url('../img/zima-detail.jpg');
  background-size: cover; background-position: center top;
  padding: 7rem 2.5rem; text-align: center;
  border-bottom: 1px solid var(--border);
}

.inv-hero-inner { max-width: 900px; margin: 0 auto; }

.inv-hero h1 {
  font-family: var(--font-h); font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.03em; margin-bottom: 1rem;
}

.inv-hero h1 em { font-style: italic; color: var(--gold); }

.inv-hero p { font-size: 1.1rem; color: var(--muted); line-height: 1.65; max-width: 640px; margin: 0 auto 0; }

.inv-stats-row {
  display: flex; justify-content: center; gap: 3rem;
  margin: 3rem 0; flex-wrap: wrap;
}

.inv-stat-num {
  font-family: var(--font-h); font-size: 3rem;
  color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 0.5rem;
}

.inv-stat-lab {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
}

/* Three info boxes */
.three-boxes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: var(--w-full); margin: 0 auto;
}

.info-box {
  padding: 2.5rem 2rem; border-top: 3px solid var(--border); background: var(--white);
}

.info-box.dark { background: var(--ink); color: var(--white); border-top-color: var(--gold); }
.info-box.gold-bg { background: var(--gold); color: var(--ink); border-top-color: var(--ink); }

.info-box-eyebrow {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 1rem; opacity: 0.65;
}

.info-box h3 {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 400;
  margin-bottom: 1rem; color: inherit;
}

.info-box p { font-size: 0.93rem; line-height: 1.65; color: inherit; opacity: 0.85; }

/* Calculator section */
.inv-calculator {
  background: var(--ink); color: var(--white);
  padding: var(--s-xl) 2.5rem; text-align: center;
}

.inv-calculator h2 {
  font-family: var(--font-h); color: var(--white); font-weight: 300;
  font-size: clamp(1.875rem, 4vw, 3rem); letter-spacing: -0.02em; margin-bottom: 1rem;
}

.inv-calculator h2 em { font-style: italic; color: var(--gold-light); }

.inv-calculator-sub {
  max-width: 600px; margin: 0 auto 2rem;
  color: rgba(248,246,241,0.7); line-height: 1.65;
}

.calc-frame {
  max-width: 880px; margin: 0 auto;
  background: rgba(248,246,241,0.04);
  border: 1px solid rgba(248,246,241,0.12);
  border-radius: 4px; padding: 3.5rem 3rem;
  display: flex; flex-direction: column; align-items: center; min-height: 360px;
  justify-content: center;
}

.calc-frame-icon { font-size: 2.75rem; margin-bottom: 1.25rem; color: var(--gold-light); }

.calc-frame h3 {
  font-family: var(--font-h); color: var(--white); font-weight: 300;
  font-size: 1.5rem; margin-bottom: 0.5rem;
}

.calc-frame p {
  color: rgba(248,246,241,0.65); max-width: 500px; margin: 0 auto 2rem; line-height: 1.65;
}

.calc-frame-disclaimer {
  margin-top: 2rem; font-size: 0.75rem; color: rgba(248,246,241,0.4);
  max-width: 680px; line-height: 1.55; text-align: center;
}

/* Financial model table */
.inv-fin-model { background: var(--cream); padding: var(--s-xl) 2.5rem; }

.fin-table-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--white); border-top: 4px solid var(--gold); padding: 2.5rem;
}

.fin-table { width: 100%; border-collapse: collapse; }
.fin-table tr { border-bottom: 1px solid var(--border); }
.fin-table tr:last-child { border-bottom: none; background: var(--cream); }

.fin-table td { padding: 0.85rem 0; font-size: 0.93rem; }
.fin-table td:first-child { color: var(--ink); }
.fin-table td:nth-child(2) { text-align: right; font-weight: 500; color: var(--muted); font-size: 0.82rem; }
.fin-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); font-family: ui-monospace, monospace; }

.fin-table tr.total td { font-weight: 700; }
.fin-table tr.total td:last-child { color: var(--gold); font-size: 1.1rem; }
.fin-table tr.cost td:last-child { color: #c0392b; }
.fin-table tr.income td:last-child { color: #1d8a50; }

/* FKI table */
.fki-table-wrapper { max-width: var(--w-full); margin: 3rem auto 0; overflow-x: auto; }

table.fki-table { width: 100%; border-collapse: collapse; background: var(--white); }
table.fki-table thead { background: var(--ink); color: var(--white); }
table.fki-table th {
  padding: 1.25rem 1rem; text-align: left;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
table.fki-table th.right { text-align: right; }
table.fki-table tbody tr { border-bottom: 1px solid var(--border); }
table.fki-table tbody tr:nth-child(even) { background: var(--cream); }
table.fki-table td { padding: 1rem; font-size: 0.93rem; }
table.fki-table td.right { text-align: right; font-family: ui-monospace, monospace; }
table.fki-table td.entry { font-weight: 700; color: var(--gold); font-family: ui-monospace, monospace; }
table.fki-table td.surplus { color: #1d8a50; font-weight: 500; }
table.fki-table td.payment { color: var(--muted); }

/* Comparison table */
.compare-table-wrapper { max-width: var(--w-full); margin: 0 auto; overflow-x: auto; }

table.compare-table { width: 100%; border-collapse: collapse; background: var(--white); }
table.compare-table thead { background: var(--ink-soft); color: var(--white); }
table.compare-table th {
  padding: 1.25rem 1rem; text-align: left;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}
table.compare-table th.right, table.compare-table td.right { text-align: right; }
table.compare-table th.center, table.compare-table td.center { text-align: center; }
table.compare-table tbody tr { border-bottom: 1px solid var(--border); }
table.compare-table tbody tr.highlight { background: var(--cream); border-top: 2px solid var(--gold); font-weight: 600; }
table.compare-table td { padding: 1rem; font-size: 0.93rem; }

/* FAQ */
.inv-faq { background: var(--cream); padding: var(--s-xl) 2.5rem; }

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--white); margin-bottom: 0.625rem;
  border-radius: 3px; overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem; cursor: pointer;
  font-weight: 500; font-size: 0.95rem; color: var(--ink);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--cream); }

.faq-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 1rem; transition: all 0.3s;
  color: var(--gold); font-size: 1.4rem; font-weight: 300; line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg); background: var(--gold); color: var(--white);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 2rem 1.75rem; color: var(--muted); line-height: 1.7; font-size: 0.93rem;
}

/* Invest responsive */
@media (max-width: 900px) {
  .three-boxes { grid-template-columns: 1fr; }
  .inv-stats-row { gap: 2rem; }
  .inv-stat-num { font-size: 2.25rem; }
}

/* ==========================================================================
   LOKALITA (lokalita.html)
   ========================================================================== */

/* Hero */
.lk-hero-bg {
  background-image:
    linear-gradient(180deg, rgba(15,20,25,0.35) 0%, rgba(15,20,25,0.6) 55%, rgba(15,20,25,0.95) 100%),
    url('../img/hero-zima.png');
}

/* Intro story */
.lk-intro { background: var(--cream); padding: var(--s-xl) 2.5rem; }

.lk-intro-flex {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: center;
  max-width: var(--w-full); margin: 0 auto;
}

.lk-intro-text h2 {
  font-family: var(--font-h); font-weight: 300;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em; margin-bottom: 1.75rem;
}

.lk-intro-text h2 em { font-style: italic; color: var(--gold); }

.lk-intro-text p.lead {
  font-family: var(--font-h); font-size: 1.25rem; font-style: italic;
  color: var(--ink-soft); line-height: 1.55; margin-bottom: 1.75rem;
}

.lk-intro-text p {
  font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.25rem;
}

.lk-intro-text strong { color: var(--ink); font-weight: 600; }

.lk-intro-image {
  aspect-ratio: 4/5;
  background-image:
    linear-gradient(180deg, rgba(15,20,25,0.05) 0%, rgba(15,20,25,0.45) 100%),
    url('../img/lokalita1.jpg');
  background-size: cover; background-position: center;
  border-radius: 4px; position: relative;
  box-shadow: 0 30px 80px rgba(15,20,25,0.15);
}

.lk-intro-image-label {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem; color: var(--white);
}

.lk-intro-image-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.4rem;
}

.lk-intro-image-title {
  font-family: var(--font-h); font-style: italic; font-weight: 300;
  font-size: 1.35rem; line-height: 1.25;
}

/* Gallery */
.lk-gallery { background: var(--cream); padding: var(--s-xl) 2.5rem; }
.lk-gallery-inner { max-width: var(--w-full); margin: 0 auto; }

.lk-gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto; gap: 1.25rem; margin-top: 3rem;
}

.lk-photo {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--ink-soft); aspect-ratio: 3/2;
  transition: transform 0.3s, box-shadow 0.3s;
}

.lk-photo:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(15,20,25,0.18); }

.lk-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}

.lk-photo:hover img { transform: scale(1.04); }

.lk-photo.lk-photo-large { grid-column: span 2; grid-row: span 3; aspect-ratio: 4/4.15; }

.lk-photo figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15,20,25,0.85) 100%);
  color: var(--white); font-family: var(--font-h); font-style: italic;
  font-size: 0.93rem;
}

.lk-gallery-credit {
  margin-top: 1.5rem; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

/* Sněžka numbers grid */
.lk-snezka { background: var(--ink); padding: var(--s-xl) 2.5rem; }
.lk-snezka .pg-section-header h2 { color: var(--white); }
.lk-snezka .pg-section-header p { color: rgba(248,246,241,0.65); }

.lk-snezka-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201,169,97,0.18);
  border-bottom: 1px solid rgba(201,169,97,0.18);
  max-width: var(--w-full); margin: 0 auto;
}

.lk-snezka-stat {
  padding: 3rem 2rem; text-align: center;
  border-right: 1px solid rgba(201,169,97,0.12);
}

.lk-snezka-stat:last-child { border-right: none; }

.lk-snezka-num {
  font-family: var(--font-h); font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}

.lk-snezka-unit {
  font-size: 0.88rem; color: var(--gold-light); font-style: italic;
  font-family: var(--font-h); margin-bottom: 0.75rem;
}

.lk-snezka-lab {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(248,246,241,0.65); font-weight: 500; line-height: 1.5;
}

.lk-snezka-desc {
  margin-top: 0.65rem; font-size: 0.83rem; line-height: 1.5;
  color: rgba(248,246,241,0.5);
}

/* Sněžka story split */
.lk-snezka-story { background: var(--ink); padding: 0; }

.lk-snezka-flex {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 580px;
  max-width: 100%;
}

.lk-snezka-image {
  background-image:
    linear-gradient(90deg, rgba(15,20,25,0.5) 0%, rgba(15,20,25,0.1) 60%, transparent 100%),
    url('https://commons.wikimedia.org/wiki/Special:FilePath/Snezka_in_2010.JPG?width=1600');
  background-size: cover; background-position: center; background-color: #1F2A35;
}

.lk-snezka-text {
  padding: 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--white);
}

.lk-snezka-text h2 {
  font-family: var(--font-h); color: var(--white); font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.02em; margin-bottom: 1.25rem;
}

.lk-snezka-text h2 em { font-style: italic; color: var(--gold); }

.lk-snezka-lead {
  font-family: var(--font-h); font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.65rem); color: var(--gold-light);
  line-height: 1.35; margin-bottom: 1.75rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,169,97,0.2);
}

.lk-snezka-text p { font-size: 1rem; line-height: 1.7; color: rgba(248,246,241,0.75); margin-bottom: 1rem; }
.lk-snezka-text p strong { color: var(--white); font-weight: 600; }

.lk-elevations { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(201,169,97,0.18); }

.lk-elevation-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(201,169,97,0.08);
  font-size: 0.88rem; color: rgba(248,246,241,0.7);
}

.lk-elevation-row:last-child { border-bottom: none; }

.lk-elevation-alt {
  font-family: var(--font-h); font-style: italic; color: var(--gold); font-size: 1rem;
}

/* Seasons */
.lk-seasons { background: var(--cream); padding: var(--s-xl) 2.5rem; }

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

.lk-season-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
}

.lk-season-img {
  aspect-ratio: 16/9; background-size: cover; background-position: center;
  position: relative;
}

.lk-season-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,20,25,0) 50%, rgba(15,20,25,0.82) 100%);
}

.lk-season-label {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 1; color: var(--white);
}

.lk-season-label-num {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.2rem;
}

.lk-season-label-name {
  font-family: var(--font-h); font-size: 2rem; font-style: italic; font-weight: 300; line-height: 1;
}

.lk-season-body { padding: 2rem; }
.lk-season-body h3 { font-family: var(--font-h); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.75rem; }
.lk-season-body p { font-size: 0.9rem; line-height: 1.7; color: var(--muted); margin-bottom: 1.25rem; }
.lk-season-meta { font-size: 0.78rem; color: var(--gold); font-weight: 600; padding-top: 1rem; border-top: 1px solid var(--border); }

.lk-season-img.season-zima { background-image: url('../img/zima.jpg'); }
.lk-season-img.season-jaro { background-image: linear-gradient(135deg, rgba(107,127,184,0.2) 0%, transparent 60%), url('../img/jaro.jpg'); }
.lk-season-img.season-leto { background-image: url('../img/leto.jpg'); }
.lk-season-img.season-podzim { background-image: linear-gradient(135deg, rgba(180,100,40,0.2) 0%, rgba(15,20,25,0.25) 100%), url('../img/podzim.jpg'); }

/* Attractions */
.lk-attractions { background: var(--white); padding: var(--s-xl) 2.5rem; }

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

.lk-attr-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; transition: all 0.3s;
}

.lk-attr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,20,25,0.08);
  border-color: var(--gold);
}

.lk-attr-dist {
  background: var(--ink); color: var(--gold-light);
  padding: 0.85rem 1.25rem; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}

.lk-attr-dist strong {
  font-family: var(--font-h); font-size: 1.05rem;
  color: var(--gold); font-style: italic; font-weight: 400;
}

.lk-attr-body { padding: 1.5rem; }
.lk-attr-body h4 { font-family: var(--font-h); font-size: 1.25rem; font-weight: 400; margin-bottom: 0.4rem; }
.lk-attr-body p { font-size: 0.88rem; line-height: 1.65; color: var(--muted); margin: 0; }

/* Transport */
.lk-transport { background: var(--white); padding: var(--s-xl) 2.5rem; border-top: 1px solid var(--border); }

.lk-transport-flex {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  max-width: var(--w-full); margin: 0 auto;
}

.lk-transport-left { position: sticky; top: calc(var(--nav-h) + 2rem); }

.lk-transport-left h2 {
  font-family: var(--font-h); font-weight: 300;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em; margin-bottom: 1.25rem;
}

.lk-transport-left h2 em { font-style: italic; color: var(--gold); }
.lk-transport-left p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

.lk-d11-note {
  margin-top: 1.5rem; padding: 1.25rem 1.5rem;
  background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 3px 3px 0;
  font-size: 0.88rem; line-height: 1.65; color: var(--muted);
}

.lk-d11-note strong { color: var(--ink); }

.lk-transport-list { list-style: none; }

.lk-transport-item {
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem;
}

.lk-transport-item:last-child { border-bottom: none; }

.lk-transport-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-style: italic; color: var(--gold); font-size: 1.15rem;
}

.lk-transport-text { flex: 1; }
.lk-transport-text h5 { font-size: 0.93rem; font-weight: 600; margin-bottom: 0.2rem; }
.lk-transport-text p { font-size: 0.83rem; line-height: 1.55; color: var(--muted); margin: 0; }

.lk-transport-meta {
  font-family: var(--font-h); font-style: italic; color: var(--gold);
  font-size: 0.95rem; white-space: nowrap; padding-top: 0.25rem;
}

/* Map */
.lk-map { background: var(--cream); padding: 5rem 2.5rem; }
.lk-map-inner { max-width: var(--w-full); margin: 0 auto; text-align: center; }

.lk-map h2 {
  font-family: var(--font-h); font-weight: 300;
  font-size: clamp(1.625rem, 3vw, 2.5rem); letter-spacing: -0.02em; margin-bottom: 0.75rem;
}

.lk-map h2 em { font-style: italic; color: var(--gold); }
.lk-map p { max-width: 540px; margin: 0 auto 2.5rem; color: var(--muted); line-height: 1.65; }

.lk-map-frame {
  aspect-ratio: 21/9; width: 100%;
  border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,20,25,0.08);
}

.lk-map-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* Lokalita responsive */
@media (max-width: 900px) {
  .lk-intro-flex { grid-template-columns: 1fr; gap: 3rem; }
  .lk-intro-image { aspect-ratio: 16/10; }
  .lk-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lk-photo.lk-photo-large { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
  .lk-snezka-grid { grid-template-columns: repeat(2, 1fr); }
  .lk-snezka-stat:nth-child(2n) { border-right: none; }
  .lk-snezka-flex { grid-template-columns: 1fr; }
  .lk-snezka-image { min-height: 320px; }
  .lk-snezka-text { padding: 4rem 2rem; }
  .lk-seasons-grid { grid-template-columns: 1fr; }
  .lk-attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .lk-transport-flex { grid-template-columns: 1fr; gap: 3rem; }
  .lk-transport-left { position: static; }
}

@media (max-width: 600px) {
  .lk-attractions-grid { grid-template-columns: 1fr; }
  .lk-gallery-grid { grid-template-columns: 1fr; }
  .lk-photo.lk-photo-large { grid-column: 1; }
}

/* ==========================================================================
   Page hero responsive
   ========================================================================== */
@media (max-width: 900px) {
  .page-hero { min-height: 65vh; }
  .page-hero-content { padding: 4rem 2rem 4rem; }
  .page-hero-stats { gap: 2rem; }
}

@media (max-width: 768px) {
  .pg-section { padding: 5rem 1.5rem; }
  .lk-map-frame { aspect-ratio: 16/9; }
}

/* ==========================================================================
   KONTAKT (kontakt.html)
   ========================================================================== */

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

@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

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

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; flex-direction: column;
  overflow: hidden;
}

.contact-card--gold { border-top: 3px solid var(--gold); }

.contact-card-top {
  padding: 2.5rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-card-top h2 {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: 1.875rem;
  letter-spacing: -0.02em;
  margin: 1rem 0 1rem;
  line-height: 1.1;
}

.contact-card-top h2 em { font-style: italic; color: var(--gold); }

.contact-card-sub {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
}

.contact-card-body {
  padding: 1.75rem 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  flex: 1;
}

.contact-row {
  display: flex; align-items: flex-start; gap: 1rem;
}

.contact-icon {
  width: 24px; flex-shrink: 0;
  margin-top: .1rem;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}

.contact-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .2rem;
}

.contact-val {
  font-size: .9rem; color: var(--ink); line-height: 1.5;
}

.contact-link { color: var(--ink); transition: color .2s; }
.contact-link:hover { color: var(--gold); }

.contact-card-footer {
  padding: 1.5rem 2rem 2rem;
  display: flex; flex-direction: column; gap: .5rem;
  border-top: 1px solid var(--border);
}

.contact-card-footer .btn { justify-content: center; }

.meeting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* VIDEO HERO */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,20,25,0.20) 0%,
    rgba(15,20,25,0.55) 45%,
    rgba(15,20,25,0.75) 100%
  );
  z-index: 1;
}

.video-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  max-width: 900px;
}

.video-hero-eyebrow {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.75rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}

.video-hero-eyebrow::before,
.video-hero-eyebrow::after {
  content: ''; display: inline-block;
  width: 2.5rem; height: 1px; background: var(--gold); opacity: .6;
}

.video-hero h1 {
  font-family: var(--font-h);
  font-weight: 200;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.video-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.video-hero-claim {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: rgba(248,246,241,0.78);
  max-width: 640px;
  margin: 0 auto;
}

.video-hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(248,246,241,0.45);
}

.video-hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(248,246,241,0.4) 0%, transparent 100%);
}

@media (max-width: 768px) {
  .video-hero { height: 90vh; min-height: 500px; }
  .video-hero h1 { font-size: clamp(2.25rem, 10vw, 3.5rem); }
}

/* ==========================================================================
   LUCIDE-STYLE CSS ICONS (mask-image)
   Usage: <div class="icon-home"></div> — color inherited from parent
   ========================================================================== */

.icon-home {
  display: inline-flex;
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z M9 22V12h6v10'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z M9 22V12h6v10'/></svg>") no-repeat center / contain;
}
.icon-map-pin {
  display: inline-flex;
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0z M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0-6 0'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0z M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0-6 0'/></svg>") no-repeat center / contain;
}
.icon-phone {
  display: inline-flex;
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.69 13a19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 3.58 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.69 13a19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 3.58 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center / contain;
}
.icon-mail {
  display: inline-flex;
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z M22 6l-10 7L2 6'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z M22 6l-10 7L2 6'/></svg>") no-repeat center / contain;
}
.icon-globe {
  display: inline-flex;
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20z M2 12h20 M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20z M2 12h20 M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/></svg>") no-repeat center / contain;
}
.icon-message-circle {
  display: inline-flex;
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/></svg>") no-repeat center / contain;
}
.icon-landmark {
  display: inline-flex;
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 22h18 M6 18v4 M10 18v4 M14 18v4 M18 18v4 M3 10l9-8 9 8 M12 2v20'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 22h18 M6 18v4 M10 18v4 M14 18v4 M18 18v4 M3 10l9-8 9 8 M12 2v20'/></svg>") no-repeat center / contain;
}

/* ==========================================================================
   RESORT — nové sekce (citát, lokalita, název, architekt, timeline)
   ========================================================================== */

/* ── Citát majitele ─────────────────────────────────────────────────────── */
.rs-quote-section {
  background: var(--ink);
  padding: 7rem 2.5rem;
  color: var(--white);
}

.rs-quote-inner {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: center;
}

.rs-quote-photo {
  flex-shrink: 0;
}

.rs-quote-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
  filter: grayscale(20%);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.rs-quote-text {
  font-family: var(--font-h);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--gold-light);
  border: none;
  margin: 0 0 2rem;
  padding: 0;
}

/*.rs-quote-text::before { content: open-quote; }
.rs-quote-text::after  { content: close-quote; }*/

.rs-quote-author {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(195,153,90,0.25);
}

.rs-quote-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.rs-quote-role {
  font-size: 0.78rem;
  color: rgba(248,246,241,0.45);
  letter-spacing: 0.05em;
}

/* ── Emoční text o lokalitě ─────────────────────────────────────────────── */
.rs-place-section {
  background: var(--cream);
  padding: 7rem 2.5rem;
}

.rs-place-inner {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 5rem;
  align-items: start;
}

.rs-place-label {
  padding-top: 0.5rem;
}

.rs-place-text h2 {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.rs-place-text h2 em { font-style: italic; color: var(--gold); }

.rs-place-lead {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.rs-place-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 720px;
}

/* ── Proč AERIS ─────────────────────────────────────────────────────────── */
.rs-name-section {
  background: var(--ink-soft);
  padding: 7rem 2.5rem;
  color: var(--white);
}

.rs-name-inner {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.rs-name-logo {
  font-family: var(--font-h);
  font-weight: 200;
  font-size: clamp(4rem, 8vw, 7rem);
  letter-spacing: 0.3em;
  color: var(--gold);
  line-height: 1;
  opacity: 0.85;
}

.rs-name-content h2 {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}

.rs-name-content h2 em { font-style: italic; color: var(--gold); }

.rs-name-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248,246,241,0.7);
  margin-bottom: 1.25rem;
  max-width: 600px;
}

/* ── Architekt ──────────────────────────────────────────────────────────── */
.rs-architect-section {
  background: var(--white);
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--border);
}

.rs-architect-inner {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
}

.rs-architect-text h2 {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}

.rs-architect-text h2 em { font-style: italic; color: var(--gold); }

.rs-architect-lead {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.rs-architect-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 620px;
}

.rs-architect-credit {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
}

.rs-architect-photo img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 20px 60px rgba(15,20,25,0.12);
}

/* ── Timeline ───────────────────────────────────────────────────────────── */
.rs-timeline-section {
  background: var(--cream);
  padding: 7rem 2.5rem;
}

.rs-timeline-header {
  max-width: 680px;
  margin: 0 auto 5rem;
  text-align: center;
}

.rs-timeline-header h2 {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin: 1rem 0 1rem;
}

.rs-timeline-header h2 em { font-style: italic; color: var(--gold); }

.rs-timeline-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

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

/* Vertical line */
.rs-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 5%, var(--gold) 95%, transparent 100%);
  opacity: 0.3;
  transform: translateX(-50%);
}

.rs-tl-item {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 0 2rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

/* Date on left, card on right */
.rs-tl-item .rs-tl-date {
  text-align: right;
  padding-top: 1.25rem;
}

.rs-tl-item .rs-tl-card {
  grid-column: 3;
}

/* Right variant: date right, card left */
.rs-tl-right .rs-tl-date {
  grid-column: 3;
  text-align: left;
  order: 3;
}

.rs-tl-right .rs-tl-dot { order: 2; }

.rs-tl-right .rs-tl-card {
  grid-column: 1;
  order: 1;
}

.rs-tl-date {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.rs-tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin: 1.4rem auto 0;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px rgba(195,153,90,0.3);
  position: relative;
  z-index: 1;
}

.rs-tl-future .rs-tl-dot {
  background: transparent;
  border: 2px solid var(--gold);
}

.rs-tl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.rs-tl-card:hover {
  box-shadow: 0 12px 36px rgba(15,20,25,0.1);
  transform: translateY(-2px);
}

.rs-tl-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.rs-tl-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.rs-tl-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.rs-tl-body p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   RESORT — horizontální timeline s šipkami (foto v kruhu, velký rok)
   ========================================================================== */

.rs-tl-section {
  background: var(--cream);
  padding: 7rem 0 5rem;
  overflow: hidden;
}
.rs-tl-header {
  max-width: var(--w-full); margin: 0 auto 3.5rem; padding: 0 2.5rem; text-align: center;
}
.rs-tl-header h2 {
  font-family: var(--font-h); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; margin: 1rem 0 1rem;
}
.rs-tl-header h2 em { font-style: italic; color: var(--gold); }
.rs-tl-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 560px; margin: 0 auto; }

/* Outer wrapper — constrains arrows to sides */
.rs-tl-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.rs-tl-arrow {
  position: absolute; top: 48%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  color: var(--ink); font-size: 1.25rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; box-shadow: 0 2px 12px rgba(15,20,25,0.08);
}
.rs-tl-arrow:hover:not(:disabled) { background: var(--gold); color: var(--white); border-color: var(--gold); }
.rs-tl-arrow:disabled { opacity: 0.25; cursor: default; }
.rs-tl-prev { left: 0; }
.rs-tl-next { right: 0; }

/* Scrollable track */
.rs-tl-track {
  display: flex;
  gap: 2rem;            /* space between cards */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 1rem 1rem;
}
.rs-tl-track::-webkit-scrollbar { display: none; }

/* Axis line — aligned to dot center (year≈24px + mb≈10px + node_half≈8px = 42px) */
.rs-tl-track::before {
  content: ''; position: absolute;
  left: 3rem; right: 3rem;   /* inset from edges */
  top: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.25; pointer-events: none;
}

.rs-tl-card-wrap {
  flex: 0 0 200px;
  scroll-snap-align: center;
  display: flex; flex-direction: column; align-items: center;
}

/* Year */
.rs-tl-year {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 700;
  color: var(--gold); letter-spacing: -0.01em; margin-bottom: .55rem;
  white-space: nowrap; line-height: 1;
}

/* Dot on axis */
.rs-tl-node {
  width: 100%; display: flex; justify-content: center; align-items: center;
  height: 16px; margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.rs-tl-dot-h {
  display: block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px rgba(195,153,90,0.3);
}
.rs-tl-dot-future {
  background: transparent; border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px var(--cream);
}

/* Card — no background, no border */
.rs-tl-card-h {
  background: transparent;
  border: none;
  width: 100%;
  transition: transform 0.25s;
}
.rs-tl-card-h:hover { transform: translateY(-3px); }

/* Photo in circle */
.rs-tl-card-h img {
  display: block; width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 0.875rem;
  border: 2px solid rgba(195,153,90,0.4);
}
.rs-tl-future-card .rs-tl-card-h img { opacity: 0.6; filter: grayscale(30%); }

.rs-tl-card-body { padding: 0 .25rem; text-align: center; }
.rs-tl-card-title {
  font-family: var(--font-h); font-size: 0.88rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.35rem; line-height: 1.3;
}
.rs-tl-card-body p { font-size: 0.76rem; line-height: 1.6; color: var(--muted); margin: 0; }

.rs-tl-future-card .rs-tl-card-h { opacity: 0.78; }

/* Progress dots */
.rs-tl-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.rs-tl-dot-btn {
  width: 7px; height: 7px; border-radius: 50%; background: var(--border);
  border: none; cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s;
}
.rs-tl-dot-btn.active { background: var(--gold); transform: scale(1.35); }

@media (max-width: 900px) {
  .rs-tl-wrap { max-width: 100%; padding: 0 3rem; }
  .rs-tl-card-wrap { flex: 0 0 180px; }
}
@media (max-width: 600px) {
  .rs-tl-wrap { padding: 0 2.5rem; }
  .rs-tl-card-wrap { flex: 0 0 160px; }
  .rs-tl-arrow { width: 36px; height: 36px; font-size: 1rem; }
}

/* ==========================================================================
   BLOG (blog.html)
   ========================================================================== */

.blog-section {
  background: var(--cream);
  padding: 6rem 2.5rem 8rem;
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover {
  box-shadow: 0 12px 36px rgba(15,20,25,0.09);
  transform: translateY(-3px);
  border-color: var(--gold);
}

/* Featured card spans full width */
.blog-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.blog-card--featured .blog-card-img {
  flex: 0 0 45%;
  aspect-ratio: auto;
  min-height: 280px;
}

.blog-card-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--warm);
  flex-shrink: 0;
}

.blog-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card-source {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(195,153,90,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--muted);
}

.blog-card-title {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.blog-card--featured .blog-card-title {
  font-size: 1.5rem;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.blog-card-link svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .blog-inner { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { flex-direction: column; grid-column: 1 / -1; }
  .blog-card--featured .blog-card-img { min-height: 220px; flex: none; }
}

@media (max-width: 600px) {
  .blog-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   KLIENTSKÁ ZÓNA (klientska-zona.html)
   ========================================================================== */

/* Welcome bar */
.kz-welcome-bar {
  background: #1d8a50;
  color: #fff;
  padding: 0.65rem 2.5rem;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.kz-welcome-bar svg { width: 15px; height: 15px; stroke: #fff; flex-shrink: 0; }
.kz-welcome-bar strong { font-weight: 600; }

.kz-logout {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.kz-header {
  background: var(--ink);
  padding: 5rem 2.5rem 4rem;
  color: var(--white);
}

.kz-header-inner {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
}

.kz-header h1 {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  letter-spacing: -0.025em;
  margin: 1rem 0 1rem;
}

.kz-header h1 em { font-style: italic; color: var(--gold-light); }

.kz-header-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(248,246,241,0.6);
  max-width: 560px;
}

.kz-stats-row {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
}

.kz-stat-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.kz-stat-lab {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.4);
}

/* Tiles */
.kz-tiles-section {
  background: var(--cream);
  padding: 5rem 2.5rem;
}

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

.kz-tiles-heading {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--ink);
}

.kz-tiles-heading em { font-style: italic; color: var(--gold); }

.kz-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.kz-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.kz-tile:hover {
  box-shadow: 0 12px 36px rgba(15,20,25,0.1);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.kz-tile--primary {
  border-top: 3px solid var(--gold);
}

.kz-tile-icon {
  padding: 1.75rem 1.75rem 0;
  color: var(--gold);
}

.kz-tile-icon svg { width: 28px; height: 28px; stroke: var(--gold); }

.kz-tile-body {
  padding: 1rem 1.75rem 1.5rem;
  flex: 1;
}

.kz-tile-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.kz-tile-body h3 {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.kz-tile-body p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.kz-tile-footer {
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.kz-tile-footer svg { width: 14px; height: 14px; }

/* Documents tile */
.kz-tile--docs { cursor: default; }
.kz-tile--docs:hover { transform: none; box-shadow: none; border-color: var(--border); }

.kz-tile-docs-list {
  padding: 0 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kz-doc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: var(--cream);
  border-radius: 3px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.82rem;
  transition: background 0.2s;
  border: 1px solid transparent;
}

.kz-doc-item:hover { background: rgba(195,153,90,0.08); border-color: rgba(195,153,90,0.25); }
.kz-doc-item svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; }
.kz-doc-item span { flex: 1; line-height: 1.4; }
.kz-doc-item em { display: block; font-style: normal; font-size: 0.72rem; color: var(--muted); }

/* Secondary actions */
.kz-secondary {
  background: var(--white);
  padding: 4rem 2.5rem;
  border-top: 1px solid var(--border);
}

.kz-secondary-inner {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.kz-action-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.kz-action-card:hover { border-color: var(--gold); background: rgba(195,153,90,0.05); }

.kz-action-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.kz-action-icon svg { width: 18px; height: 18px; stroke: var(--gold); }

.kz-action-title { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.kz-action-desc { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

.kz-action-arrow { margin-left: auto; flex-shrink: 0; stroke: var(--muted); }
.kz-action-arrow svg { width: 16px; height: 16px; }

/* News / aktuality */
.kz-news {
  background: var(--cream);
  padding: 4rem 2.5rem 6rem;
  border-top: 1px solid var(--border);
}

.kz-news-inner { max-width: 820px; margin: 0 auto; }

.kz-news-heading {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.kz-news-heading em { font-style: italic; color: var(--gold); }

.kz-news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kz-news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.kz-news-item:last-child { border-bottom: none; }

.kz-news-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.2rem;
}

.kz-news-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.kz-news-content p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 1000px) {
  .kz-header-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .kz-tiles-grid { grid-template-columns: 1fr; max-width: 540px; }
  .kz-secondary-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .kz-stats-row { gap: 1.5rem; }
  .kz-stat-num { font-size: 1.5rem; }
  .kz-news-item { grid-template-columns: 1fr; gap: 0.5rem; }
}
