/* ============================================
   APM CAPITAL — STYLE.CSS
   ============================================ */

:root {
  --color-dark: #0D0D0D;
  --color-dark-alt: #111111;
  --color-dark-card: #1C1C1C;
  --color-ivory: #F7F2EA;
  --color-ivory-dark: #EDE8E0;
  --color-gold: #C9A96E;
  --color-gold-hover: #D4BA85;
  --color-text-primary: #F7F2EA;
  --color-text-dark: #1A1A1A;
  --color-text-muted: #8A8A8A;
  --color-text-muted-dark: #5A5A5A;
  --color-border: rgba(201, 169, 110, 0.2);
  --color-border-light: rgba(26, 26, 26, 0.1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --transition: all 0.3s ease;
  --border-radius: 2px;
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  background: #0D2240;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-primary);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Fixed video background — wrapper is fixed, video fills it absolutely (iOS Safari fix) */
.bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-image: url('../images/hero-bg.jpg');
  background-size: 140%;
  background-position: center 85%;
  background-repeat: no-repeat;
}

.bg-video {
  display: none;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.42);
  z-index: 1;
}

/* All real content must be above the video and overlay */
.nav {
  z-index: 1000;
}

.nav__mobile {
  z-index: 999;
}

main {
  position: relative;
  z-index: 2;
}

footer {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .bg-video { display: none; }
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 6px rgba(0,0,0,0.35);
}

p {
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}

p {
  line-height: 1.75;
  color: rgba(247, 242, 234, 0.88);
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 48px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.nav__logo {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__logo .logo-apm {
  color: var(--color-text-primary);
}

.nav__logo .logo-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(201, 169, 110, 0.45);
  margin: 0 10px;
  vertical-align: middle;
}

.nav__logo .logo-capital {
  color: rgba(247, 242, 234, 0.88);
  font-weight: 400;
  letter-spacing: 0.25em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.6);
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-gold);
}

.nav__cta {
  color: var(--color-gold) !important;
  border: 1px solid rgba(201, 169, 110, 0.35) !important;
  padding: 10px 22px;
  border-radius: var(--border-radius);
  transition: var(--transition) !important;
}

.nav__cta:hover {
  background: var(--color-gold) !important;
  color: var(--color-dark) !important;
}

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

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-text-primary);
  transition: var(--transition);
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

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

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav__mobile a:hover {
  color: var(--color-gold);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 82vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.68) 100%
  );
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.15) 55%, transparent 100%),
    radial-gradient(ellipse at 75% 40%, rgba(201, 169, 110, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}

/* All hero inner elements above video overlay */
.hero__bg-letter,
.hero__inner,
.hero__scroll {
  position: relative;
  z-index: 3;
}

/* Large decorative background letter */
.hero__bg-letter {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(280px, 35vw, 520px);
  font-weight: 300;
  color: rgba(201, 169, 110, 0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  font-style: italic;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 110, 0.25) 50%, transparent 100%);
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.5;
}

.hero__title {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  color: var(--color-text-primary);
  line-height: 1.05;
  max-width: 860px;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(247, 242, 234, 0.45);
  max-width: 480px;
  margin-bottom: 56px;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(247, 242, 234, 0.2);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.35), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-gold);
  padding: 17px 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-gold);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.22);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.5);
  transition: color 0.2s;
}

.btn-secondary:hover {
  color: var(--color-text-primary);
}

.btn-secondary .arrow {
  transition: transform 0.25s;
}

.btn-secondary:hover .arrow {
  transform: translateX(5px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: gap 0.25s;
}

.link-arrow:hover {
  gap: 18px;
}

/* ============================================
   CREDENTIALS STRIP
   ============================================ */

.credentials {
  background: transparent;
  padding: 0 48px 0;
}

.credentials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 6px;
  padding: 32px 40px;
}

.credentials__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  text-align: center;
}

.credentials__value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.credentials__label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.credentials__divider {
  width: 1px;
  height: 36px;
  background: rgba(201, 169, 110, 0.2);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .credentials { padding: 32px 24px; }
  .credentials__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
  .credentials__divider { display: none; }
  .credentials__item { padding: 0 8px; }
}

/* ============================================
   POSITIONING STRIP
   ============================================ */

.positioning {
  background: transparent;
  padding: 90px 48px;
  text-align: center;
}

.positioning__divider {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto 36px;
}

.positioning__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  color: var(--color-text-primary);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.65;
  font-style: italic;
  letter-spacing: 0.01em;
  position: relative;
}

/* Opening quote mark */
.positioning__text::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(201, 169, 110, 0.18);
  position: absolute;
  top: -1.2rem;
  left: -2rem;
  line-height: 1;
  pointer-events: none;
}

/* ============================================
   SECTION SHARED
   ============================================ */

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.15;
}

.section-header {
  max-width: var(--max-width);
  margin: 0 auto 64px;
}

/* ============================================
   AREAS PREVIEW (homepage)
   ============================================ */

.areas-preview {
  background: transparent;
  padding: 100px 48px;
}

.areas-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.area-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}

/* Gold top border reveal on hover */
.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), rgba(201, 169, 110, 0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 110, 0.2);
}

.area-card__number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.22);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.area-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.area-card__text {
  font-size: 0.88rem;
  color: rgba(247, 242, 234, 0.5);
  line-height: 1.75;
}

.areas-preview .section-eyebrow {
  color: var(--color-gold);
}

.areas-preview .section-title {
  color: var(--color-text-primary);
}

.areas-preview__footer {
  max-width: var(--max-width);
  margin: 52px auto 0;
  display: flex;
  justify-content: flex-end;
}

.areas-preview__footer .link-arrow {
  color: rgba(247, 242, 234, 0.5);
}

.areas-preview__footer .link-arrow:hover {
  color: var(--color-gold);
}

/* ============================================
   PILLARS
   ============================================ */

.pillars {
  background: transparent;
  padding: 100px 48px;
}

.pillars .section-title {
  color: var(--color-text-primary);
}

.pillars-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.pillar {
  border-top: 1px solid rgba(201, 169, 110, 0.18);
  padding-top: 36px;
}

.pillar__title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pillar__text {
  font-size: 0.88rem;
  color: rgba(247, 242, 234, 0.45);
  line-height: 1.85;
}

/* ============================================
   PARTNERSHIP TEXT BLOCK
   ============================================ */

.partnership {
  background: transparent;
  padding: 110px 48px;
}

.partnership__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 110px;
  align-items: start;
  background: rgba(8, 8, 8, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 64px 72px;
}

.partnership__left .section-eyebrow {
  color: var(--color-gold);
}

.partnership__left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.partnership__right p {
  font-size: 1rem;
  color: rgba(247, 242, 234, 0.88);
  line-height: 1.9;
  margin-bottom: 22px;
}

.partnership__right p:last-child {
  margin-bottom: 0;
}

/* ============================================
   CTA BLOCK
   ============================================ */

.cta-block {
  background: transparent;
  padding: 72px 48px;
  text-align: center;
}

.cta-block__inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 8px;
  padding: 48px 60px;
}

.cta-block__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-block__text {
  font-size: 0.93rem;
  color: rgba(247, 242, 234, 0.42);
  margin-bottom: 48px;
  line-height: 1.75;
}

.cta-block__disclaimer {
  margin-top: 28px;
  font-size: 0.7rem;
  color: rgba(247, 242, 234, 0.2);
  line-height: 1.75;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 64px 48px 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(247, 242, 234, 0.05);
  margin-bottom: 36px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 18px;
}

.footer__brand p {
  font-size: 0.8rem;
  color: rgba(247, 242, 234, 0.25);
  line-height: 1.75;
  max-width: 300px;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.3);
  margin-bottom: 22px;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 12px;
}

.footer__col ul a {
  font-size: 0.85rem;
  color: rgba(247, 242, 234, 0.45);
  transition: color 0.2s;
}

.footer__col ul a:hover {
  color: var(--color-gold);
}

.footer__col address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(247, 242, 234, 0.45);
  line-height: 1.85;
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(247, 242, 234, 0.18);
}

.footer__legal {
  font-size: 0.7rem;
  color: rgba(247, 242, 234, 0.18);
  line-height: 1.75;
  max-width: 560px;
  text-align: right;
}

/* ============================================
   PAGE HEADER (vnitřní stránky)
   ============================================ */

.page-header {
  background: linear-gradient(to bottom, rgba(8,8,8,0.52) 0%, rgba(8,8,8,0.18) 100%);
  padding: 130px 48px 64px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.25), transparent);
}

.page-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.page-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.page-header__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-gold);
  display: block;
}

.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  color: var(--color-text-primary);
  max-width: 720px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-header__subtitle {
  font-size: 1rem;
  color: rgba(247, 242, 234, 0.42);
  max-width: 500px;
  margin-top: 24px;
  line-height: 1.75;
}

/* ============================================
   O NÁS PAGE
   ============================================ */

.about-intro {
  background: transparent;
  padding: 110px 48px;
}

.about-intro__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 110px;
  align-items: start;
  background: rgba(8, 8, 8, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 64px 72px;
}

.about-intro__left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.about-intro__right p {
  font-size: 1rem;
  color: rgba(247, 242, 234, 0.88);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-backing {
  background: transparent;
  padding: 90px 48px;
}

.about-backing__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 110px;
  align-items: center;
  background: rgba(8, 8, 8, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 8px;
  padding: 60px 64px;
}

.about-backing__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-backing__label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}

.about-backing__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.25;
}

.about-backing__text {
  font-size: 0.95rem;
  color: rgba(247, 242, 234, 0.45);
  line-height: 1.9;
}

/* ============================================
   INVESTIČNÍ OBLASTI PAGE
   ============================================ */

.areas-full {
  background: transparent;
  padding: 72px 48px;
}

.area-section {
  max-width: var(--max-width);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  padding: 60px 72px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  align-items: start;
}

.area-section:last-child {
  margin-bottom: 0;
}

.area-section__meta {
  position: sticky;
  top: 120px;
}

.area-section__number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.13);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.area-section__tag {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201, 169, 110, 0.28);
  padding: 7px 16px;
  border-radius: 20px;
}

.area-section__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 28px;
  line-height: 1.22;
}

.area-section__content p {
  font-size: 0.98rem;
  color: rgba(247, 242, 234, 0.88);
  line-height: 1.9;
  margin-bottom: 16px;
}

.area-section__note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 36px;
  padding: 22px 26px;
  background: rgba(201, 169, 110, 0.05);
  border-left: 2px solid rgba(201, 169, 110, 0.4);
}

.area-section__note p {
  font-size: 0.84rem;
  color: rgba(247, 242, 234, 0.45);
  margin-bottom: 0;
  line-height: 1.65;
  font-style: italic;
}

/* ============================================
   TÝM PAGE
   ============================================ */

.team-section {
  background: transparent;
  padding: 72px 48px;
}

.team-founder {
  max-width: var(--max-width);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
  padding: 60px 72px;
  background: rgba(8, 8, 8, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.team-member__photo {
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 242, 234, 0.15);
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
}

.team-member__info {
  padding-top: 4px;
}

.team-member__role {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.team-member__name {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 28px;
  line-height: 1.15;
}

.team-member__bio p {
  font-size: 0.97rem;
  color: rgba(247, 242, 234, 0.88);
  line-height: 1.9;
  margin-bottom: 18px;
}

.team-sub-section {
  max-width: var(--max-width);
  margin: 0 auto 32px;
  padding: 48px 72px;
  background: rgba(8, 8, 8, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.team-sub-section:last-child {
  margin-bottom: 0;
}

.team-sub-title {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.3);
  margin-bottom: 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(247, 242, 234, 0.07);
}

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

.team-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.25s, border-color 0.25s;
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 110, 0.2);
}

.team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
  overflow: hidden;
  flex-shrink: 0;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.team-card__role {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 10px;
  line-height: 1.25;
}

.team-card__desc {
  font-size: 0.84rem;
  color: rgba(247, 242, 234, 0.5);
  line-height: 1.7;
}

/* ============================================
   KONTAKT PAGE
   ============================================ */

.contact-section {
  background: transparent;
  padding: 72px 48px;
}

.contact-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
  background: rgba(8, 8, 8, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 64px 72px;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-info > p {
  font-size: 0.97rem;
  color: rgba(247, 242, 234, 0.88);
  line-height: 1.85;
  margin-bottom: 48px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-detail__label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.3);
}

.contact-detail__value {
  font-size: 0.97rem;
  color: var(--color-text-primary);
}

.contact-detail__value a {
  transition: color 0.2s;
}

.contact-detail__value a:hover {
  color: var(--color-gold);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 36px;
  line-height: 1.2;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.42);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(247, 242, 234, 0.14);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--color-text-primary);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--color-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(247, 242, 234, 0.22);
}

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

.form-submit {
  margin-top: 36px;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  color: var(--color-dark);
}

.form-disclaimer {
  margin-top: 18px;
  font-size: 0.7rem;
  color: rgba(247, 242, 234, 0.28);
  line-height: 1.65;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.9rem;
  color: rgba(247, 242, 234, 0.88);
  line-height: 1.7;
}

.form-success .checkmark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero { padding: 130px 32px 80px; }
  .nav { padding: 24px 32px; }
  .nav--scrolled { padding: 16px 32px; }

  .partnership__inner,
  .about-intro__inner,
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .area-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .area-section__meta { position: static; }

  .team-founder {
    grid-template-columns: 220px 1fr;
    gap: 52px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav--scrolled { padding: 14px 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: 110px 24px 80px; }

  .positioning,
  .areas-preview,
  .pillars,
  .partnership,
  .cta-block,
  .about-intro,
  .about-backing,
  .areas-full,
  .team-section,
  .contact-section { padding: 72px 24px; }

  .page-header { padding: 130px 24px 64px; }

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

  .team-founder {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team-member__photo { max-width: 200px; }

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

  .contact-form-wrap { padding: 36px 28px; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 14px; }
  .footer__legal { text-align: left; max-width: 100%; }

  .hero__actions { flex-direction: column; align-items: flex-start; gap: 22px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .positioning__text::before { display: none; }
}

/* ============================================
   VISUAL REFINEMENTS — PREMIUM DETAILS
   ============================================ */

/* Section divider — subtle gold line between light and dark */
.areas-preview {
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.pillars {
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

/* Pillar number decoration */
.pillar {
  position: relative;
  counter-increment: pillar;
}

.pillar::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.35;
  margin-top: 28px;
}

/* Hero title — italic "em" refined */
.hero__title em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 300;
}

/* Eyebrow line — thinner, more refined */
.hero__eyebrow {
  letter-spacing: 0.26em;
}

/* CTA block — subtle top gold line */
.cta-block {
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

/* Page header — refined subtitle */
.page-header__subtitle {
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* Section title dark variant */
.pillars .section-title {
  color: var(--color-text-primary);
  font-style: italic;
}

/* About backing — tight horizontal rule above title */
.about-backing__title {
  padding-top: 20px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

/* Team card — refined hover */
.team-card {
  cursor: default;
}

.team-card:hover .team-card__name {
  color: var(--color-gold);
  transition: color 0.2s;
}

/* Area section note — italic refinement */
.area-section__note p {
  font-style: italic;
}

/* Footer logo — refined separator */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.footer__logo .logo-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(201, 169, 110, 0.4);
  margin: 0 9px;
}

.footer__logo .logo-capital {
  font-weight: 400;
  color: rgba(247, 242, 234, 0.45);
  letter-spacing: 0.25em;
}

/* Form group — focus label */
.form-group:focus-within label {
  color: var(--color-gold);
  transition: color 0.2s;
}

/* Scroll indicator hide on mobile */
@media (max-width: 768px) {
  .hero__scroll { display: none; }
  .hero__bg-letter { display: none; }
  .positioning__text { padding: 0 1.5rem; }
}

/* Video fallback — když autoplay selže (iOS úsporný režim atd.) */
.video-failed .bg-video {
  display: none;
}
.video-failed .bg-video-wrap {
  background-image: url('../images/hero-poster.jpg');
  background-size: cover;
  background-position: center 65%;
}

/* ============================================
   PROČ S NÁMI — 4 CARDS
   ============================================ */

.why-us {
  background: transparent;
  padding: 100px 48px;
}

.why-us .section-header {
  margin-bottom: 48px;
}

.why-us-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-us-card {
  background: rgba(8, 8, 8, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid rgba(201, 169, 110, 0.55);
  border-radius: 6px;
  padding: 36px 28px 40px;
  transition: border-top-color 0.25s;
}

.why-us-card:hover {
  border-top-color: var(--color-gold);
}

.why-us-card__number {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 22px;
  opacity: 0.75;
}

.why-us-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.why-us-card__text {
  font-size: 0.86rem;
  color: rgba(247, 242, 234, 0.6);
  line-height: 1.85;
  text-shadow: none;
}

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

@media (max-width: 600px) {
  .why-us { padding: 72px 24px; }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Subtle grain texture overlay — gives paper/premium feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* Selection color */
::selection {
  background: rgba(201, 169, 110, 0.2);
  color: var(--color-text-dark);
}

/* Focus ring — accessible */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* Smooth image rendering */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* Print — hide nav and footer chrome */
@media print {
  .nav, .nav__mobile, .hero__scroll, .cta-block { display: none; }
}

/* ============================================
   V2 — AVANT-ALIGNED PREMIUM SPLIT DESIGN
   Dark video hero → white content → navy CTA/footer
   ============================================ */

/* --- Anchor offset — fixed nav compensation --- */
#o-nas {
  scroll-margin-top: 80px;
}

/* --- Base: overlay tint → navy instead of pure black --- */
.bg-overlay {
  background: rgba(10, 26, 52, 0.65);
}

/* --- V2 CSS custom properties --- */
:root {
  --color-navy: #0D2240;
  --color-navy-hover: #1A4080;
  --color-light-bg: #FFFFFF;
  --color-light-bg-alt: #DDE7F5;
  --color-text-navy: #0D2240;
  --color-text-navy-muted: #4a6080;
}

/* --- Remove text-shadow inside all light sections --- */
.credentials__inner *,
.areas-preview *,
.why-us *,
.about-intro__inner *,
.about-backing__inner *,
.partnership__inner *,
.area-section *,
.team-founder *,
.team-sub-section *,
.contact-section__inner * {
  text-shadow: none !important;
}

/* ----------------------------------------
   NAV — vždy bílá (od začátku i při scrollu)
   ---------------------------------------- */

.nav,
.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 34, 64, 0.1);
}

.nav .nav__logo,
.nav .nav__logo .logo-apm,
.nav--scrolled .nav__logo,
.nav--scrolled .nav__logo .logo-apm {
  color: #0D2240;
}

.nav .nav__logo .logo-capital,
.nav--scrolled .nav__logo .logo-capital {
  color: rgba(13, 34, 64, 0.6);
}

.nav .nav__logo .logo-sep,
.nav--scrolled .nav__logo .logo-sep {
  background: rgba(13, 34, 64, 0.22);
}

.nav .nav__links a,
.nav--scrolled .nav__links a {
  color: rgba(13, 34, 64, 0.5);
}

.nav .nav__links a:hover,
.nav .nav__links a.active,
.nav--scrolled .nav__links a:hover,
.nav--scrolled .nav__links a.active {
  color: #0D2240;
}

.nav .nav__cta,
.nav--scrolled .nav__cta {
  color: #0D2240 !important;
  border-color: rgba(13, 34, 64, 0.3) !important;
}

.nav .nav__cta:hover,
.nav--scrolled .nav__cta:hover {
  background: #0D2240 !important;
  color: #fff !important;
}

.nav .nav__hamburger span,
.nav--scrolled .nav__hamburger span {
  background: #0D2240;
}

/* ----------------------------------------
   CREDENTIALS STRIP — slim, clean row
   ---------------------------------------- */

.credentials {
  background: var(--color-light-bg);
  padding: 40px 48px;
  border-bottom: 1px solid rgba(13, 34, 64, 0.1);
}

.credentials__inner {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  margin-top: 0;
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.credentials__value {
  color: #0D2240;
}

.credentials__label {
  color: #4a6080;
}

.credentials__divider {
  background: rgba(13, 34, 64, 0.15);
}

/* ----------------------------------------
   AREAS PREVIEW — light section
   ---------------------------------------- */

.areas-preview {
  background: var(--color-light-bg-alt);
  border-top: none;
}

.areas-preview .section-eyebrow {
  color: var(--color-navy);
}

.areas-preview .section-eyebrow::before {
  background: var(--color-navy);
}

.areas-preview .section-title {
  color: var(--color-navy);
}

.areas-preview .area-card {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(13, 34, 64, 0.09);
  box-shadow: 0 2px 12px rgba(13, 34, 64, 0.05);
}

.areas-preview .area-card:hover {
  background: #FFFFFF;
  border-color: rgba(13, 34, 64, 0.22);
  box-shadow: 0 8px 32px rgba(13, 34, 64, 0.1);
  transform: translateY(-2px);
}

.areas-preview .area-card::before {
  background: linear-gradient(90deg, var(--color-navy), rgba(13, 34, 64, 0.12));
}

.areas-preview .area-card__number {
  color: rgba(13, 34, 64, 0.15);
}

.areas-preview .area-card__title {
  color: #0D2240;
}

.areas-preview .area-card__text {
  color: #4a6080;
}

.areas-preview__footer .link-arrow {
  color: #4a6080;
}

.areas-preview__footer .link-arrow:hover {
  color: #0D2240;
}

/* ----------------------------------------
   WHY-US — alternate light section
   ---------------------------------------- */

.why-us {
  background: var(--color-light-bg);
}

.why-us .section-eyebrow {
  color: var(--color-navy);
}

.why-us .section-eyebrow::before {
  background: var(--color-navy);
}

.why-us .section-title {
  color: var(--color-navy);
}

.why-us-card {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(13, 34, 64, 0.08);
  border-top: 2px solid rgba(13, 34, 64, 0.5);
  box-shadow: 0 2px 10px rgba(13, 34, 64, 0.05);
}

.why-us-card:hover {
  border-top-color: #0D2240;
  box-shadow: 0 6px 24px rgba(13, 34, 64, 0.1);
}

.why-us-card__number {
  color: #0D2240;
  opacity: 0.4;
}

.why-us-card__title {
  color: #0D2240;
}

.why-us-card__text {
  color: #4a6080;
}

/* ----------------------------------------
   ABOUT INTRO (o-nas) — light section
   ---------------------------------------- */

.about-intro {
  background: var(--color-light-bg);
}

.about-intro__inner {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(13, 34, 64, 0.09);
  box-shadow: 0 4px 24px rgba(13, 34, 64, 0.06);
}

.about-intro__left .section-eyebrow {
  color: var(--color-navy);
}

.about-intro__left .section-eyebrow::before {
  background: var(--color-navy);
}

.about-intro__left h2 {
  color: #0D2240;
}

.about-intro__right p {
  color: #4a6080;
}

/* ----------------------------------------
   ABOUT BACKING (o-nas) — alt light section
   ---------------------------------------- */

.about-backing {
  background: var(--color-light-bg-alt);
}

.about-backing__inner {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(13, 34, 64, 0.09);
  box-shadow: 0 4px 24px rgba(13, 34, 64, 0.06);
}

.about-backing__label {
  color: var(--color-navy);
}

.about-backing__label::before {
  background: var(--color-navy);
}

.about-backing__title {
  color: #0D2240;
  border-top-color: rgba(13, 34, 64, 0.12);
}

.about-backing__text {
  color: #4a6080;
}

/* ----------------------------------------
   PARTNERSHIP (o-nas / homepage) — light section
   ---------------------------------------- */

.partnership {
  background: var(--color-light-bg);
}

.partnership__inner {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(13, 34, 64, 0.09);
  box-shadow: 0 4px 24px rgba(13, 34, 64, 0.06);
}

.partnership__left .section-eyebrow {
  color: var(--color-navy);
}

.partnership__left .section-eyebrow::before {
  background: var(--color-navy);
}

.partnership__left h2 {
  color: #0D2240;
}

.partnership__right p {
  color: #4a6080;
}

/* ----------------------------------------
   AREAS FULL (investicni-oblasti) — light section
   ---------------------------------------- */

.areas-full {
  background: var(--color-light-bg-alt);
}

.area-section {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(13, 34, 64, 0.09);
  box-shadow: 0 2px 12px rgba(13, 34, 64, 0.05);
}

.area-section__number {
  color: rgba(13, 34, 64, 0.14);
}

.area-section__tag {
  color: #0D2240;
  border-color: rgba(13, 34, 64, 0.22);
}

.area-section__content h2 {
  color: #0D2240;
}

.area-section__content p {
  color: #4a6080;
}

.area-section__note {
  background: rgba(13, 34, 64, 0.04);
  border-left-color: rgba(13, 34, 64, 0.25);
}

.area-section__note p {
  color: #6a80a0;
}

/* ----------------------------------------
   TEAM SECTION (tym) — light section
   ---------------------------------------- */

.team-section {
  background: var(--color-light-bg-alt);
}

.team-founder {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(13, 34, 64, 0.09);
  box-shadow: 0 4px 24px rgba(13, 34, 64, 0.06);
}

.team-photo-placeholder {
  background: rgba(13, 34, 64, 0.05);
  color: rgba(13, 34, 64, 0.18);
}

.team-member__role {
  color: #0D2240;
}

.team-member__name {
  color: #0D2240;
}

.team-member__bio p {
  color: #4a6080;
}

.team-sub-section {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(13, 34, 64, 0.09);
  box-shadow: 0 2px 12px rgba(13, 34, 64, 0.05);
}

.team-sub-title {
  color: rgba(13, 34, 64, 0.32);
  border-bottom-color: rgba(13, 34, 64, 0.08);
}

.team-card {
  background: rgba(13, 34, 64, 0.02);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(13, 34, 64, 0.07);
}

.team-card:hover {
  background: rgba(13, 34, 64, 0.045);
  border-color: rgba(13, 34, 64, 0.16);
}

.team-card:hover .team-card__name {
  color: var(--color-navy-hover);
}

.team-card__avatar {
  background: rgba(13, 34, 64, 0.07);
}

.team-card__role {
  color: #0D2240;
  opacity: 0.7;
}

.team-card__name {
  color: #0D2240;
}

.team-card__desc {
  color: #4a6080;
}

/* ----------------------------------------
   CONTACT SECTION (kontakt) — light section
   ---------------------------------------- */

.contact-section {
  background: var(--color-light-bg-alt);
}

.contact-section__inner {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(13, 34, 64, 0.09);
  box-shadow: 0 4px 24px rgba(13, 34, 64, 0.06);
}

.contact-info h2 {
  color: #0D2240;
}

.contact-info > p {
  color: #4a6080;
}

.contact-detail__label {
  color: rgba(13, 34, 64, 0.38);
}

.contact-detail__value {
  color: #0D2240;
}

.contact-detail__value a:hover {
  color: var(--color-navy-hover);
}

.contact-form-wrap {
  background: rgba(13, 34, 64, 0.03);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(13, 34, 64, 0.09);
}

.contact-form-wrap h3 {
  color: #0D2240;
}

.form-group label {
  color: rgba(13, 34, 64, 0.42);
}

.form-group input,
.form-group textarea,
.form-group select {
  color: #0D2240;
  border-bottom-color: rgba(13, 34, 64, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(13, 34, 64, 0.28);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: #0D2240;
}

.form-group:focus-within label {
  color: #0D2240;
}

.form-disclaimer {
  color: rgba(13, 34, 64, 0.32);
}

.form-success h4 {
  color: #0D2240;
}

.form-success p {
  color: #4a6080;
}

.form-success .checkmark {
  border-color: rgba(13, 34, 64, 0.28);
  color: #0D2240;
}

/* ----------------------------------------
   CTA BLOCK — solid navy
   ---------------------------------------- */

.cta-block {
  background: #091729;
  border-top: none;
  padding: 64px 48px;
}

.cta-block__inner {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.cta-block__title {
  color: #FFFFFF;
  text-shadow: none;
}

.cta-block__text {
  color: rgba(255, 255, 255, 0.58);
  text-shadow: none;
}

.cta-block__disclaimer {
  color: rgba(255, 255, 255, 0.28);
  text-shadow: none;
}

/* ----------------------------------------
   FOOTER — solid deep navy
   ---------------------------------------- */

.footer {
  background: #091729;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: none;
}

/* ----------------------------------------
   MOBILE NAV MENU — navy overlay
   ---------------------------------------- */

.nav__mobile {
  background: #0D2240;
}

.nav__mobile a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ----------------------------------------
   CREDENTIALS — mobile padding fix
   ---------------------------------------- */

@media (max-width: 768px) {
  .credentials { padding: 0 24px; }
}

/* ============================================
   V2.1 — SCANNABILITY & CONTRAST UPGRADES
   ============================================ */

/* 1. Credentials: čísla musí dominovat — výrazný serif, bold */
.credentials__value {
  font-size: clamp(1.6rem, 2.4vw, 2.05rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.1 !important;
}
.credentials__label {
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
}

/* 2. Jasné vizuální předěly mezi sekcemi */
.areas-preview   { border-top: 1px solid rgba(13, 34, 64, 0.12); }
.why-us          { border-top: 1px solid rgba(13, 34, 64, 0.12); }
.about-intro     { border-top: 1px solid rgba(13, 34, 64, 0.12); }
.about-backing   { border-top: 1px solid rgba(13, 34, 64, 0.12); }

/* 3. Area-karty: viditelné číslo + silný levý akcent */
.areas-preview .area-card {
  border-left: 3px solid rgba(13, 34, 64, 0.2) !important;
  border-right: 1px solid rgba(13, 34, 64, 0.06) !important;
  border-top: 1px solid rgba(13, 34, 64, 0.06) !important;
  border-bottom: 1px solid rgba(13, 34, 64, 0.06) !important;
}
.areas-preview .area-card:hover {
  border-left-color: #0D2240 !important;
}
.areas-preview .area-card__number {
  color: rgba(13, 34, 64, 0.45) !important;  /* bylo 0.15 — téměř neviditelné */
  font-weight: 500 !important;
}

/* 4. Why-us karty: plná navy čára nahoře, čitelnější čísla */
.why-us-card {
  border-top: 3px solid #0D2240 !important;  /* bylo rgba 0.5 */
}
.why-us-card__number {
  opacity: 0.65 !important;  /* bylo 0.4 */
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
}

/* 5. Section eyebrow — silnější, čitatelnější */
.areas-preview .section-eyebrow,
.why-us .section-eyebrow,
.about-intro__left .section-eyebrow,
.about-backing__label {
  font-weight: 600 !important;
  font-size: 0.72rem !important;
  color: #0D2240 !important;
  opacity: 0.7 !important;
}
.areas-preview .section-eyebrow::before,
.why-us .section-eyebrow::before,
.about-intro__left .section-eyebrow::before {
  width: 24px !important;
  height: 2px !important;
  background: #0D2240 !important;
  opacity: 0.7 !important;
}

/* 6. About-intro levý sloupec — navy levá linka jako vizuální kotva */
.about-intro__left {
  border-left: 4px solid #0D2240;
  padding-left: 28px;
}

/* 7. Area card title — o trochu temnější pro lepší kontrast */
.areas-preview .area-card__title {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
}
.areas-preview .area-card__text {
  font-size: 0.9rem !important;
  color: #3a5070 !important;  /* tmavší než #4a6080 */
  line-height: 1.7 !important;
}

/* 8. Why-us card text kontrast */
.why-us-card__title {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}
.why-us-card__text {
  color: #3a5070 !important;
  font-size: 0.9rem !important;
  line-height: 1.72 !important;
}

/* ============================================
   V2.1 — INVESTIČNÍ OBLASTI (area-section)
   ============================================ */

/* Sekce karty: silný levý akcent, tmavší border */
.area-section {
  border-left: 4px solid rgba(13, 34, 64, 0.22) !important;
  border-right: 1px solid rgba(13, 34, 64, 0.07) !important;
  border-top: 1px solid rgba(13, 34, 64, 0.07) !important;
  border-bottom: 1px solid rgba(13, 34, 64, 0.07) !important;
  box-shadow: 0 4px 20px rgba(13, 34, 64, 0.07) !important;
}
.area-section:hover {
  border-left-color: #0D2240 !important;
  box-shadow: 0 8px 32px rgba(13, 34, 64, 0.11) !important;
}

/* Číslo: viditelné jako kotva, ne neviditelné */
.area-section__number {
  color: rgba(13, 34, 64, 0.4) !important;  /* bylo 0.14 */
  font-weight: 500 !important;
}

/* Tag/badge: plný navy bez průhlednosti */
.area-section__tag {
  color: #0D2240 !important;
  border-color: rgba(13, 34, 64, 0.35) !important;
  font-weight: 600 !important;
  font-size: 0.67rem !important;
}

/* Nadpis sekce: o trochu temnější serif */
.area-section__content h2 {
  color: #0a1c36 !important;
  font-weight: 500 !important;
}

/* Body text: tmavší pro lepší čitelnost */
.area-section__content p {
  color: #3a5070 !important;  /* bylo #4a6080 */
  line-height: 1.85 !important;
}

/* Poznámka (note): zřetelnější levá linka */
.area-section__note {
  border-left: 3px solid rgba(13, 34, 64, 0.3) !important;
  background: rgba(13, 34, 64, 0.03) !important;
}
.area-section__note p {
  color: #4a6080 !important;  /* bylo #6a80a0 — příliš světlé */
  font-size: 0.86rem !important;
}

/* Page header na světlém pozadí — title a subtitle kontrast */
.page-header__title {
  color: #fff !important;  /* zůstává na video bg — ok */
}
.page-header__subtitle {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Předěl před CTA na stránce oblastí */
.areas-full + .cta-block {
  border-top: 1px solid rgba(13, 34, 64, 0.12) !important;
}

/* ----------------------------------------
   FOOTER PARTNER LOGO
   ---------------------------------------- */

.footer__partner-logo {
  display: block;
  width: 160px;
  height: auto;
  margin-top: 8px;
  filter: brightness(0) invert(1);  /* navy logo → bílé na tmavém footeru */
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.footer__partner-link:hover .footer__partner-logo {
  opacity: 1;
}

/* ----------------------------------------
   AVANT CAPITAL PARTNER LOGO
   ---------------------------------------- */

.about-backing__partner-logo {
  display: block;
  width: 160px;
  height: auto;
  margin-bottom: 36px;
  mix-blend-mode: multiply;   /* odstraní bílé pozadí PNG na světlém bg */
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.about-backing__partner-logo:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .about-backing__partner-logo {
    width: 130px;
    margin-bottom: 24px;
  }
}

/* ============================================
   PHILOSOPHY — přístup / krédo section
   ============================================ */

.philosophy {
  background: var(--color-light-bg);
  padding: 96px 48px;
}

.philosophy__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophy__statement .section-eyebrow {
  color: var(--color-navy);
  margin-bottom: 20px;
}

.philosophy__statement .section-eyebrow::before {
  background: var(--color-navy);
}

.philosophy__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  color: #0D2240;
  margin-top: 0;
}

.philosophy__heading em {
  font-style: italic;
  font-weight: 300;
  color: #4a6080;
}

.philosophy__body {
  padding-top: 52px;
}

.philosophy__body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 22px;
}

.philosophy__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .philosophy {
    padding: 72px 32px;
  }
  .philosophy__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .philosophy__body {
    padding-top: 0;
  }
  .philosophy__heading {
    font-size: clamp(1.8rem, 5.5vw, 2.4rem);
  }
}
