/* ========== RESET & VARIABLES ========== */
:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --dark: #1c1c1c;
  --dark-mid: #2a2a2a;
  --gray-800: #333333;
  --gray-600: #666666;
  --gray-400: #999999;
  --gray-300: #b3b3b3;
  --gray-200: #d4d4d4;
  --gray-100: #e8e8e8;
  --off-white: #f7f7f7;
  --white: #fafafa;
  --gold: #c9963b;
  --gold-light: #dbb164;
  --gold-gradient: linear-gradient(135deg, #c9963b, #dbb164);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-dark: 0 8px 30px rgba(0,0,0,0.4);
  --radius: 0;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: #333;
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(32px, 4vw, 64px);
}

/* ========== GRADIENT TEXT UTILITY ========== */
.accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.35s ease, border-bottom-color 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* Hidden state during intro */
.navbar.nav-hidden {
  opacity: 0 !important;
  transform: translateY(-100%);
  pointer-events: none !important;
}

/* Visible state — slide down with dark bg over dark sections */
.navbar.nav-visible {
  opacity: 1 !important;
  transform: translateY(0);
  pointer-events: auto !important;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.navbar.scrolled {
  background: rgba(250, 250, 250, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(0,0,0,0.06);
}

.navbar.scrolled .logo-finest { color: var(--black); }
.navbar.scrolled .logo-invest { color: var(--gold); }
.navbar.scrolled .nav-links a { color: var(--dark); }
.navbar.scrolled .hamburger span { background: var(--black); }

/* Dark navbar variant before scrolled (over dark hero) */
.navbar.nav-visible:not(.scrolled) .logo-finest { color: #fff; }
.navbar.nav-visible:not(.scrolled) .nav-links a { color: #fff; }
.navbar.nav-visible:not(.scrolled) .nav-cta {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.navbar.nav-visible:not(.scrolled) .hamburger span { background: #fff; }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: auto;
}

.nav-logo-white {
  width: 69px;
}

.nav-logo-dark {
  display: none;
  width: 62px;
}
.navbar.scrolled .nav-logo-white { display: none; }
.navbar.scrolled .nav-logo-dark { display: block; }

.logo-finest {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.logo-invest {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent;
  color: #fff;
  padding: 10px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.navbar.scrolled .nav-cta {
  color: var(--dark);
  border-color: var(--gray-200);
}

.navbar.scrolled .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  margin: 6px 0;
  transition: var(--transition);
}

/* ========== CINEMATIC INTRO HERO ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.intro-hero {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

/* Background image/video */
.intro-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.intro-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0.78) 75%,
      rgba(0, 0, 0, 0.92) 100%
    );
  z-index: 1;
}

.intro-hero__img,
.intro-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Animated geometric grid */
.intro-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.grid-static {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: gridFadeIn 2s ease 0.5s forwards;
}

@keyframes gridFadeIn {
  to { opacity: 1; }
}

/* Animated solid lines — stroke-dashoffset draw-on */
.grid-animated-lines {
  position: absolute;
  inset: 0;
}

.anim-line {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  opacity: 0;
  animation: lineDraw 8s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

.anim-line--1 { animation-delay: 0s; }
.anim-line--2 { animation-delay: 0.15s; }
.anim-line--3 { animation-delay: 0.3s; }
.anim-line--4 { animation-delay: 0.45s; }
.anim-line--5 { animation-delay: 0.1s; }
.anim-line--6 { animation-delay: 0.25s; }
.anim-line--7 { animation-delay: 0.4s; }
.anim-line--8 { animation-delay: 0.55s; }

@keyframes lineDraw {
  0%         { opacity: 0; stroke-dashoffset: 1500; }
  15%, 55%   { opacity: 1; }
  100%       { opacity: 0; stroke-dashoffset: 0; }
}

/* Animated dashed lines — clip-path wipe-in */
.anim-dash {
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: dashWipe 10s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

.anim-dash--1  { animation-delay: 0s; }
.anim-dash--2  { animation-delay: 0.15s; }
.anim-dash--3  { animation-delay: 0.3s; }
.anim-dash--4  { animation-delay: 0.45s; }
.anim-dash--5  { animation-delay: 0.1s; }
.anim-dash--6  { animation-delay: 0.25s; }
.anim-dash--7  { animation-delay: 0.4s; }
.anim-dash--8  { animation-delay: 0.55s; }
.anim-dash--9  { animation-delay: 0.7s; }
.anim-dash--10 { animation-delay: 0.85s; }

@keyframes dashWipe {
  0%         { opacity: 0; clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
  30%, 70%   { opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  100%       { opacity: 0; clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
}

/* Giant FINEST logo */
.intro-hero__brand {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-hero__logo {
  display: block;
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
  height: auto;
  opacity: 0;
  animation: logoReveal 1.2s ease 0.2s forwards;
}

@keyframes logoReveal {
  0%   { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.intro-hero__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -24px;
  opacity: 0;
  animation: fadeUp 1.2s ease 1s forwards;
}

/* Scroll indicator */
.intro-hero__scroll {
  position: absolute;
  bottom: calc(1rem + 3vh);
  left: 0;
  right: 0;
  z-index: 4;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  animation: fadeUp 1.5s ease 1.8s forwards;
  transition: color 0.3s;
}

.intro-hero__scroll:hover {
  color: var(--gold);
}

.intro-hero__scroll span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.intro-hero__scroll svg {
  animation: bounceDown 2s ease-in-out 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ========== CONTENT HERO (below intro) ========== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

/* Gradient fade from dark into content hero — covers intro smoothly */
.hero::after {
  content: '';
  position: absolute;
  top: -300px;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to bottom, transparent 0%, var(--black) 100%);
  z-index: 3;
  pointer-events: none;
}

/* All sections after intro must sit above the sticky intro */
.numbers, .segments, .offices-map, .succession, .portfolio-fullwidth, .why-us, .testimonials, .logo-strip, .founders-quote, .blog-preview, .final-cta, .footer,
.page-onas-story, .page-onas-timeline, .page-values,
.page-segment, .page-strategie-philosophy, .page-strategie-process,
.page-kontakt-quick, .kontakt-people, .page-kontakt-map {
  position: relative;
  z-index: 2;
}

/* Univerzální fallback pro podstránky — každá sekce sedí nad intro hero */
body.page-subpage > section:not(.intro-hero),
body.page-subpage > footer {
  position: relative;
  z-index: 2;
}
body.page-subpage > nav.page-investori-anchor {
  /* Sticky pozice se zachovává z .page-investori-anchor, jen z-index aby seděl nad hero */
  z-index: 50;
}
/* intro-hero zůstává sticky (z .intro-hero base CSS), jen z-index */
body.page-subpage > .intro-hero { z-index: 1; }

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('ruce.png') center/cover no-repeat;
  opacity: 0.5;
  filter: grayscale(20%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.6) 30%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 48px;
  margin: 0 auto;
  text-align: left;
}

/* Scroll-triggered reveal for content hero elements */
.hero-content .hero-eyebrow,
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-cta {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.revealed .hero-eyebrow {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.1s;
}
.hero-content.revealed .hero-title {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.25s;
}
.hero-content.revealed .hero-subtitle {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.4s;
}
.hero-content.revealed .hero-cta {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.55s;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title .accent {
  display: block;
  margin-top: 4px;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 0 36px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.hero-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 36px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,150,59,0.25);
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* Hero CTA buttons stretch full width */
.hero-cta .btn {
  justify-content: center;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--gray-200);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.btn-small {
  padding: 10px 22px;
  font-size: 13px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 500;
}

.btn-small:hover {
  background: var(--gold);
  color: #fff;
}

.btn-large {
  padding: 17px 52px;
  font-size: 15px;
}

/* Trust bar */
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 18px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-item svg {
  color: var(--gold);
  opacity: 0.8;
}

/* ========== SECTION COMMON ========== */

/* Vertical eyebrow — absolutely positioned left of entire section content */
.section-eyebrow {
  position: absolute;
  left: clamp(20px, 3vw, 44px);
  top: 160px;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray-400);
  writing-mode: vertical-lr;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

/* Line BELOW text (::before in DOM → after rotate(180deg) appears below) */
.section-eyebrow::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: var(--gray-300);
  flex-shrink: 0;
}

.section-eyebrow::after {
  display: none;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--black);
  text-align: left;
  margin-bottom: 64px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ========== NUMBERS ========== */
.numbers {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.numbers-content {
  position: relative;
  z-index: 1;
  padding: 140px clamp(32px, 6vw, 100px) 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.numbers > .section-eyebrow {
  top: 140px;
}

.numbers-header {
  margin-bottom: 72px;
}

/* Hero stat — massive centered number */
.numbers-hero {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 80px;
  padding-bottom: 0;
  flex-wrap: wrap;
}

.numbers-hero-bar {
  width: 100%;
  margin-top: 48px;
}

.numbers-hero-bar-scale {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.numbers-hero-bar-scale span {
  font-size: 10px;
  color: rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
  font-weight: 400;
}

.numbers-hero-bar-track {
  width: 100%;
  height: 3px;
  background: rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.numbers-hero-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #dbb164);
  transition: width 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.numbers.chart-animated .numbers-hero-bar-fill {
  width: 100%;
}

.numbers-hero-number {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-shrink: 0;
}

.numbers-hero-number .number-value {
  font-family: var(--font-heading);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 0.85;
}

.numbers-hero-unit {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
  opacity: 0.7;
}

.numbers-hero-label {
  display: flex;
  align-items: center;
  gap: 24px;
}

.numbers-hero-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.numbers-hero-label p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Stats grid — 4 cards */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.numbers-card {
  padding: 40px 32px;
  position: relative;
}

.numbers-card:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.08);
}

.numbers-card-number {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
  display: inline;
}

.numbers-card-unit {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--gray-400);
  letter-spacing: -0.02em;
  margin-left: 8px;
}

.numbers-card-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.numbers-card-label {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* ========== OFFICES MAP ========== */
.offices-map {
  padding: 120px 0;
  background: rgba(20, 20, 20, 0.55);
  position: relative;
  z-index: 2;
}

.offices-map > .section-eyebrow {
  color: rgba(255,255,255,0.4);
  top: 120px;
}

.offices-map > .section-eyebrow::before {
  background: rgba(255,255,255,0.25);
}

.offices-map .section-title {
  color: #fff;
}

.offices-map .section-header {
  margin-bottom: 48px;
}

.offices-map-wrapper {
  margin-top: 48px;
}

.offices-map-legend {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.legend-item span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 0;
}

.legend-item--office span {
  background: var(--gold);
}

.legend-item--rep span {
  background: rgba(201,150,59,0.4);
  border: 1px solid var(--gold);
}

.offices-map-svg {
  width: 100%;
  height: auto;
  max-height: 500px;
}

.offices-map-svg rect {
  /* hover efekt odstraněn — body na mapě se nezvětšují */
}

.map-city {
  font-family: var(--font-body);
  font-size: 14px;
  fill: rgba(255,255,255,0.85);
  dominant-baseline: middle;
  transition: fill 0.3s;
}

.map-city--bold {
  font-weight: 700;
  fill: #fff;
  font-size: 16px;
}

/* ========== SEGMENTS ========== */
.segments {
  padding: 160px 0;
  background: var(--white);
  position: relative;
}

.segments::after {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.15;
}

.segments-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.segments-left {
  padding-right: 48px;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.segments > .section-eyebrow {
  top: 160px;
}

.segments-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.03em;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.segments-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 48px;
}

.segments-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}

.segments-cta:hover { color: var(--gold); }

.segments-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s;
}

.segments-cta:hover .segments-arrow {
  border-color: var(--gold);
  color: var(--gold);
}

.segments-right {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 12px 40px;
}

.segments-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.segments-item:last-child {
  border-bottom: none;
}

.segments-item:hover {
  transform: translateX(8px);
}

.segments-item h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.3s;
}

.segments-item:hover h4 { color: var(--gold); }

.segments-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.segments-item-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  font-size: 18px;
  color: var(--gray-400);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.segments-item:hover .segments-item-arrow {
  border-color: var(--gold);
  color: #fff;
  background: var(--gold);
  transform: translateX(4px);
}

/* ========== SUCCESSION ========== */
.succession {
  padding: 160px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.succession .section-eyebrow {
  position: static;
  writing-mode: horizontal-tb;
  transform: none;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 6px;
  margin-bottom: 24px;
}

.succession .section-eyebrow::before {
  display: none;
}

.succession::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,150,59,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.succession-layout {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.succession .section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 12px;
}

.succession-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.succession-desc {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 48px;
}

.succession .segments-cta {
  color: var(--black);
}

.succession-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.succession-cta .btn {
  justify-content: center;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.btn-glass-light {
  background: rgba(0,0,0,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--dark);
  border: 1px solid rgba(0,0,0,0.10);
}

.btn-glass-light:hover {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.18);
  color: var(--dark);
}

.btn-glass-dark {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.btn-glass-dark:hover {
  background: rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* ========== PORTFOLIO FULLWIDTH ========== */
.portfolio-fullwidth {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.portfolio-bg,
.portfolio-bg-next {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(15%);
  transition: opacity 1.5s ease;
}

.portfolio-bg {
  opacity: 1;
  z-index: 0;
}

.portfolio-bg-next {
  opacity: 0;
  z-index: 1;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(10,10,10,0.7);
  pointer-events: none;
}

.portfolio-header {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: left;
  padding: 0 clamp(32px, 5vw, 80px);
}

.portfolio-fullwidth > .section-eyebrow {
  color: rgba(255,255,255,0.4);
}

.portfolio-fullwidth > .section-eyebrow::before {
  background: rgba(255,255,255,0.25);
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  letter-spacing: -0.3px;
  text-align: center;
}

.portfolio-columns {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.portfolio-col {
  display: flex;
  flex-direction: column;
  padding: 0 40px 60px;
  padding-top: clamp(280px, 45%, 400px);
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.4s;
}

.portfolio-col:last-child {
  border-right: none;
}

.portfolio-col:hover {
  background: rgba(255,255,255,0.05);
}

.portfolio-col h4 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.portfolio-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 28px;
}

.portfolio-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  margin-top: auto;
}

.portfolio-link:hover {
  color: var(--gold);
}

/* ========== WHY US ========== */
.why-us {
  padding: 160px 0;
  background: #fff;
}

.why-us .section-header {
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  padding: 40px 28px 36px;
  border-top: 2px solid var(--gray-100);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.why-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
}

.why-card-index {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 300;
  background: linear-gradient(180deg, rgba(201,150,59,0.12) 0%, rgba(201,150,59,0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.why-card:hover .why-card-index {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.3;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.3s;
}

.why-card:hover h4 {
  color: var(--gold);
}

.why-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 160px 0;
  background: var(--black);
}

.testimonials > .section-eyebrow { color: rgba(255,255,255,0.4); }
.testimonials > .section-eyebrow::before { background: rgba(255,255,255,0.25); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-header { margin-bottom: 48px; }

.testimonials-grid {
  position: relative;
  min-height: 300px;
}

.testimonials-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  pointer-events: none;
}

.testimonials-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px;
}

.testimonial-quote {
  font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 0.5;
  margin-bottom: 20px;
  color: var(--gold);
}

.testimonial-card p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.testimonial-author span {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 0;
}

/* ========== LOGO STRIP ========== */
.logo-strip {
  padding: 216px 0;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.logo-strip::before,
.logo-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.logo-strip-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: logoScroll 20s linear infinite;
  width: max-content;
}

.logo-strip-item {
  height: 48px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.4s ease;
}

.logo-strip-item:hover {
  filter: grayscale(0%);
  opacity: 0.8;
}

.logo-strip-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
  border: 1.5px solid var(--gray-200);
  padding: 14px 32px;
  border-radius: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.logo-strip-text:hover {
  opacity: 1;
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== FOUNDERS QUOTE — Contera style ========== */
.founders-quote {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.founders-slides {
  position: relative;
  height: 100vh;
}

.founders-slide {
  display: grid;
  grid-template-columns: 60% 40%;
  height: 100vh;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.founders-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: all;
}

.founders-text {
  background: var(--off-white);
  padding: clamp(48px, 6vw, 100px) clamp(48px, 6vw, 100px) clamp(48px, 6vw, 100px) clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founders-quote-mark {
  font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
  font-size: 110px;
  line-height: 0.5;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 900;
}

.founders-text blockquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.55;
  margin-bottom: 40px;
}

.founders-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.founders-author strong {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}

.founders-author span {
  font-size: 14px;
  color: var(--gray-400);
}

.btn-dark {
  display: inline-block;
  background: var(--black);
  color: #fff;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
  align-self: flex-start;
}

.btn-dark:hover {
  background: var(--gold);
}

.founders-photo {
  background-size: cover;
  background-position: center 30%;
  height: 100vh;
}

/* Founders quote na podstránkách — fixní výška, ne 100vh */
body.page-subpage .founders-quote {
  overflow: visible;
}

body.page-subpage .founders-quote .founders-slides {
  height: auto;
}

body.page-subpage .founders-quote .founders-slide {
  height: auto;
  min-height: 760px;
  grid-template-columns: 60% 40%;
}

/* Mirror — photo na levé straně (např. Pochylý hledí směrem k textu vpravo) */
body.page-subpage .founders-quote.is-mirror .founders-slide {
  grid-template-columns: 40% 60%;
}

body.page-subpage .founders-quote .founders-photo {
  height: auto;
  min-height: 760px;
  background-position: center 50%;
}

.founders-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 84px;
  height: 84px;
  background: var(--black);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  /* position at the border between text (60%) and photo (40%) */
  left: calc(60% - 42px);
}

.founders-nav:hover {
  background: var(--gold);
}

/* ========== BLOG PREVIEW — FILMSTRIP ========== */
.blog-preview {
  padding: 160px 0 120px;
  background: var(--off-white);
  overflow: hidden;
}

.blog-preview > .container {
  max-width: 1400px;
  padding: 0 clamp(32px, 6vw, 100px);
}

/* Blog list — minimalist */
.blog-list {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.blog-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.4s ease;
}

.blog-list-item:hover {
  padding-left: 16px;
}

.blog-list-item h4 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.35;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.blog-list-item:hover h4 {
  color: var(--gold);
}

.blog-list-arrow {
  font-size: 24px;
  color: var(--gray-300);
  flex-shrink: 0;
  margin-left: 32px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.blog-list-item:hover .blog-list-arrow {
  color: var(--gold);
  transform: translateX(6px);
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 160px 0;
  background: rgba(10,10,10,0.55);
  text-align: center;
}

/* Final CTA na podstránkách — průhledná maska (sticky intro-hero prosvítá s linkami) */
body.page-subpage .final-cta {
  background: rgba(10,10,10,0.55);
}

/* Tmavé body pozadí na podstránkách — pokud sticky intro-hero v některém okamžiku
   nepokrývá viewport, vidíme tmavou plochu místo bílé/šedé */
body.page-subpage {
  background: var(--black);
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta > .container > p {
  color: rgba(255,255,255,0.45);
  font-size: 16px;
  margin-bottom: 48px;
}

.cta-form {
  max-width: 100%;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}

.form-field {
  position: relative;
  margin-bottom: 48px;
}

.form-field-full {
  width: 100%;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  transition: border-color 0.3s;
  resize: none;
}

.form-field label {
  position: absolute;
  top: 12px;
  left: 0;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  transition: all 0.3s;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: -16px;
  font-size: 10px;
  color: var(--gold);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: transparent;
}

/* ===== Contact Form 7 — kompatibilita s bespoke formuláři ===== */
.final-cta .wpcf7-form {
  max-width: 100%;
  margin: 0 auto;
}

/* Obal CF7 kolem inputu nesmí rozbít layout */
.form-field .wpcf7-form-control-wrap {
  display: block;
}

/* Plovoucí label funguje i s CF7 obalem (input zabalený v <span>) → přes :has() */
.form-field:has(input:focus) label,
.form-field:has(input:not(:placeholder-shown)) label,
.form-field:has(textarea:focus) label,
.form-field:has(textarea:not(:placeholder-shown)) label {
  top: -16px;
  font-size: 10px;
  color: var(--gold);
}

/* Validační a odpovědní hlášky CF7 na tmavém pozadí */
.wpcf7-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.wpcf7-form.sent .wpcf7-response-output {
  border-color: var(--gold);
}
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #e25555;
  font-size: 12px;
}
.wpcf7-form .wpcf7-not-valid {
  border-bottom-color: #e25555 !important;
}
.wpcf7-spinner {
  margin: 0 0 0 12px;
}

/* Skrytý honeypot (plugin Honeypot for Contact Form 7) */
.wpcf7-honeypot,
.wpcf7-form .wpcf7cf-hidden {
  display: none !important;
}

/* CV upload: skrýt nativní file input, klikatelný je stylizovaný label */
.form-file-label input[type="file"] {
  display: none;
}
.form-file-label .wpcf7-form-control-wrap {
  display: inline;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 24px;
}

.form-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s;
}

.form-consent input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.cta-phone {
  margin-top: 28px;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
}

.cta-phone a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

/* ========== FOOTER ========== */
.footer {
  background: #050505;
  padding: 72px 0 32px;
}

.footer > .container {
  max-width: 100%;
  padding: 0 clamp(48px, 5vw, 96px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-col > p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 0;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: #fff;
}

.footer-bottom {
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ========== ANIMATIONS ========== */

/* Pure blur-fade — no movement, just materializes */
.fade-in {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  filter: blur(0);
}

/* Staggered delays for child elements */
.fade-in.visible:nth-child(2) { transition-delay: 0.12s; }
.fade-in.visible:nth-child(3) { transition-delay: 0.24s; }
.fade-in.visible:nth-child(4) { transition-delay: 0.36s; }

/* Scale-up variant — zoom from slightly smaller */
.fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  filter: blur(6px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Slide-in from left with blur */
.slide-in-left {
  opacity: 0;
  transform: translateX(-72px);
  filter: blur(6px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Slide-in from right with blur */
.slide-in-right {
  opacity: 0;
  transform: translateX(72px);
  filter: blur(6px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Rise-up — subtle vertical, for cards/items */
.rise-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.rise-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section title accent glow */
.section-title.visible .accent {
  animation: accentGlow 1.5s ease 0.4s both;
}

@keyframes accentGlow {
  0% { opacity: 0.5; filter: brightness(0.8); }
  50% { filter: brightness(1.3); }
  100% { opacity: 1; filter: brightness(1); }
}

/* ========== RESPONSIVE ========== */
/* Svislé boční štítky (.section-eyebrow) skrýt dřív než se zúží layout — jinak v levém okraji tísní text */
@media (max-width: 1280px) {
  .section-eyebrow { display: none !important; }
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-card:nth-child(2) { border-right: none; }
  .numbers-hero { flex-direction: column; gap: 24px; }
  .segments-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { gap: 24px; flex-wrap: wrap; }
  .section-eyebrow { display: none !important; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: 36px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 16px; }
  .numbers { padding: 80px 0; }
  .segments { padding: 80px 0; }
  .portfolio-fullwidth { min-height: 400px; }
  .why-us { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .case-study { padding: 80px 0; }
  .blog-preview { padding: 80px 0; }
  .final-cta { padding: 80px 0; }
  .section-title { margin-bottom: 40px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .numbers-card:not(:last-child) { border-right: none; }
  .numbers-hero-bar-scale span:nth-child(odd):not(:last-child) { display: none; }
  .offices-map-legend { flex-direction: column; gap: 8px; }
  .segments-item h4 { font-size: 22px; }
  .portfolio-columns { grid-template-columns: repeat(2, 1fr); }
  .portfolio-col:nth-child(2) { border-right: none; }
  .founders-slide { grid-template-columns: 1fr; min-height: auto; }
  .founders-photo { min-height: 350px; }
  .founders-nav { left: auto; right: 20px; top: auto; bottom: 20px; transform: none; }
  .section-eyebrow { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .succession-cta { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-bottom { flex-direction: column; gap: 24px; }
  .trust-bar { padding: 14px 20px; gap: 16px; }
  .trust-item { font-size: 10px; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-cta { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .numbers-content { padding: 64px 20px 56px; }
  .testimonials-slide { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px 24px; }
  .portfolio-columns { grid-template-columns: 1fr; }
  .portfolio-col { border-right: none !important; }
  .portfolio-col h4 { font-size: 22px; }
  .portfolio-col { padding: 40px 24px; }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 32px;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5);
}

/* Force light text when mobile menu is open — overrides všechny scrolled/subpage color rules */
.navbar .nav-links.open a,
.navbar.scrolled .nav-links.open a,
body.page-subpage .navbar .nav-links.open a,
body.page-subpage .navbar.scrolled .nav-links.open a {
  color: rgba(255,255,255,0.9) !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 0;
}

.navbar .nav-links.open a.active,
.navbar .nav-links.open a:hover,
body.page-subpage .navbar .nav-links.open a.active,
body.page-subpage .navbar .nav-links.open a:hover {
  color: var(--gold) !important;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ============================================ */
/* PAGE HERO — sdílený komponent pro podstránky  */
/* ============================================ */

/* Subpage body — navbar viditelný od začátku, padding-top na navbar height */
body.page-subpage {
  padding-top: 0;
}

/* Page subpage — intro hero zachovává chování z HP (sticky + scroll fade), jen menší velikost */
body.page-subpage .intro-hero {
  height: 100vh;
  min-height: 100vh;
}

body.page-subpage .intro-hero__brand {
  text-align: center;
  padding: 0 clamp(24px, 5vw, 64px);
  max-width: 1100px;
}

body.page-subpage .intro-hero__scroll {
  display: none;
}

/* Navbar na podstránkách — viditelný od začátku (tmavé pozadí nad hero, bílé po scrollu) */
body.page-subpage .navbar {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(0) !important;
  opacity: 1 !important;
}

body.page-subpage .navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* Logo bílé nad hero, tmavé po scrollu */
body.page-subpage .nav-logo-white { display: block; }
body.page-subpage .nav-logo-dark { display: none; }
body.page-subpage .navbar.scrolled .nav-logo-white { display: none; }
body.page-subpage .navbar.scrolled .nav-logo-dark { display: block; }

/* Linky bílé nad hero, tmavé po scrollu */
body.page-subpage .navbar .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}
body.page-subpage .navbar.scrolled .nav-links a {
  color: var(--gray-800);
}
body.page-subpage .navbar .nav-links a.active,
body.page-subpage .navbar .nav-links a:hover {
  color: var(--gold);
}

/* Page hero — TEXT překrývající intro hero */
.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.page-hero-title .accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  body.page-subpage .intro-hero { height: 100vh; min-height: 100vh; }
  .page-hero-title { font-size: 36px; }
}

/* Polotransparentní sekce (prosvítá intro hero) */
.section-translucent {
  background: rgba(10,10,10,0.78) !important;
  color: #fff;
}

.section-translucent .section-title,
.section-translucent h3,
.section-translucent h4 {
  color: #fff !important;
}

.section-translucent p {
  color: rgba(255,255,255,0.78) !important;
}

.section-translucent .reference-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
}

.section-translucent .reference-card blockquote {
  color: rgba(255,255,255,0.92) !important;
}

.section-translucent .reference-card-author {
  color: var(--gold) !important;
  border-top-color: rgba(255,255,255,0.1);
}

/* List "Co řešíme" v translucent sekci — světlý text + světlejší border */
.section-translucent .page-segment-list li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}

.section-translucent .page-segment-intro p {
  color: rgba(255,255,255,0.78) !important;
}

/* ============================================ */
/* PAGE: O NÁS                                   */
/* ============================================ */

.page-onas-story {
  padding: 140px 0 120px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Decorative year backdrop — výrazná outline typografie v pozadí */
.page-onas-story-backdrop {
  position: absolute;
  top: 80px;
  right: -40px;
  font-family: var(--font-heading);
  font-size: clamp(140px, 18vw, 280px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 150, 59, 0.08);
  text-stroke: 1px rgba(201, 150, 59, 0.08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.page-onas-story > .container {
  position: relative;
  z-index: 1;
}

/* HEADER — title přes celou šířku, magazine-style */
.page-onas-story-header {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.page-onas-story-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0;
}

/* GRID — asymetrický 7fr text / 5fr aside (foto + caption + statistiky) */
.page-onas-story-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
}

/* TEXT COLUMN */
.page-onas-story-text {
  max-width: 640px;
}

/* Lede — první odstavec větší, italic-feel přes serif */
.page-onas-story-lede {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--black);
  margin-bottom: 40px;
  letter-spacing: -0.005em;
}

/* Drop cap — gold serif, magazine-style */
.page-onas-story-dropcap {
  float: left;
  font-family: var(--font-heading);
  font-size: clamp(72px, 8vw, 104px);
  font-weight: 300;
  line-height: 0.88;
  color: var(--gold);
  margin: 6px 14px -6px 0;
  letter-spacing: -0.04em;
}

/* Body paragrafy */
.page-onas-story-text > p:not(.page-onas-story-lede) {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 24px;
}

.page-onas-story-text > p:not(.page-onas-story-lede) strong {
  font-weight: 600;
  color: var(--black);
}

/* SIGNATURE — gold rule + jména zakladatelů */
.page-onas-story-signature {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 0;
}

.page-onas-story-signature-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.page-onas-story-signature-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.page-onas-story-signature-names {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.3;
  color: var(--black);
  white-space: nowrap;
}

.page-onas-story-signature-names strong {
  font-weight: 400;
}

.page-onas-story-signature-role {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

/* ASIDE — foto + caption + sticky statistiky */
.page-onas-story-aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-onas-story-photo {
  background-size: cover;
  background-position: center;
  min-height: 600px;
  position: relative;
  box-shadow:
    0 40px 100px -30px rgba(10, 20, 40, 0.4),
    0 16px 40px -12px rgba(0, 0, 0, 0.22);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-onas-story-photo:hover {
  transform: translateY(-4px);
}

/* Caption pod fotkou — magazine credit */
.page-onas-story-caption {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 4px;
}

.page-onas-story-caption-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.page-onas-story-caption > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.page-onas-story-caption strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.01em;
}

.page-onas-story-caption span {
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* Sticky statistiky pod fotkou */
.page-onas-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.page-onas-story-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-onas-story-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
}

.page-onas-story-stat-num > span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 4px;
  vertical-align: super;
}

.page-onas-story-stat-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
  line-height: 1.4;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 1024px) {
  .page-onas-story-grid { grid-template-columns: 1fr; gap: 64px; }
  .page-onas-story-aside { position: static; }
  .page-onas-story-text { max-width: 100%; }
}

/* Timeline */
.page-onas-timeline {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}

.page-onas-timeline-list {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
}

.page-onas-timeline-list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0,0,0,0.1);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 32px 48px;
}

.timeline-item:nth-child(odd) {
  margin-right: auto;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before { right: -6px; }
.timeline-item:nth-child(even)::before { left: -6px; }

.timeline-year {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  display: block;
}

.timeline-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-onas-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-onas-story-photo { min-height: 360px; }

  .page-onas-timeline-list::before { left: 12px; }
  .timeline-item { width: 100%; padding: 24px 0 24px 48px; text-align: left !important; margin: 0 !important; }
  .timeline-item::before { left: 6px !important; right: auto !important; }
}

/* Hodnoty grid (znovupoužití numbers-grid + úpravy) */
.page-values {
  padding: 120px 0;
  background: #fff;
}

.page-values .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.page-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.page-value-card {
  padding: 48px 32px;
  text-align: center;
  position: relative;
}

.page-value-card:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.08);
}

.page-value-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.page-value-card h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--black);
}

.page-value-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-values-grid { grid-template-columns: repeat(2, 1fr); }
  .page-value-card:nth-child(2) { border-right: none; }
  .page-value-card:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,0.08); }
}

@media (max-width: 480px) {
  .page-values-grid { grid-template-columns: 1fr; }
  .page-value-card { border-right: none !important; }
}

/* ============================================ */
/* PAGE: STRATEGIE                               */
/* ============================================ */

.page-strategie-philosophy {
  padding: 120px 0;
  background: #fff;
}

.page-strategie-philosophy .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.page-strategie-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.philosophy-pillar {
  padding: 48px 32px;
  text-align: left;
}

.philosophy-pillar:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.08);
}

.philosophy-pillar-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.philosophy-pillar h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--black);
}

.philosophy-pillar p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Process — 4 kroky */
.page-strategie-process {
  padding: 120px 0;
  background: var(--off-white);
}

.page-strategie-process .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(201,150,59,0.3);
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-step-num {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--black);
}

.process-step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-strategie-philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-pillar:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
}

/* ============================================ */
/* PAGE: STRATEGIE — drill-down + viz             */
/* ============================================ */

/* Klíčové metriky portfolia — 2 sloupce */
.strategie-metrics {
  padding: 120px 0;
  background: var(--off-white);
}

.strategie-metrics .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.strategie-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.strategie-metric-block h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

/* Donut chart pomocí conic-gradient — subtilní (tenký prstenec) */
.strategie-donut {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

.strategie-donut-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    rgba(201, 150, 59, 0.9) 0% 55%,
    rgba(51, 51, 51, 0.9) 55% 85%,
    rgba(153, 153, 153, 0.9) 85% 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategie-donut-circle::after {
  content: '';
  position: absolute;
  inset: 22px;
  background: var(--off-white);
  border-radius: 50%;
}

.strategie-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strategie-donut-legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.strategie-donut-legend-color {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.strategie-donut-legend-text {
  display: flex;
  flex-direction: column;
}

.strategie-donut-legend-text strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
}

.strategie-donut-legend-text span {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 2px;
}

/* Horizontální bary */
.strategie-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.strategie-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strategie-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
}

.strategie-bar-label span:last-child {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 400;
}

.strategie-bar-track {
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Track jako static progress bar — gradient s podílem nastaveným přes data-width */
.strategie-bar-fill-bg {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.strategie-bar-fill-bg[data-width="70"] { width: 70%; }
.strategie-bar-fill-bg[data-width="30"] { width: 30%; }

/* Drill-down sekce — karty s podílem */
.strategie-drill {
  padding: 120px 0;
  background: #fff;
}

.strategie-drill.dark-bg {
  background: var(--off-white);
}

.strategie-drill .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.strategie-drill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.strategie-drill-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.strategie-drill-card {
  background: var(--off-white);
  padding: 40px 32px;
  border-left: 3px solid var(--gold);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.strategie-drill.dark-bg .strategie-drill-card {
  background: #fff;
}

.strategie-drill-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.strategie-drill-card-share {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.strategie-drill-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.strategie-drill-card-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Vertikální timeline procesu */
.strategie-process-v2 {
  padding: 120px 0;
  background: #fff;
}

.strategie-process-v2 .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.strategie-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.strategie-timeline::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--gray-100);
}

.strategie-timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}

.strategie-timeline-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.strategie-timeline-content {
  padding-top: 8px;
}

.strategie-timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.strategie-timeline-content .timeline-duration {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 150, 59, 0.08);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.strategie-timeline-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.strategie-timeline-content .timeline-output {
  font-size: 14px;
  color: var(--gray-800);
  background: var(--off-white);
  border-left: 2px solid var(--gold);
  padding: 12px 16px;
  font-style: italic;
}

@media (max-width: 1024px) {
  .strategie-drill-grid { grid-template-columns: repeat(2, 1fr); }
  .strategie-drill-grid.three-cols { grid-template-columns: 1fr; }
  .strategie-metrics-grid { grid-template-columns: 1fr; gap: 56px; }
  .strategie-donut { grid-template-columns: 160px 1fr; gap: 24px; }
  .strategie-donut-circle { width: 160px; height: 160px; }
  .strategie-donut-circle::after { inset: 18px; }
}

@media (max-width: 600px) {
  .strategie-drill-grid { grid-template-columns: 1fr; }
  .strategie-timeline-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .strategie-timeline-num { width: 56px; height: 56px; font-size: 18px; }
  .strategie-timeline::before { left: 27px; }
}

/* ============================================ */
/* PAGE: INVESTORI                               */
/* ============================================ */

/* Sticky anchor nav — sedí těsně pod navbar (top:0), žádný gap, žádné dvojité linky */
.page-investori-anchor {
  position: sticky;
  top: 73px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 50;
}

.page-investori-anchor-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.page-investori-anchor-list a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: 10px 20px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  position: relative;
}

.page-investori-anchor-list a:hover,
.page-investori-anchor-list a.active {
  color: var(--gold);
}

.page-investori-anchor-list a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* Segment sekce */
.page-segment {
  padding: 120px 0;
  scroll-margin-top: 140px;
}

.page-segment:nth-child(odd) {
  background: #fff;
}

.page-segment:nth-child(even) {
  background: var(--off-white);
}

.page-segment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

/* Velký číselný watermark v pozadí (segment investorů) */
.page-segment {
  position: relative;
  overflow: hidden;
}

.page-segment-bignum {
  position: absolute;
  top: 40px;
  right: clamp(20px, 5vw, 80px);
  font-family: var(--font-heading);
  font-size: clamp(160px, 22vw, 320px);
  font-weight: 200;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--gold);
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Na translucent sekci (Veřejný sektor) — světlejší kvůli tmavému pozadí */
.section-translucent .page-segment-bignum {
  color: #fff;
  opacity: 0.06;
}

.page-segment-intro h3 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--black);
}

.page-segment-intro .page-hero-eyebrow {
  text-align: left;
  margin-bottom: 16px;
}

.page-segment-intro p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.page-segment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-segment-list li {
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.6;
}

.page-segment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.page-segment-list li:last-child {
  border-bottom: none;
}

/* Reference obcí karty */
.page-references {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.reference-card {
  background: #fff;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.reference-card-quote {
  font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 24px;
}

.reference-card blockquote {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.reference-card-author {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.3px;
  font-weight: 500;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .page-segment-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-references { grid-template-columns: 1fr; }
  .reference-card { padding: 32px 24px; }
  .page-investori-anchor-list { gap: 0; padding: 8px 0; }
  .page-investori-anchor-list a { padding: 8px 12px; font-size: 12px; }
}

/* ============================================ */
/* PAGE: KONTAKT                                 */
/* ============================================ */

.page-kontakt-offices {
  padding: 120px 0;
  background: #fff;
}

.page-kontakt-offices .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.kontakt-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.kontakt-office {
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.08);
  margin-left: -1px;
  margin-top: -1px;
  transition: background 0.3s ease;
}

.kontakt-office:hover {
  background: var(--off-white);
}

.kontakt-office-city {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.kontakt-office-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.kontakt-office address {
  font-style: normal;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.kontakt-office a {
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.kontakt-office a:hover {
  color: var(--gold);
}

/* Mapa */
.page-kontakt-map {
  height: 480px;
  position: relative;
  background: var(--off-white);
}

#kontakt-map {
  width: 100%;
  height: 100%;
}

/* SÍDLO SPOLEČNOSTI — dominantní trust block na /kontakt */
.kontakt-headquarters {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}

.kontakt-hq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Identity column — sídlo název + adresa + kontakt */
.kontakt-hq-identity {
  position: relative;
}

.kontakt-hq-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.kontakt-hq-name {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0 0 32px 0;
  line-height: 1.1;
}

.kontakt-hq-address {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin: 0 0 32px 0;
}

.kontakt-hq-contact {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 420px;
}

.kontakt-hq-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kontakt-hq-contact-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
}

.kontakt-hq-contact-item a {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.kontakt-hq-contact-item a:hover {
  color: var(--gold);
}

.kontakt-hq-contact-note {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Trust column — Obchodní rejstřík + ČNB */
.kontakt-hq-trust {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 56px;
  border-left: 1px solid var(--gold);
}

.kontakt-hq-trust-item {
  padding: 0;
}

.kontakt-hq-trust-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.kontakt-hq-trust-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0;
  font-family: var(--font-body);
}

.kontakt-hq-trust-item p strong {
  color: var(--black);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .kontakt-hq-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .kontakt-hq-trust {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--gold);
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .kontakt-headquarters {
    padding: 80px 0;
  }
  .kontakt-hq-grid {
    gap: 40px;
  }
}

/* FAQ — často kladené dotazy s FAQPage schema */
.kontakt-faq {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

.kontakt-faq-list {
  max-width: 880px;
  margin: 0 auto 80px;
}

.kontakt-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.kontakt-faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.kontakt-faq-question {
  list-style: none;
  cursor: pointer;
  padding: 28px 56px 28px 0;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.4;
  position: relative;
  transition: color 0.3s ease;
}

.kontakt-faq-question::-webkit-details-marker {
  display: none;
}

.kontakt-faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kontakt-faq-item[open] .kontakt-faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.kontakt-faq-question:hover {
  color: var(--gold);
}

.kontakt-faq-answer {
  padding: 0 56px 28px 0;
  animation: faqOpen 0.4s ease;
}

.kontakt-faq-answer p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
  margin: 0;
}

.kontakt-faq-answer a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s ease;
}

.kontakt-faq-answer a:hover {
  color: var(--gold);
}

.kontakt-faq-answer strong {
  color: var(--black);
  font-weight: 600;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.kontakt-seo-nap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-top: 56px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.kontakt-seo-nap-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kontakt-seo-nap-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.kontakt-seo-nap-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0;
  font-family: var(--font-body);
}

.kontakt-seo-nap-item p a {
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kontakt-seo-nap-item p a:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .kontakt-seo-nap {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .kontakt-faq {
    padding: 80px 0;
  }
  .kontakt-seo-nap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* PRO MÉDIA — press kit sekce */
.kontakt-media {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}

.kontakt-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.kontakt-media-card {
  background: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 2px solid var(--gold);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.kontakt-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(10, 20, 40, 0.15);
}

.kontakt-media-card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.kontakt-media-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.kontakt-media-card-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0 0 24px 0;
}

.kontakt-media-card-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.kontakt-media-card-contact a {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 0.3s ease;
}

.kontakt-media-card-contact a:first-child {
  color: var(--gold);
}

.kontakt-media-card-contact a:hover {
  color: var(--gold);
}

.kontakt-media-downloads,
.kontakt-media-topics {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kontakt-media-downloads li,
.kontakt-media-topics li {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.kontakt-media-downloads li::before {
  content: '↓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  top: 1px;
}

.kontakt-media-topics li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: bold;
}

.kontakt-media-downloads a {
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kontakt-media-downloads a:hover {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .kontakt-media-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .kontakt-media {
    padding: 80px 0;
  }
  .kontakt-media-card {
    padding: 32px 28px;
  }
}

/* Rychlý kontakt nad sídlem — kompaktní horizontální banner */
.page-kontakt-quick {
  padding: 56px 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.page-kontakt-quick + .kontakt-headquarters {
  padding-top: 80px;
}

.page-kontakt-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-kontakt-quick-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.page-kontakt-quick-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
  display: block;
}

.page-kontakt-quick-value {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.015em;
  transition: color 0.3s ease;
  display: inline-block;
}

.page-kontakt-quick-value:hover {
  color: var(--gold);
}

.page-kontakt-quick-item > p {
  margin: 0 !important;
}

@media (max-width: 768px) {
  .page-kontakt-quick-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .kontakt-offices-grid { grid-template-columns: 1fr; }
  .page-kontakt-quick-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-kontakt-map { height: 360px; }
}

/* Kontaktní osoby — karty s fotografiemi */
/* REGIONÁLNÍ KONTAKTY — SEO directory layout */
.kontakt-regions {
  padding: 140px 0 120px;
  background: #fff;
}

.kontakt-regions .section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Region block — editorial chapter */
.kontakt-region {
  margin-bottom: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.kontakt-region:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.kontakt-region-header {
  margin-bottom: 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kontakt-region-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 7px 14px;
  border: 1px solid var(--gold);
  margin-bottom: 28px;
}

.kontakt-region-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0;
  line-height: 1.1;
  order: 1;
  display: flex;
  align-items: center;
}

.kontakt-region-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-left: 32px;
  min-width: 80px;
}

.kontakt-region-meta {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 20px 0 0 0;
  order: 2;
}

.kontakt-region-address {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--gray-600);
  margin: 12px 0 0 0;
  font-weight: 400;
  order: 3;
  line-height: 1.6;
}

.kontakt-region-address::before {
  content: '↗ ';
  color: var(--gold);
  font-weight: 500;
  margin-right: 4px;
}

/* Person list — editorial directory */
.kontakt-region-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kontakt-region-list--two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

.kontakt-region-person {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease, padding 0.3s ease;
}

.kontakt-region-person:hover {
  background: rgba(201, 150, 59, 0.03);
  padding-left: 16px;
  padding-right: 16px;
}

.kontakt-region-list--two-col .kontakt-region-person {
  /* tenčí padding pro denser listing */
  padding: 16px 0;
}

.kontakt-region-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kontakt-region-info strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.005em;
}

.kontakt-region-info span {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.kontakt-region-person--support .kontakt-region-info span {
  color: var(--gray-500);
}

.kontakt-region-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.kontakt-region-contact a {
  font-size: 14px;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: var(--font-body);
}

.kontakt-region-contact a:first-child {
  color: var(--black);
  font-weight: 500;
}

.kontakt-region-contact a:hover {
  color: var(--gold);
}

/* Sekundární sekce — regional zastoupení (sousedí s border-bottom Chrudim, žádná duplicitní linka) */
.kontakt-region--secondary {
  margin-top: 0;
}

.kontakt-region--secondary .kontakt-region-title {
  font-size: clamp(22px, 2vw, 28px);
  color: var(--gray-800);
}

/* Responsive */
@media (max-width: 768px) {
  .kontakt-region {
    margin-bottom: 56px;
    padding-bottom: 40px;
  }

  .kontakt-region-list--two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kontakt-region-person {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .kontakt-region-person:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .kontakt-region-contact {
    text-align: left;
  }
}

/* === LEGACY .kontakt-people styles (unused after redesign) === */
.kontakt-people {
  padding: 140px 0 120px;
  background: #fff;
}

.kontakt-people .section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Editorial 2-col grid; první karta (Brno sídlo) přes plnou šířku */
.kontakt-people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.kontakt-person:first-child {
  grid-column: 1 / -1;
}

/* Card — horizontal layout: photo + content */
.kontakt-person {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.kontakt-person:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(10, 20, 40, 0.25),
              0 12px 24px -8px rgba(0, 0, 0, 0.1);
}

/* Featured Brno: larger photo */
.kontakt-person:first-child {
  grid-template-columns: 320px 1fr;
}

.kontakt-person:first-child .kontakt-person-photo {
  min-height: 360px;
}

/* Photo column — square portrait */
.kontakt-person-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background-size: cover;
  background-position: center top;
  position: relative;
  border-radius: 0;
  margin: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.kontakt-person:hover .kontakt-person-photo {
  transform: scale(1.03);
}

/* Tenký zlatý sloupec mezi photo a content (premium accent) */
.kontakt-person::before {
  content: '';
  position: absolute;
  left: 220px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold);
  opacity: 0.4;
  z-index: 1;
}

.kontakt-person:first-child::before {
  left: 320px;
}

/* Content column */
.kontakt-person-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kontakt-person:first-child .kontakt-person-content {
  padding: 56px 64px;
}

/* Featured sídlo badge nahoře */
.kontakt-person-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  align-self: flex-start;
}

.kontakt-person-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.kontakt-person:first-child .kontakt-person-name {
  font-size: clamp(28px, 3vw, 36px);
}

.kontakt-person-role {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 24px;
}

.kontakt-person-divider {
  width: 48px;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 0 0 24px 0;
}

.kontakt-person-location {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 4px 0;
  letter-spacing: -0.005em;
}

.kontakt-person:first-child .kontakt-person-location {
  font-size: 22px;
}

.kontakt-person-region {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 24px 0;
  font-style: normal;
}

.kontakt-person-contact {
  font-size: 14.5px;
  color: var(--gray-800);
  margin: 0 0 6px 0;
  font-family: var(--font-body);
}

.kontakt-person-contact a {
  color: var(--gray-800);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.kontakt-person-contact a:hover {
  color: var(--gold);
}

.kontakt-person-cta {
  margin-top: 28px;
}

.kontakt-person-cta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s ease, color 0.3s ease;
}

.kontakt-person-cta a::after {
  content: '→';
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 0.3s ease;
}

.kontakt-person-cta a:hover {
  color: var(--gold);
  gap: 18px;
}

.kontakt-person-cta a:hover::after {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .kontakt-people-grid { grid-template-columns: 1fr; }
  .kontakt-person { grid-template-columns: 180px 1fr; }
  .kontakt-person:first-child { grid-template-columns: 240px 1fr; }
  .kontakt-person::before { left: 180px; }
  .kontakt-person:first-child::before { left: 240px; }
  .kontakt-person-content { padding: 28px 32px; }
  .kontakt-person:first-child .kontakt-person-content { padding: 40px 48px; }
}

@media (max-width: 600px) {
  .kontakt-people-grid { gap: 24px; }
  .kontakt-person,
  .kontakt-person:first-child { grid-template-columns: 1fr; }
  .kontakt-person::before,
  .kontakt-person:first-child::before { display: none; }
  .kontakt-person-photo { min-height: 280px; }
  .kontakt-person:first-child .kontakt-person-photo { min-height: 280px; }
  .kontakt-person-content,
  .kontakt-person:first-child .kontakt-person-content { padding: 32px 28px; }
}

/* ============================================ */
/* PAGE: KONTAKT — mapa + seznam kanceláří       */
/* ============================================ */

.kontakt-mapa-list {
  padding: 120px 0;
  background: rgba(20, 20, 20, 0.55);
  position: relative;
  z-index: 2;
  color: #fff;
}

.kontakt-mapa-list > .section-eyebrow {
  color: rgba(255,255,255,0.4);
}

.kontakt-mapa-list > .section-eyebrow::before {
  background: rgba(255,255,255,0.25);
}

.kontakt-mapa-list .section-title {
  color: #fff;
}

.kontakt-mapa-list .section-header p {
  color: rgba(255,255,255,0.7) !important;
}

.kontakt-mapa-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.kontakt-mapa-svg-wrap {
  position: relative;
}

.kontakt-mapa-svg-wrap .offices-map-svg {
  width: 100%;
  height: auto;
  max-width: 700px;
}

/* Pozadí mapy ČR — světlý outline na tmavém pozadí */
.kontakt-mapa-svg-wrap .offices-map-svg path {
  fill: rgba(255,255,255,0.04);
  stroke: rgba(255,255,255,0.4);
}

.kontakt-mapa-svg-wrap .map-city {
  fill: rgba(255,255,255,0.7);
  font-size: 14px;
  font-family: var(--font-body);
}

.kontakt-mapa-svg-wrap .map-city--bold {
  font-weight: 600;
  fill: #fff;
}

.kontakt-mapa-svg-wrap .offices-map-legend {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.kontakt-mapa-svg-wrap .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.kontakt-mapa-svg-wrap .legend-item span {
  width: 12px;
  height: 12px;
  display: inline-block;
}

.kontakt-mapa-svg-wrap .legend-item--office span {
  background: var(--gold);
}

.kontakt-mapa-svg-wrap .legend-item--rep span {
  background: rgba(201,150,59,0.5);
  border: 1px solid var(--gold);
}

/* Seznam kanceláří vedle mapy */
.kontakt-offices-list-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}

/* Office list položky — světlý text na tmavém pozadí */
.kontakt-mapa-list .kontakt-office-item {
  border-bottom-color: rgba(255,255,255,0.1);
}

.kontakt-mapa-list .kontakt-office-item .kontakt-office-city,
.kontakt-mapa-list .kontakt-office-item strong {
  color: #fff;
}

.kontakt-mapa-list .kontakt-office-item p {
  color: rgba(255,255,255,0.65);
}

.kontakt-office-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.kontakt-office-item:last-child {
  border-bottom: none;
}

.kontakt-office-item strong,
.kontakt-office-item .kontakt-office-city {
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  margin: 0 0 4px 0;
}

.kontakt-office-item p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .kontakt-mapa-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================ */
/* PAGE: TÝM                                     */
/* ============================================ */

.page-tym-section {
  padding: 140px 0;
  background: #fff;
  position: relative;
}

.page-tym-section.alt-bg {
  background: var(--off-white);
}

/* Banner s týmovou fotkou v sekci Podpora */
.page-tym-podpora-banner {
  max-width: 1100px;
  margin: 64px auto 80px;
  position: relative;
  box-shadow:
    0 40px 100px -30px rgba(10, 20, 40, 0.35),
    0 16px 40px -12px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.page-tym-podpora-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-tym-podpora-banner {
    margin: 48px auto 56px;
  }
}

/* Gold rule na konci nadpisu — text vlevo, čára vyplní zbytek bloku napravo */
.page-tym-section .section-header h3.section-title {
  display: flex;
  align-items: center;
  text-align: left;
}

.page-tym-section .section-header h3.section-title .section-title-text {
  flex-shrink: 0;
}

.page-tym-section .section-header h3.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-gradient);
  margin-left: 48px;
  opacity: 0.6;
}

.page-tym-section .container {
  position: relative;
  z-index: 1;
}

.page-tym-section .section-header {
  margin-bottom: 80px;
  max-width: none;
}

.page-tym-section .section-header > p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-tym-section .section-header > p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--gray-600);
  max-width: 720px;
  margin: 24px auto 0;
  line-height: 1.75;
  font-weight: 300;
}

/* Sjednocený grid pro tým (4 sloupce) — minmax(0, 1fr) aby obsah nezvětšoval sloupce */
.page-tym-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 16px;
}

.page-tym-card {
  text-align: left;
  cursor: default;
  position: relative;
  padding: 16px 16px 20px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s ease,
              background 0.4s ease;
}

.page-tym-card.has-bio {
  cursor: pointer;
}

/* Hover lift + jemný shadow + decentní white background */
.page-tym-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.08);
}

.page-tym-section.alt-bg .page-tym-card:hover {
  background: #fff;
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.06);
}

.page-tym-card-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
  background-color: var(--gray-100);
  margin-bottom: 20px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

/* Placeholder ikona pro chybějící fotku (svg „kuželka" silueta osoby) */
.page-tym-card-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-tym-card-photo--placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--gray-300);
  stroke-width: 1.2;
}

/* Photo overlay gradient — subtle gold tint na hover */
.page-tym-card-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 60%,
    rgba(10, 10, 10, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.page-tym-card.has-bio:hover .page-tym-card-photo::before {
  opacity: 1;
}

/* Hover "Zobrazit profil" pill v dolním rohu fotky */
.page-tym-card.has-bio .page-tym-card-photo::after {
  content: 'Zobrazit profil';
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
  z-index: 2;
}

.page-tym-card.has-bio:hover .page-tym-card-photo::after {
  transform: translateY(0);
  opacity: 1;
}

.page-tym-card.has-bio.active .page-tym-card-photo::after {
  content: 'Zavřít';
  transform: translateY(0);
  opacity: 1;
  background: var(--black);
}

/* Jméno */
.page-tym-card-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.page-tym-card.has-bio.active .page-tym-card-name {
  color: var(--gold);
}

/* Role — small uppercase label */
.page-tym-card-role {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gray-600);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
}

/* Gold accent line nad emailem — animuje se na hover */
.page-tym-card-email {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: gap 0.35s ease;
  font-weight: 500;
}

.page-tym-card-email::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-tym-card:hover .page-tym-card-email::before {
  width: 60px;
}

/* Envelope ikonka */
.page-tym-card-email::after {
  content: '';
  width: 14px;
  height: 11px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11' fill='none' stroke='%23c9963b' stroke-width='1.2'><rect x='0.5' y='0.5' width='13' height='10'/><polyline points='1,1 7,6 13,1'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.page-tym-card-email:hover {
  gap: 12px;
}

.page-tym-card-email:hover::after {
  transform: translateX(2px);
}

/* Zabránit otevření modalu při kliknutí na email link */
.page-tym-card.has-bio .page-tym-card-email {
  position: relative;
  z-index: 3;
}

/* Řídící partneři — 2+2 layout */
.page-tym-leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 16px;
  max-width: 680px;
  margin: 0 auto;
}

/* Partneři grid — 3+2 layout (3 v prvním řádku, 2 v druhém) */
.page-tym-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 16px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Back office grid (užší) */
.page-tym-backoffice {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .page-tym-grid { grid-template-columns: repeat(3, 1fr); }
  .page-tym-leaders-grid { grid-template-columns: repeat(2, 1fr); }
  .page-tym-partners-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .page-tym-backoffice { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-tym-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .page-tym-leaders-grid { grid-template-columns: repeat(2, 1fr); }
  .page-tym-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .page-tym-backoffice { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .page-tym-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .page-tym-leaders-grid { grid-template-columns: 1fr; max-width: 320px; }
  .page-tym-partners-grid { grid-template-columns: 1fr; max-width: 320px; }
  .page-tym-backoffice { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ============================================ */
/* TÝM — inline expand panel s bio (dark)        */
/* ============================================ */

/* Inline expand panel — vloží se do gridu jako full-width řádek */
.tym-detail-row {
  grid-column: 1 / -1;
  background: var(--black);
  color: #fff;
  position: relative;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.5s ease 0.1s,
              padding 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              margin 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tym-detail-row.active {
  max-height: 2000px;
  opacity: 1;
  padding: 72px clamp(32px, 5vw, 80px);
  margin: 24px 0;
}

.tym-detail-row-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.tym-detail-row-photo {
  width: 280px;
  height: 350px;
  background-size: cover;
  background-position: center top;
  filter: grayscale(20%);
  position: relative;
}

/* Gold accent rohové linky */
.tym-detail-row-photo::before,
.tym-detail-row-photo::after {
  content: '';
  position: absolute;
  background: var(--gold);
  z-index: 1;
}

.tym-detail-row-photo::before {
  top: -1px;
  left: -1px;
  width: 36px;
  height: 2px;
  box-shadow: 0 0 0 1px var(--gold), 36px -34px 0 -34px var(--gold);
}

.tym-detail-row-photo::after {
  bottom: -1px;
  right: -1px;
  width: 36px;
  height: 2px;
  box-shadow: -36px 34px 0 -34px var(--gold);
}

.tym-detail-row-info {
  padding-right: 40px;
}

/* Eyebrow label nad jménem */
.tym-detail-row-info::before {
  content: 'PROFIL';
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.tym-detail-row-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.tym-detail-row-role {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  display: block;
  line-height: 1.5;
}

.tym-detail-row-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

.tym-detail-row-bio {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 36px;
  font-weight: 300;
}

.tym-detail-row-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.tym-detail-row-email:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.tym-detail-row-email::before {
  content: '→';
  font-size: 16px;
  color: var(--gold);
  transition: color 0.35s ease, transform 0.35s ease;
}

.tym-detail-row-email:hover::before {
  color: #fff;
  transform: translateX(4px);
}

.tym-detail-row-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  z-index: 5;
}

.tym-detail-row-close:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .tym-detail-row.active { padding: 48px 24px; max-height: 1200px; }
  .tym-detail-row-content { grid-template-columns: 1fr; gap: 32px; }
  .tym-detail-row-photo { width: 100%; max-width: 240px; height: 300px; margin: 0 auto; }
  .tym-detail-row-info { padding-right: 0; }
  .tym-detail-row-info h3 { font-size: 26px; }
  .tym-detail-row-close { top: -8px; right: -8px; }
}

/* ============================================ */
/* PAGE: KARIÉRA                                 */
/* ============================================ */

.page-kariera-intro {
  padding: 120px 0;
  background: #fff;
}

.page-kariera-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.page-kariera-intro-text {
  display: flex;
  flex-direction: column;
}

.page-kariera-intro-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--black);
}

/* První paragraf push texty dolů — nadpis zůstává nahoře */
.page-kariera-intro-text h3 + p {
  margin-top: auto;
}

.page-kariera-intro-text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-kariera-intro-text p:last-child {
  margin-bottom: 0;
}

/* Benefits 4-grid */
.page-kariera-benefits {
  padding: 120px 0;
  background: var(--off-white);
}

.page-kariera-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.page-kariera-benefit {
  padding: 48px 32px;
  text-align: center;
  position: relative;
}

.page-kariera-benefit:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.08);
}

.page-kariera-benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.page-kariera-benefit h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--black);
}

.page-kariera-benefit p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Pozice / role karty */
.page-kariera-positions {
  padding: 120px 0;
  background: #fff;
}

.page-kariera-positions-list {
  max-width: 900px;
  margin: 48px auto 0;
}

.page-kariera-position {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.4s ease;
}

.page-kariera-position:first-of-type {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.page-kariera-position:hover {
  padding-left: 16px;
}

.page-kariera-position-info {
  flex: 1;
}

.page-kariera-position-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.page-kariera-position:hover .page-kariera-position-title {
  color: var(--gold);
}

.page-kariera-position-meta {
  font-size: 13px;
  color: var(--gray-400);
  letter-spacing: 0.3px;
}

.page-kariera-position-meta span {
  margin-right: 24px;
}

.page-kariera-position-arrow {
  font-size: 24px;
  color: var(--gray-300);
  flex-shrink: 0;
  margin-left: 32px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.page-kariera-position:hover .page-kariera-position-arrow {
  color: var(--gold);
  transform: translateX(6px);
}

/* Process kroky */
.page-kariera-process {
  padding: 120px 0;
  background: var(--off-white);
}

.page-kariera-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.page-kariera-process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: rgba(201,150,59,0.3);
}

.page-kariera-process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.page-kariera-process-step-num {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.page-kariera-process-step h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--black);
}

.page-kariera-process-step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .page-kariera-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .page-kariera-benefit:nth-child(2) { border-right: none; }
  .page-kariera-benefit:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,0.08); }
}

@media (max-width: 768px) {
  .page-kariera-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-kariera-benefits-grid { grid-template-columns: 1fr; }
  .page-kariera-benefit { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .page-kariera-process-steps { grid-template-columns: 1fr; gap: 32px; }
  .page-kariera-process-steps::before { display: none; }
}

/* ============================================ */
/* KARIÉRA — FILE UPLOAD                          */
/* ============================================ */

.form-field-file {
  display: block;
  margin-bottom: 48px;
}

.form-file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  height: 44px;
  box-sizing: border-box;
}

.form-file-label:hover {
  border-color: var(--gold);
  background: rgba(201, 150, 59, 0.06);
  color: #fff;
}

.form-file-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.form-file-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.form-file-hint {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  white-space: nowrap;
}

.form-file-selected {
  display: block;
  font-size: 12px;
  color: var(--gold);
  margin-top: 6px;
  padding-left: 0;
  min-height: 0;
}

.form-file-selected:empty {
  display: none;
}

.form-file-selected:not(:empty)::before {
  content: '✓ ';
  font-weight: 600;
  margin-right: 4px;
}

@media (max-width: 768px) {
  .form-file-hint { display: none; }
}

@media (max-width: 600px) {
  .form-file-label { padding: 12px 16px; height: 42px; }
}

/* ============================================ */
/* KARIÉRA — TESTIMONIALS                         */
/* ============================================ */

.page-kariera-testimonials {
  padding: 120px 0;
  background: #fff;
}

.page-kariera-testimonials .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.kariera-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.kariera-testimonial {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  padding: 48px 40px;
  position: relative;
}

/* Foto + nadpis horizontálně nahoře */
.kariera-testimonial-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.kariera-testimonial-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  flex-shrink: 0;
}

.kariera-testimonial-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kariera-testimonial-quote {
  display: none; /* Skryt — místo gold uvozovek máme border-left */
}

.kariera-testimonial-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}

.kariera-testimonial-intro {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
}

.kariera-testimonial-text {
  font-size: 15px;
  color: var(--black);
  line-height: 1.75;
  margin-bottom: auto; /* push author info to bottom */
  font-style: italic;
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--gold);
}

.kariera-testimonial-author {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 150, 59, 0.3);
}

.kariera-testimonial-author strong {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  display: block;
  margin-bottom: 4px;
}

.kariera-testimonial-author span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .kariera-testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .kariera-testimonial { padding: 32px 24px; }
  .kariera-testimonial-photo { width: 80px; height: 80px; }
  .kariera-testimonial-heading { font-size: 19px; }
}

/* Testimonials na translucent (tmavém prosvítajícím) pozadí — overrides barev */
/* .section-translucent (rgba(10,10,10,0.78) !important) přepíše white bg automaticky */

.page-kariera-testimonials.section-translucent > .section-eyebrow {
  color: rgba(255,255,255,0.45);
}

.page-kariera-testimonials.section-translucent > .section-eyebrow::before {
  background: rgba(255,255,255,0.25);
}

.page-kariera-testimonials.section-translucent .section-header p {
  color: rgba(255,255,255,0.72) !important;
}

.section-translucent .kariera-testimonial {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
}

.section-translucent .kariera-testimonial-header {
  border-bottom-color: rgba(255,255,255,0.1);
}

.section-translucent .kariera-testimonial-heading {
  color: #fff !important;
}

.section-translucent .kariera-testimonial-intro {
  color: rgba(255,255,255,0.72) !important;
}

.section-translucent .kariera-testimonial-text {
  color: rgba(255,255,255,0.92) !important;
}

.section-translucent .kariera-testimonial-author {
  border-top-color: rgba(201, 150, 59, 0.4);
}

.section-translucent .kariera-testimonial-author strong {
  color: #fff !important;
}

/* ============================================ */
/* KARIÉRA — KOHO HLEDÁME (vlastnosti specialisty)*/
/* ============================================ */

.page-kariera-profile {
  padding: 120px 0;
  background: var(--off-white);
}

.page-kariera-profile .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.page-kariera-profile-position {
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 48px;
}

.kariera-profile-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.kariera-profile-card {
  border: 1px solid var(--gold);
  padding: 40px 24px 32px;
  text-align: center;
  position: relative;
  background: #fff;
}

/* Gold check ikonka v horní části karty */
.kariera-profile-card::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9963b' stroke-width='2.5'><polyline points='4,12 10,18 20,6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.kariera-profile-card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.4;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .kariera-profile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .kariera-profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================ */
/* KARIÉRA — FORMÁLNÍ POŽADAVKY                   */
/* ============================================ */

.page-kariera-requirements {
  padding: 120px 0;
  background: var(--off-white);
}

.page-kariera-requirements .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.kariera-requirements-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.kariera-requirement {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.kariera-requirement:last-child {
  border-right: none;
}

.kariera-requirement-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 20px;
  color: var(--gold);
  stroke-width: 1.5;
}

.kariera-requirement-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
  display: block;
}

.kariera-requirement-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .kariera-requirements-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .kariera-requirement:nth-child(3) { border-right: none; }
  .kariera-requirement:nth-child(-n+3) { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
  .kariera-requirement:nth-child(4) { border-right: 1px solid rgba(0, 0, 0, 0.08); }
}

@media (max-width: 600px) {
  .kariera-requirements-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kariera-requirement { border-right: none !important; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
}

/* ============================================ */
/* KARIÉRA — ONBOARDING (timeline)                */
/* ============================================ */

.page-kariera-onboarding {
  padding: 120px 0;
  background: #fff;
}

.page-kariera-onboarding .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.kariera-onboarding-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.kariera-onboarding-timeline::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--gray-100);
}

.kariera-onboarding-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  position: relative;
}

.kariera-onboarding-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.kariera-onboarding-content {
  padding-top: 8px;
}

.kariera-onboarding-content h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.kariera-onboarding-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

@media (max-width: 600px) {
  .kariera-onboarding-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .kariera-onboarding-num { width: 56px; height: 56px; font-size: 11px; }
  .kariera-onboarding-timeline::before { left: 27px; }
}

/* ============================================ */
/* KARIÉRA — FAQ (accordion)                      */
/* ============================================ */

.page-kariera-faq {
  padding: 120px 0;
  background: var(--off-white);
}

.page-kariera-faq .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.kariera-faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.kariera-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.kariera-faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.kariera-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 28px 56px 28px 0;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  display: block;
}

.kariera-faq-question:hover {
  color: var(--gold);
}

.kariera-faq-question::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.4s ease;
  line-height: 1;
}

.kariera-faq-item.active .kariera-faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.kariera-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              padding 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.kariera-faq-item.active .kariera-faq-answer {
  max-height: 400px;
  padding-bottom: 28px;
}

.kariera-faq-answer p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  padding-right: 56px;
}

/* ============================================ */
/* PAGE: AKTUALITY (hub) + ARTICLE DETAIL pages */
/* ============================================ */

/* Filtr kategorií */
.aktuality-filter {
  padding: 80px 0 0;
  background: #fff;
  position: relative;
  z-index: 2;
}

.aktuality-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.aktuality-filter-tab {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-500);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aktuality-filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.aktuality-filter-tab.active {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

/* Grid */
.aktuality-grid-section {
  padding: 80px 0 120px;
  background: #fff;
  position: relative;
}

.aktuality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.aktuality-card {
  background: var(--off-white);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.aktuality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(10, 20, 40, 0.25);
}

.aktuality-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.aktuality-card-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-200);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.aktuality-card:hover .aktuality-card-photo {
  transform: scale(1.04);
}

.aktuality-card-body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.aktuality-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.aktuality-card-category {
  color: var(--gold);
}

.aktuality-card-meta time {
  color: var(--gray-500);
}

.aktuality-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--black);
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

.aktuality-card-arrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  margin-top: auto;
  transition: gap 0.3s ease, color 0.3s ease;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
}

.aktuality-card:hover .aktuality-card-arrow {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .aktuality-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .aktuality-grid { grid-template-columns: 1fr; }
  .aktuality-filter-tab { padding: 12px 20px; font-size: 10px; letter-spacing: 2px; }
}

/* === ČLÁNEK DETAIL === */
.article-detail {
  padding: 60px 0 120px;
  background: #fff;
}

.article-detail-header {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 0 24px;
}

.article-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.article-detail-category {
  color: var(--gold);
}

.article-detail-meta time {
  color: var(--gray-500);
}

.article-detail-meta::before,
.article-detail-meta::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(0,0,0,0.15);
}

.article-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0 0 24px 0;
}

.article-detail-perex {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0;
}

/* Featured photo */
.article-detail-photo {
  max-width: 1100px;
  margin: 0 auto 80px;
  position: relative;
  box-shadow: 0 40px 100px -30px rgba(10, 20, 40, 0.35),
              0 16px 40px -12px rgba(0, 0, 0, 0.18);
}

.article-detail-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */
.article-detail-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-detail-content > p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--gray-700);
  margin: 0 0 24px 0;
}

.article-detail-content > p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 300;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--gold);
}

.article-detail-content h2,
.article-detail-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 48px 0 20px 0;
  line-height: 1.25;
}

.article-detail-content blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--black);
  letter-spacing: -0.015em;
  margin: 48px -40px;
  padding: 0 0 0 40px;
  border-left: 2px solid var(--gold);
  font-style: italic;
}

.article-detail-content a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s ease;
}

.article-detail-content a:hover {
  color: var(--gold);
}

.article-detail-content strong {
  color: var(--black);
  font-weight: 600;
}

.article-detail-content ul,
.article-detail-content ol {
  margin: 24px 0;
  padding-left: 24px;
}

.article-detail-content ul li,
.article-detail-content ol li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 12px;
}

/* Gallery (events) */
.article-detail-gallery {
  max-width: 1100px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}

.article-detail-gallery img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .article-detail-gallery { grid-template-columns: 1fr 1fr; }
  .article-detail-content blockquote { margin: 32px 0; padding-left: 24px; }
}

/* Article footer — back to hub */
.article-detail-footer {
  max-width: 720px;
  margin: 80px auto 0;
  padding: 56px 24px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  text-align: center;
}

.article-detail-footer a {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s ease, color 0.3s ease;
}

.article-detail-footer a:hover {
  color: var(--gold);
  gap: 18px;
}

/* Clickable section title link on HP */
.blog-section-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.blog-section-link:hover {
  opacity: 0.75;
}

/* LinkedIn ikona — premium social chip (kruh s gold border + hover fill) */
.li-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201, 150, 59, 0.35);
  background: transparent;
  color: rgba(201, 150, 59, 0.7);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.li-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.li-link svg {
  width: 13px;
  height: 13px;
  display: block;
}

/* /tym karty — LI pill chip s textem "LinkedIn" na vlastním řádku pod emailem */
.page-tym-card .li-link {
  display: inline-flex;
  margin: 14px 0 0 0;
  width: auto;
  height: auto;
  padding: 7px 14px 7px 11px;
  border-radius: 99px;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.page-tym-card .li-link span {
  line-height: 1;
}

.page-tym-card .li-link svg {
  width: 13px;
  height: 13px;
}

/* /kontakt regional list — LI chip s textem "LinkedIn" (pill design) */
.kontakt-region-contact a.li-link {
  align-self: flex-end;
  margin-top: 10px;
  width: auto;
  height: auto;
  padding: 7px 14px 7px 11px;
  border-radius: 99px;
  gap: 7px;
  color: rgba(201, 150, 59, 0.85);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.kontakt-region-contact a.li-link span {
  line-height: 1;
}

.kontakt-region-contact a.li-link:hover {
  color: #fff;
}

/* V translucent kontextu (např. sídlo block) — světlejší border */
.section-translucent .li-link {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.section-translucent .li-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ===== Bio panel týmu: text obtéká fotku (místo 2-sloupcového gridu s prázdnou plochou) ===== */
.tym-detail-row-content {
  display: flow-root;
}
.tym-detail-row-photo {
  float: left;
  margin: 0 56px 28px 0;
}
.tym-detail-row-info {
  padding-right: 0;
}
@media (max-width: 768px) {
  .tym-detail-row-photo {
    float: none;
    width: 100%;
    height: 320px;
    margin: 0 0 28px;
  }
}
