
:root {
  --orange: #f48239;
  --orange-dark: #c85c18;
  --horizon: #244b4e;
  --horizon-2: #18383b;
  --warm-white: #fbfaf7;
  --paper: #fffefa;
  --sand: #eee6da;
  --sand-light: #f6f1e9;
  --ink: #1d292b;
  --muted: #5f6d6f;
  --line: #d9ddd9;
  --success: #2b6c57;
  --danger: #9d2e2e;
  --shadow: 0 18px 55px rgba(24, 56, 59, .10);
  --radius-sm: .65rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --container: min(1180px, calc(100% - 2rem));
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Noto Serif", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: var(--horizon); text-underline-offset: .2em; }
a:hover { color: var(--orange-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.skip-link {
  position: fixed; left: .75rem; top: .75rem; z-index: 9999;
  transform: translateY(-150%); background: var(--ink); color: white;
  padding: .75rem 1rem; border-radius: .5rem;
}
.skip-link:focus { transform: none; }

.safety-bar { background: #f4eadb; border-bottom: 1px solid #e4d2b7; }
.safety-inner { width: var(--container); margin: 0 auto; display: flex; gap: 1rem; align-items: center; justify-content: space-between; padding: .55rem 0; font-size: .86rem; }
.safety-inner p { margin: 0; }
.safety-toggle { border: 0; background: transparent; color: var(--horizon); font-weight: 700; padding: .35rem .25rem; }
.safety-details { width: var(--container); margin: 0 auto; padding: 0 0 .9rem; font-size: .9rem; }
.safety-details[hidden] { display: none; }
.safety-details strong { color: var(--danger); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(251, 250, 247, .96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(36, 75, 78, .10); }
.header-inner { width: var(--container); margin: 0 auto; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; min-width: 96px; }
.brand img { width: 88px; display: block; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a { text-decoration: none; padding: .7rem .7rem; border-radius: .65rem; color: var(--ink); font-size: .94rem; font-weight: 650; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--sand-light); color: var(--horizon); }
.nav-cta { background: var(--orange) !important; color: #1f241f !important; box-shadow: 0 8px 25px rgba(244,130,57,.22); }
.site-nav .nav-finance {
  color: #725627;
  box-shadow: inset 0 0 0 1px rgba(164,128,67,.35);
  background: rgba(201,166,103,.08);
}
.site-nav .nav-finance:hover {
  color: #1a2021;
  background: rgba(201,166,103,.2);
}
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: .7rem; padding: .6rem .75rem; color: var(--ink); }

main { min-height: 60vh; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: clamp(4.2rem, 8vw, 7.4rem) 0; }
.section-tight { padding: clamp(2.8rem, 5vw, 4.5rem) 0; }
.section-dark { background: var(--horizon); color: #fff; }
.section-dark a { color: #fff; }
.section-sand { background: var(--sand-light); }
.section-white { background: var(--paper); }
.eyebrow { margin: 0 0 .8rem; color: var(--orange-dark); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.section-dark .eyebrow { color: #ffc79e; }
h1, h2, h3 { line-height: 1.13; letter-spacing: -.025em; text-wrap: balance; }
h1 { font-size: clamp(2.65rem, 7vw, 5.75rem); margin: 0 0 1.2rem; max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); margin: 0 0 1rem; max-width: 830px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); margin: 0 0 .65rem; }
.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); max-width: 760px; color: var(--muted); }
.section-dark .lead { color: rgba(255,255,255,.8); }
.copy { max-width: 72ch; }
.copy p:first-child { margin-top: 0; }
.muted { color: var(--muted); }

.hero { position: relative; overflow: hidden; min-height: 670px; display: grid; align-items: center; background: linear-gradient(115deg, #fbfaf7 0%, #fbfaf7 56%, #e7efe9 100%); }
.hero::before {
  content: ""; position: absolute; inset: auto -8% -24% 38%; height: 78%; border-radius: 55% 45% 0 0;
  background: linear-gradient(180deg, rgba(244,130,57,.17), rgba(36,75,78,.20));
  transform: rotate(-5deg);
}
.hero::after {
  content: ""; position: absolute; width: 43rem; height: 43rem; right: -14rem; top: -18rem; border-radius: 50%;
  border: 1px solid rgba(36,75,78,.15); box-shadow: 0 0 0 70px rgba(36,75,78,.035), 0 0 0 145px rgba(244,130,57,.035);
}
.hero-inner { width: var(--container); margin: 0 auto; position: relative; z-index: 2; padding: 5rem 0 5.5rem; }
.hero-copy { max-width: 850px; }
.hero .lead { max-width: 760px; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .8rem 1.15rem; border-radius: .8rem; border: 1px solid transparent; text-decoration: none; font-weight: 800; line-height: 1.2; }
.btn-primary { background: var(--orange); color: #20231f; box-shadow: 0 12px 30px rgba(244,130,57,.24); }
.btn-primary:hover { background: #ff9a51; color: #1b211e; }
.btn-secondary { background: #fff; border-color: var(--horizon); color: var(--horizon); }
.btn-secondary:hover { background: var(--horizon); color: white; }
.btn-ghost { color: var(--horizon); padding-inline: .3rem; }
.section-dark .btn-secondary { border-color: rgba(255,255,255,.6); background: transparent; color: #fff; }
.section-dark .btn-secondary:hover { background: #fff; color: var(--horizon); }
.hero-note { margin-top: 2rem; font-size: .92rem; color: var(--muted); max-width: 720px; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { background: var(--paper); border: 1px solid rgba(36,75,78,.13); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2rem); box-shadow: 0 8px 30px rgba(24,56,59,.045); }
.card-link { display: flex; flex-direction: column; min-height: 100%; text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(244,130,57,.55); color: inherit; }
.card .kicker { color: var(--orange-dark); font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.card .arrow { margin-top: auto; padding-top: 1.2rem; color: var(--horizon); font-weight: 800; }
.card-dark { background: var(--horizon); color: white; border: 0; }
.card-dark p { color: rgba(255,255,255,.78); }
.icon-dot { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; background: rgba(244,130,57,.15); color: var(--orange-dark); border-radius: 50%; font-weight: 900; margin-bottom: 1rem; }

.finance-bridge {
  position: relative;
  overflow: hidden;
  color: #f3eee4;
  background:
    radial-gradient(circle at 82% 18%, rgba(201,166,103,.16), transparent 25rem),
    radial-gradient(circle at 10% 100%, rgba(29,70,80,.3), transparent 30rem),
    linear-gradient(145deg,#070a0b 0%,#0d1112 62%,#111719 100%);
}
.finance-bridge::after {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -13rem;
  top: -16rem;
  border: 1px solid rgba(201,166,103,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 4.5rem rgba(201,166,103,.025), 0 0 0 9rem rgba(201,166,103,.018);
  pointer-events: none;
}
.finance-bridge-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr);
  gap: clamp(2.5rem,7vw,7rem);
  align-items: center;
}
.finance-bridge .eyebrow { color: #c9a667; }
.finance-bridge h2 { color: #fff; max-width: 720px; }
.finance-bridge .lead { color: rgba(243,238,228,.76); max-width: 780px; }
.finance-disciplines { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.finance-disciplines span {
  padding: .45rem .75rem;
  border: 1px solid rgba(201,166,103,.26);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.035);
  font-size: .84rem;
  font-weight: 700;
}
.btn-finance {
  color: #0b0f10;
  background: linear-gradient(135deg,#e2c487,#b9904f);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.btn-finance:hover { color: #080b0c; background: #f0d79e; }
.btn-finance-light {
  color: #fff;
  background: #101516;
  border-color: #101516;
}
.btn-finance-light:hover { color: #101516; background: #d8bd84; border-color: #d8bd84; }
.finance-path-card {
  padding: clamp(1.4rem,3vw,2rem);
  border: 1px solid rgba(201,166,103,.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.finance-path + .finance-path { border-top: 1px solid rgba(255,255,255,.12); margin-top: 1.25rem; padding-top: 1.25rem; }
.finance-path strong { display: block; margin-bottom: .35rem; color: #e2c487; font-family: var(--font-serif); font-size: 1.25rem; }
.finance-path span { display: block; color: rgba(243,238,228,.7); font-size: .93rem; }

.pathway { counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; margin-top: 2.5rem; }
.pathway-item { position: relative; padding: 1.5rem 1rem 1.4rem; border-top: 2px solid rgba(244,130,57,.65); }
.pathway-item::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--orange); color: #172426; font-weight: 900; margin-bottom: .85rem; }
.pathway-item strong { display: block; margin-bottom: .35rem; }
.pathway-item span { color: var(--muted); font-size: .92rem; }
.section-dark .pathway-item span { color: rgba(255,255,255,.7); }

.quote { font-family: var(--font-serif); font-size: clamp(1.55rem, 3.3vw, 2.65rem); line-height: 1.35; max-width: 950px; margin: 0; }
.quote cite { display: block; font-family: var(--font-sans); font-size: .86rem; margin-top: 1.25rem; font-style: normal; opacity: .75; text-transform: uppercase; letter-spacing: .08em; }

.badge { display: inline-flex; align-items: center; gap: .45rem; border: 1px solid rgba(36,75,78,.2); border-radius: 999px; padding: .35rem .7rem; font-size: .82rem; font-weight: 750; color: var(--horizon); background: rgba(255,255,255,.65); }
.status-line { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0 0; }

.timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.timeline .card { border-top: 5px solid var(--orange); }
.timeline .time { font-size: 2rem; font-weight: 900; color: var(--horizon); }

.page-hero { padding: clamp(4.5rem, 9vw, 8rem) 0 4rem; background: linear-gradient(135deg, #fbfaf7, #edf1ea); border-bottom: 1px solid rgba(36,75,78,.1); }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.7rem); }
.breadcrumbs { font-size: .88rem; margin-bottom: 1.25rem; color: var(--muted); }
.breadcrumbs a { color: inherit; }

.notice { border-left: 5px solid var(--orange); background: #fff5ec; padding: 1rem 1.15rem; border-radius: .5rem; }
.notice-danger { border-left-color: var(--danger); background: #fff1f1; }
.notice p { margin: 0; }

.form-shell { background: var(--paper); border: 1px solid rgba(36,75,78,.15); border-radius: var(--radius-lg); padding: clamp(1.2rem, 4vw, 2.5rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
label { font-weight: 750; }
.hint { color: var(--muted); font-size: .84rem; }
input, select, textarea { width: 100%; border: 1px solid #aebbbb; border-radius: .7rem; background: #fff; color: var(--ink); padding: .82rem .9rem; min-height: 47px; }
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--horizon); box-shadow: 0 0 0 3px rgba(36,75,78,.12); outline: none; }
.check-row { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; }
.check-row input { width: 1.15rem; height: 1.15rem; margin-top: .2rem; min-height: 0; }
.form-status { margin-top: 1rem; min-height: 1.6rem; font-weight: 700; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.details-list { border-top: 1px solid var(--line); }
.details-list details { border-bottom: 1px solid var(--line); padding: .95rem 0; }
.details-list summary { cursor: pointer; font-weight: 800; color: var(--horizon); }
.details-list details > div { padding-top: .75rem; max-width: 75ch; }

.site-footer { background: #172426; color: rgba(255,255,255,.8); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 2rem; }
.footer-logo { width: 124px; opacity: .98; background: white; padding: .35rem; border-radius: .5rem; }
.footer-title { color: #fff; font-size: .95rem; margin: 0 0 .75rem; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; gap: 1rem; justify-content: space-between; flex-wrap: wrap; font-size: .82rem; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
[data-config-required][hidden] { display: none !important; }

@media (max-width: 1120px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; left: 1rem; right: 1rem; top: calc(100% + .4rem); background: var(--paper); border: 1px solid var(--line); border-radius: 1rem; box-shadow: var(--shadow); padding: .65rem; display: none; flex-direction: column; align-items: stretch; }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: .8rem .9rem; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pathway { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  
.safety-inner { align-items: flex-start; }
  .header-inner { min-height: 72px; }
  .brand img { width: 78px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 4rem 0 4.5rem; }
  .grid-2, .grid-3, .grid-4, .timeline, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .pathway { grid-template-columns: 1fr; }
  .actions { align-items: stretch; }
  .actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .finance-bridge-layout { grid-template-columns: 1fr; }
}


.legal-identity { display: grid; gap: .25rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.16); font-size: .83rem; line-height: 1.45; }
.legal-identity strong { color: #fff; }
.legal-identity span { color: rgba(255,255,255,.72); }


/* Newsletter / Brevo */
.newsletter-embed { width: 100%; max-width: 640px; margin-inline: auto; overflow: hidden; }
.brevo-frame { display: block; width: 100%; min-height: 640px; margin: 0 auto; border: 0; background: transparent; }
.newsletter-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 2rem; align-items: start; }
.newsletter-aside h2 { font-size: clamp(1.45rem, 2.5vw, 2rem); }
.newsletter-aside ul { padding-left: 1.2rem; }
.newsletter-qr { width: min(220px, 70%); display: block; margin: 1.5rem auto .75rem; image-rendering: pixelated; }
@media (max-width: 820px) { .newsletter-layout { grid-template-columns: 1fr; } .brevo-frame { min-height: 340px; } }

/* v0.6 - authentic editorial photography */
.hero-photo {
  min-height: 720px;
  background: linear-gradient(115deg, #fbfaf7 0%, #fbfaf7 63%, #edf3ef 100%);
}
.hero-photo::before,
.hero-photo::after { display: none; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-visual {
  margin: 0;
  position: relative;
  min-height: 520px;
  border-radius: 2.25rem 2.25rem 2.25rem .75rem;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(24,56,59,.18);
  isolation: isolate;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18,45,47,.66) 100%);
  pointer-events: none;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.2rem;
  color: rgba(255,255,255,.94);
  font-size: .86rem;
  line-height: 1.45;
  max-width: 34ch;
}
.feature-split {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.feature-copy { max-width: 650px; }
.editorial-image {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 390px;
  background: #dfe9e2;
  box-shadow: var(--shadow);
}
.editorial-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-image-water { transform: rotate(-1.2deg); }
.image-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.image-card .card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(36,75,78,.10);
}
.image-card .card-body {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.image-card .card-body h3 { margin-top: 1rem; }
.image-card .card-body a { margin-top: auto; padding-top: 1rem; font-weight: 800; }
.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story-image { min-height: 430px; border-radius: 50% 50% 1.6rem 1.6rem; }
.partner-split {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.partner-photo {
  min-height: 420px;
  border-radius: 2rem .75rem 2rem 2rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}
.partner-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.partner-copy { max-width: 700px; }

@media (max-width: 1120px) {
  .hero-grid,
  .feature-split,
  .story-split,
  .partner-split { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .hero-copy { max-width: 780px; }
  .feature-copy { max-width: 760px; }
  .editorial-image,
  .story-image,
  .partner-photo { min-height: 420px; }
}

@media (max-width: 720px) {
  .hero-photo { min-height: auto; }
  .hero-grid { gap: 2rem; }
  .hero-visual { min-height: 360px; border-radius: 1.4rem 1.4rem 1.4rem .5rem; }
  .hero-visual figcaption { font-size: .78rem; }
  .editorial-image,
  .story-image,
  .partner-photo { min-height: 300px; transform: none; }
  .story-image { border-radius: 1.5rem; }
  .ecosystem-grid { gap: 1.5rem; }
}

/* v0.8 — immersive hero with cache-safe JS crossfade */
.home-page .site-header {
  position: relative;
  z-index: 20;
  margin-bottom: -116px;
  padding-top: 1rem;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
.home-page .header-inner {
  min-height: 92px;
  padding: 0 1.35rem;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 1.75rem;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 55px rgba(22,45,47,.12);
  backdrop-filter: blur(18px) saturate(118%);
  -webkit-backdrop-filter: blur(18px) saturate(118%);
}
.home-page .brand img { width: 158px; }
.home-page .site-nav { gap: .15rem; }
.home-page .site-nav a { padding: .7rem .62rem; }
.home-page .nav-cta { display: none; }

.hero-immersive {
  min-height: min(880px, calc(100svh - 5rem));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #e9eee8;
}
.hero-immersive::before,
.hero-immersive::after { display: none; }
.hero-backgrounds,
.hero-bg,
.hero-wash {
  position: absolute;
  inset: 0;
}
.hero-backgrounds { z-index: -3; overflow: hidden; background: #dfe8e2; }
.hero-bg {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 2.4s ease-in-out, transform 12s ease-out;
  animation: none !important;
  will-change: opacity, transform;
  filter: saturate(.88) contrast(.98) brightness(1.03);
}
.hero-bg.is-active {
  opacity: 1;
  transform: scale(1.06);
}
.hero-bg-signature {
  object-position: 58% 52%;
  filter: saturate(.92) contrast(1.01) brightness(1.04);
}
.hero-bg-canyon {
  z-index: 1;
  object-position: 54% 48%;
}
.hero-bg-water {
  z-index: 2;
  object-position: 56% 50%;
}
.hero-bg-butterfly {
  z-index: 3;
  object-position: 71% 48%;
}
.hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251,248,240,.985) 0%, rgba(251,248,240,.94) 28%, rgba(251,248,240,.76) 45%, rgba(246,231,197,.24) 67%, rgba(20,61,66,.10) 100%),
    linear-gradient(180deg, rgba(255,247,225,.20) 0%, rgba(251,250,247,.04) 54%, rgba(19,42,44,.16) 100%);
  pointer-events: none;
}
.hero-photo-credit {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: 1.25rem;
  z-index: 3;
  margin: 0;
  padding: .35rem .55rem;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(13,39,42,.38);
  backdrop-filter: blur(6px);
  font-size: .68rem;
  letter-spacing: .03em;
}
.hero-immersive-inner {
  width: var(--container);
  padding: clamp(9rem, 16vw, 12rem) 0 clamp(5.5rem, 10vw, 8rem);
}
.hero-copy-immersive {
  max-width: 790px;
  padding: clamp(1.2rem, 2vw, 2rem) 0;
}
.hero-copy-immersive .eyebrow {
  color: var(--orange-dark);
  margin-bottom: 1rem;
}
.hero-copy-immersive h1 {
  max-width: 780px;
  margin-bottom: 1.55rem;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8.2vw, 7.25rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.055em;
  color: #173c3d;
  text-wrap: balance;
}
.hero-dot { color: var(--orange); }
.hero-copy-immersive .lead {
  max-width: 670px;
  margin: 0;
  color: #355456;
  font-size: clamp(1.12rem, 1.75vw, 1.4rem);
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(255,255,255,.28);
}
.hero-actions { margin-top: 2.25rem; gap: 1rem; }
.hero-actions .btn {
  min-height: 58px;
  padding: 1rem 1.65rem;
  border-radius: .85rem;
  font-size: 1.02rem;
}
.btn-glass {
  color: #173c3d;
  border-color: rgba(23,60,61,.58);
  background: rgba(255,255,255,.54);
  box-shadow: 0 10px 30px rgba(23,60,61,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover {
  color: #fff;
  background: rgba(23,60,61,.94);
  border-color: rgba(23,60,61,.94);
}
.hero-copy-immersive .hero-note {
  max-width: 660px;
  margin-top: 1.45rem;
  color: rgba(34,66,68,.78);
  font-size: .84rem;
}
.hero-scroll {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 1.7rem;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(23,60,61,.28);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s ease, transform .2s ease;
}
.hero-scroll:hover { background: rgba(23,60,61,.52); transform: translateX(-50%) translateY(2px); }
.hero-scroll span {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

@media (max-width: 1100px) {
  .home-page .brand img { width: 132px; }
  .home-page .site-nav a { font-size: .88rem; padding-inline: .48rem; }
  .hero-copy-immersive { max-width: 710px; }
  .hero-wash {
    background:
      linear-gradient(90deg, rgba(251,250,247,.98) 0%, rgba(251,250,247,.93) 36%, rgba(251,250,247,.68) 62%, rgba(251,250,247,.18) 100%),
      linear-gradient(180deg, rgba(251,250,247,.18), rgba(19,42,44,.12));
  }
}

/* v3.8 — autorský fotografický rukopis Finančného horizontu */
.hero-immersive .hero-bg-signature {
  object-position: 58% 52%;
  filter: saturate(.92) contrast(1.01) brightness(1.04);
}
.hero-immersive .hero-wash {
  background:
    linear-gradient(90deg, rgba(251,248,240,.985) 0%, rgba(251,248,240,.94) 28%, rgba(251,248,240,.76) 45%, rgba(246,231,197,.24) 67%, rgba(20,61,66,.10) 100%),
    linear-gradient(180deg, rgba(255,247,225,.20) 0%, rgba(251,250,247,.04) 54%, rgba(19,42,44,.16) 100%);
}
@media (max-width: 820px) {
  .hero-immersive .hero-bg-signature { object-position: 54% 50%; }
  .hero-immersive .hero-wash {
    background:
      linear-gradient(180deg, rgba(251,248,240,.95) 0%, rgba(251,248,240,.82) 62%, rgba(20,61,66,.24) 100%);
  }
}

@media (max-width: 1120px) {
  .home-page .site-header { margin-bottom: -104px; padding-top: .7rem; }
  .home-page .header-inner { min-height: 80px; border-radius: 1.25rem; }
  .home-page .nav-toggle { background: rgba(255,255,255,.82); }
  .home-page .site-nav { background: rgba(255,255,255,.96); backdrop-filter: blur(16px); }
  .hero-immersive { min-height: 760px; }
  .hero-immersive-inner { padding-top: 9.5rem; }
}

@media (max-width: 720px) {
  .home-page .site-header {
    margin-bottom: -84px;
    padding-top: .45rem;
  }
  .home-page .header-inner {
    width: calc(100% - 1rem);
    min-height: 68px;
    padding-inline: .8rem;
    border-radius: 1rem;
  }
  .home-page .brand img { width: 105px; }
  .hero-immersive {
    min-height: 720px;
    align-items: end;
  }
  .hero-bg-water,
  .hero-bg-butterfly { display: none; }
  .hero-bg-canyon {
    opacity: 1;
    object-position: 60% 50%;
    transform: scale(1.02);
  }
  .hero-wash {
    background:
      linear-gradient(180deg, rgba(251,250,247,.78) 0%, rgba(251,250,247,.88) 35%, rgba(251,250,247,.92) 64%, rgba(251,250,247,.78) 100%),
      linear-gradient(90deg, rgba(251,250,247,.92), rgba(251,250,247,.42));
  }
  .hero-immersive-inner {
    padding: 8.4rem 0 5rem;
  }
  .hero-copy-immersive h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
    line-height: 1.01;
  }
  .hero-copy-immersive .lead { font-size: 1.05rem; }
  .desktop-only { display: none; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-copy-immersive .hero-note { font-size: .78rem; }
  .hero-scroll { bottom: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { transition: none !important; transform: none !important; }
  .hero-bg-canyon { opacity: 1 !important; }
  .hero-bg-water,
  .hero-bg-butterfly { opacity: 0 !important; }
}


/* v1.0 — full source-grounded content */
.longform-grid { display:grid; grid-template-columns:minmax(260px,.75fr) minmax(0,1.25fr); gap:clamp(2rem,6vw,6rem); align-items:start; }
.prose-large { font-size:clamp(1.05rem,1.6vw,1.22rem); }
.prose-large p { margin-top:0; margin-bottom:1.35rem; }
.timeline-detailed .card { padding:clamp(1.35rem,2.4vw,2rem); }
.timeline-detailed ul { padding-left:1.15rem; color:inherit; }
.timeline-detailed li + li { margin-top:.5rem; }
.service-stack { display:grid; gap:0; margin-top:2rem; border-top:1px solid var(--line); }
.service-row { display:grid; grid-template-columns:90px 1fr; gap:1.25rem; padding:1.55rem 0; border-bottom:1px solid var(--line); }
.service-number { color:var(--orange-dark); font-weight:900; font-size:1.2rem; }
.service-row h3 { margin-bottom:.35rem; }
.service-row p { margin:0; max-width:75ch; }
.checklist-negative { list-style:none; padding:0; }
.checklist-negative li { position:relative; padding-left:1.65rem; margin:.65rem 0; }
.checklist-negative li::before { content:"×"; position:absolute; left:0; color:var(--danger); font-weight:900; }
.feature-list { padding-left:1.2rem; }
.feature-list li + li { margin-top:.75rem; }
.badge-progress { background:#fff3e8; border-color:rgba(200,92,24,.35); color:var(--orange-dark); }
.product-shell { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(260px,.6fr); gap:1.5rem; margin-top:2rem; }
.product-main,.product-aside { border:1px solid rgba(36,75,78,.14); border-radius:var(--radius); padding:clamp(1.4rem,3vw,2.2rem); background:var(--paper); }
.product-main ul { padding-left:1.2rem; }
.product-aside { background:linear-gradient(145deg,#fff,#f4eee4); }
.product-card { display:flex; flex-direction:column; }
.product-card ul { padding-left:1.15rem; }
.product-card .btn { margin-top:auto; align-self:flex-start; }
.feature-split-reverse { grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr); }
.page-hero-photo { background:linear-gradient(135deg,#fbfaf7,#edf1ea); }
@media (max-width:980px){ .longform-grid,.product-shell,.feature-split-reverse{grid-template-columns:1fr;} }
@media (max-width:720px){ .service-row{grid-template-columns:1fr;gap:.35rem;} }


/* Finančný horizont v2.0 */
:root{--orange:#f48239;--orange-dark:#c75e1a;--horizon:#1d4650;--horizon-2:#102f38;--warm-white:#fbfaf7;--paper:#fff;--sand:#efe8dc;--sand-light:#f7f2e9;--ink:#1c292c;--muted:#607075}
.brand-lockup{display:flex;align-items:center;gap:.8rem;text-decoration:none;color:var(--ink);min-width:235px}.brand-lockup img{width:72px}.brand-lockup span{display:flex;flex-direction:column;line-height:1.1}.brand-lockup strong{font-family:var(--font-serif);font-size:1.18rem}.brand-lockup small{font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-top:.28rem}.footer-lockup{display:flex;gap:.75rem;align-items:center}.footer-lockup img{width:70px}.footer-lockup div{display:flex;flex-direction:column}.footer-lockup strong{font-family:var(--font-serif);font-size:1.2rem}.footer-lockup span{font-size:.78rem;opacity:.72}
.story-bridge {
  color: #f7efd2;
  background:
    radial-gradient(circle at 18% 18%, rgba(201,155,54,.17), transparent 26rem),
    linear-gradient(145deg, #061b2c 0%, #0b2b3b 64%, #071a28 100%);
}
.story-layout {
  display: grid;
  grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr);
  gap: clamp(2rem,6vw,5rem);
  align-items: center;
}
.story-bridge-visual {
  margin: 0;
  min-height: 560px;
  border-radius: 13rem 13rem 1.5rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.story-bridge-visual img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; display: block; }
.story-bridge .eyebrow { color: #e1be63; }
.story-bridge h2 { color: #fff8df; }
.story-bridge p { color: rgba(247,239,210,.76); }
.story-bridge .lead { color: rgba(255,248,223,.9); }
.btn-story {
  color: #0b2232;
  background: linear-gradient(135deg,#f7e7a8,#c99b36);
  border-color: transparent;
}
.btn-story:hover { color: #071a28; background: #fff3c9; }
.story-context-link { color: #f0d98e; font-weight: 800; }
.network-row-story {
  border-color: rgba(201,155,54,.42);
  background: linear-gradient(90deg,rgba(7,31,47,.035),rgba(201,155,54,.08));
}
@media (max-width: 900px) {
  .story-layout { grid-template-columns: 1fr; }
  .story-bridge-visual { min-height: 440px; max-height: 620px; }
  .story-bridge-visual img { min-height: 440px; }
}
.hero-immersive{position:relative;isolation:isolate;min-height:760px;overflow:hidden;display:grid;align-items:center;background:#dce7e4}.hero-backgrounds{position:absolute;inset:0;z-index:-3}.hero-wash{position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(251,250,247,.97) 0%,rgba(251,250,247,.88) 43%,rgba(251,250,247,.32) 72%,rgba(10,31,34,.12) 100%)}.hero-panel{max-width:800px}.hero-panel h1{font-family:var(--font-serif);font-weight:520;font-size:clamp(3rem,6.3vw,6.5rem)}.btn-glass{background:rgba(255,255,255,.72);border-color:rgba(29,70,80,.55);color:var(--horizon);backdrop-filter:blur(8px)}.hero-scroll{position:absolute;bottom:1.5rem;left:50%;width:34px;height:34px;border:1px solid rgba(255,255,255,.7);border-radius:50%;display:grid;place-items:center}.hero-scroll span{width:8px;height:8px;border-right:2px solid white;border-bottom:2px solid white;transform:rotate(45deg) translate(-1px,-1px)}
.route-grid .featured,.pricing-card.featured{border-color:rgba(244,130,57,.8);box-shadow:0 20px 60px rgba(244,130,57,.13)}.route-number{font-size:2.3rem;font-family:var(--font-serif);color:var(--orange-dark)}.price-inline,.price{display:block;font-weight:900;color:var(--horizon);font-size:2.2rem;margin:.6rem 0 1rem}.section-heading-row{display:flex;gap:2rem;justify-content:space-between;align-items:end;margin-bottom:2rem}.product-spotlight{display:grid;grid-template-columns:minmax(280px,.7fr) minmax(0,1.3fr);gap:clamp(2rem,7vw,6rem);align-items:center}.guide-cover{aspect-ratio:3/4;max-width:390px;padding:2rem;border-radius:1.4rem;background:linear-gradient(145deg,#173f49,#0d2931);color:white;box-shadow:0 30px 80px rgba(10,39,46,.26);display:flex;flex-direction:column;position:relative;overflow:hidden}.guide-cover:before{content:"";position:absolute;width:380px;height:380px;border:1px solid rgba(255,255,255,.14);border-radius:50%;right:-190px;top:-90px;box-shadow:0 0 0 60px rgba(244,130,57,.06),0 0 0 120px rgba(255,255,255,.03)}.guide-cover>*{position:relative}.guide-cover h2{font-family:var(--font-serif);font-size:clamp(2.5rem,5vw,4.5rem);margin:auto 0 .5rem;color:#fff}.guide-cover p{font-size:1.2rem;color:#ffc49c}.cover-brand{letter-spacing:.16em;font-weight:900;font-size:.78rem}.cover-steps{display:flex;gap:.5rem;margin:1.4rem 0}.cover-steps span{border:1px solid rgba(255,255,255,.3);padding:.35rem .55rem;border-radius:999px;font-size:.78rem}.guide-cover small{max-width:26ch;opacity:.78}.guide-cover.large{max-width:430px}.check-list,.x-list{list-style:none;padding:0}.check-list li,.x-list li{position:relative;padding-left:1.7rem;margin:.65rem 0}.check-list li:before{content:"✓";position:absolute;left:0;color:var(--success);font-weight:900}.x-list li:before{content:"!";position:absolute;left:0;color:var(--danger);font-weight:900}.split,.story-layout,.help-layout,.cta-band{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(2rem,6vw,5rem);align-items:center}.story-layout{grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr)}.cta-band{align-items:center}.pricing-card{display:flex;flex-direction:column}.pricing-card .btn{margin-top:auto}.pricing-card p{flex:1}.grid-5{grid-template-columns:repeat(5,minmax(0,1fr))}.compact-cards .card{padding:1rem}.compact-cards strong{font-size:2rem;color:var(--orange-dark)}.network-list{display:grid;gap:1px;background:var(--line);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}.network-row{display:grid;grid-template-columns:210px minmax(0,1fr) auto;gap:2rem;align-items:center;background:var(--paper);padding:2rem}.network-row h2{font-size:2rem;margin-bottom:.4rem}.network-label{font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;font-weight:800;color:var(--orange-dark)}.light{background:rgba(255,255,255,.1);color:white}.chapter-list details{background:#fff}.hp{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important}.optional{font-weight:400;color:var(--muted);font-size:.82rem}.form-status{min-height:1.4em}.form-status.success{color:var(--success)}.form-status.error{color:var(--danger)}.badge{width:max-content}.partner-grid .card{min-height:280px}.brevo-frame{width:100%;min-height:305px;border:0}.newsletter-layout{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:2rem}.editorial-image{min-height:450px}
@media(max-width:1050px){.site-nav{gap:0}.site-nav a{padding:.65rem .45rem;font-size:.84rem}.brand-lockup{min-width:185px}.brand-lockup img{width:60px}.brand-lockup strong{font-size:1rem}.grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-5{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:820px){.product-spotlight,.split,.story-layout,.help-layout,.cta-band,.newsletter-layout{grid-template-columns:1fr}.guide-cover{margin:auto}.section-heading-row{align-items:start;flex-direction:column}.network-row{grid-template-columns:1fr;gap:.75rem}.grid-5{grid-template-columns:1fr}.hero-immersive{min-height:680px}.hero-wash{background:linear-gradient(180deg,rgba(251,250,247,.94),rgba(251,250,247,.76))}.hero-panel h1{font-size:clamp(2.7rem,12vw,4.7rem)}}

@media (max-width: 820px) {
  .hero-bg-signature { object-position: 54% 50%; }
  .hero-photo-credit {
    right: .8rem;
    bottom: .8rem;
    font-size: .62rem;
  }
}

/* v2.2 Cal.com integration */
.orientation-offer{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:2rem;align-items:center;padding:1.6rem 1.8rem;margin-bottom:2.2rem;background:#eef4f1;border:1px solid rgba(29,70,80,.14);border-radius:20px}.orientation-offer h2{margin:.15rem 0 .55rem}.orientation-offer .price{margin-bottom:.65rem;text-align:center}.small-note{margin:.8rem 0 0;font-size:.86rem;line-height:1.45;color:var(--muted)}@media(max-width:760px){.orientation-offer{grid-template-columns:1fr}.orientation-offer .price{text-align:left}}


/* v3.0.0 production additions */
.contact-list{display:grid;gap:.6rem}.contact-list p{margin:0 0 1rem}
h4{font-size:1rem;margin:1.1rem 0 .4rem;color:var(--horizon)}
.copy h2{margin-top:2.5rem}.copy h3{margin-top:1.6rem}
.copy ul,.copy ol{padding-left:1.25rem}.copy li+li{margin-top:.45rem}
.form-shell .btn{margin-top:1.25rem}
@media print{.site-header,.site-footer,.safety-bar,.hero-scroll,.actions{display:none!important}body{background:#fff;color:#000}main{min-height:0}.section,.page-hero{padding:1.5rem 0}}

/* v3.1 — oprava kontrastu bielych kariet v tmavých sekciách */
.section-dark .card:not(.card-dark) {
  color: var(--ink);
}
.section-dark .card:not(.card-dark) h2,
.section-dark .card:not(.card-dark) h3,
.section-dark .card:not(.card-dark) h4,
.section-dark .card:not(.card-dark) strong {
  color: var(--horizon);
}
.section-dark .card:not(.card-dark) p,
.section-dark .card:not(.card-dark) li,
.section-dark .card:not(.card-dark) small {
  color: var(--muted);
}
.section-dark .card:not(.card-dark) a {
  color: var(--horizon);
}
.section-dark .card:not(.card-dark) a:hover {
  color: var(--orange-dark);
}
.section-dark .timeline .card .time {
  color: var(--horizon);
}


/* v3.2 — O mne a sekcie „Nie ste v tom sami“ */
.stats-heading{max-width:960px;align-items:start}
.stats-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;margin-top:2rem}
.stats-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.stat-card{display:flex;flex-direction:column;min-height:280px;padding:clamp(1.3rem,2.5vw,2rem);background:linear-gradient(155deg,#fff,#f8f5ef);border:1px solid rgba(29,70,80,.14);border-radius:var(--radius);box-shadow:0 14px 40px rgba(20,54,62,.06)}
.stat-number{display:block;font-family:var(--font-serif);font-size:clamp(2.5rem,4.5vw,4.3rem);line-height:1;color:var(--orange-dark);margin-bottom:1rem}
.stat-card h3{font-size:1.15rem;line-height:1.35;color:var(--horizon);margin:0 0 .65rem}
.stat-card p{color:var(--muted);margin:0 0 1.2rem}
.stat-card small{margin-top:auto;color:var(--muted);font-weight:700}
.reassurance-panel{margin-top:1.4rem;padding:clamp(1.4rem,3vw,2.2rem);background:#eef4f1;border-left:6px solid var(--orange);border-radius:0 var(--radius) var(--radius) 0}
.reassurance-panel h3{margin:0 0 .45rem;color:var(--horizon)}
.reassurance-panel p{margin:0;max-width:88ch;color:var(--ink)}
.source-note{max-width:100ch;margin:1.25rem 0 0;font-size:.78rem;line-height:1.55;color:var(--muted)}
.source-note a{color:var(--horizon);text-decoration:underline;text-underline-offset:2px}
.author-teaser{align-items:center}
.author-visual,.author-visual-large{margin:0;overflow:hidden;border-radius:var(--radius);background:var(--sand)}
.author-visual img,.author-visual-large img{width:100%;height:100%;min-height:420px;object-fit:cover}
.author-visual-large figcaption{padding:.8rem 1rem;background:var(--horizon);color:#fff;font-size:.82rem}
.author-story{align-items:center}
.quote-panel{margin:2rem 0 0;padding:1.4rem 1.6rem;border-left:5px solid var(--orange);background:#fff;border-radius:0 16px 16px 0;font-family:var(--font-serif);font-size:clamp(1.25rem,2vw,1.65rem);line-height:1.45;color:var(--horizon)}
.boundary-card{background:linear-gradient(145deg,#fff,#f4eee4)}
@media(max-width:1050px){.stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:700px){.stats-grid,.stats-grid-3{grid-template-columns:1fr}.stat-card{min-height:0}.author-visual img,.author-visual-large img{min-height:320px}.reassurance-panel{border-left-width:4px}}


/* v3.3 – viditeľný newsletter */
.home-newsletter { border-top: 1px solid var(--line); }
.newsletter-home-layout { margin-top: 1.5rem; }
.newsletter-home-layout .newsletter-aside.card { background: var(--paper); }
.newsletter-home-layout .actions { align-items: flex-start; }
.newsletter-home-layout .actions > a:not(.btn) { font-weight: 750; padding-block: .75rem; }
@media (max-width: 1120px) { .nav-toggle { display: inline-flex; } }

/* v3.6 — zrozumiteľné prepojenie ekosystému a oprava kontrastu */
.site-nav .nav-finance {
  color: #75551c;
  background: #fff8e8;
  border: 1px solid rgba(193,151,62,.34);
}
.site-nav .nav-finance:hover {
  color: #4f360b;
  background: #fff1c8;
}

.ecosystem-core {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.ecosystem-role {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(1.4rem,3vw,2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 35px rgba(17,47,53,.06);
}
.ecosystem-role .role-number {
  color: var(--orange-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ecosystem-role h2,
.ecosystem-role h3 {
  margin: 1rem 0 .65rem;
}
.ecosystem-role p { margin-bottom: 1.4rem; }
.ecosystem-role .role-link {
  margin-top: auto;
  font-weight: 850;
  text-decoration: none;
}
.ecosystem-role.current {
  border-color: rgba(244,130,57,.58);
  background: linear-gradient(145deg,#fff,#fff8ef);
}
.ecosystem-role.finance {
  color: #f3eee4;
  border-color: rgba(201,166,103,.35);
  background:
    radial-gradient(circle at 90% 5%, rgba(201,166,103,.15), transparent 16rem),
    linear-gradient(145deg,#080b0c,#12191b);
}
.ecosystem-role.finance h2,
.ecosystem-role.finance h3 { color: #fff; }
.ecosystem-role.finance p { color: rgba(243,238,228,.74); }
.ecosystem-role.finance .role-number,
.ecosystem-role.finance .role-link { color: #d8b978; }

.need-map {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.need-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.need-card .need-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--horizon);
  background: var(--sand-light);
  font-weight: 900;
}
.need-card h3 { margin: .1rem 0 .35rem; font-size: 1.2rem; }
.need-card p { margin: 0 0 .55rem; }
.need-card a { font-weight: 800; }

.route-choice {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.route-choice .ecosystem-role { min-height: 330px; }
.route-choice-list {
  margin: .35rem 0 1.5rem;
  padding-left: 1.15rem;
}
.route-choice-list li + li { margin-top: .45rem; }

.section-dark .card.light {
  color: var(--ink);
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}
.section-dark .card.light h2,
.section-dark .card.light h3,
.section-dark .card.light .price {
  color: var(--horizon);
}
.section-dark .card.light p {
  color: #53676c;
}
.section-dark .card.light .badge {
  color: #7b501a;
  background: #fff6e7;
}
.section-dark .section-intro {
  max-width: 820px;
  color: rgba(255,255,255,.76);
}

.service-boundary {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 2rem;
  align-items: center;
  margin: 0 0 2rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(193,151,62,.28);
  border-radius: 18px;
  background: linear-gradient(100deg,#fffaf0,#fff);
}
.service-boundary h3 { margin: 0 0 .35rem; }
.service-boundary p { margin: 0; }

@media (max-width: 900px) {
  .ecosystem-core,
  .route-choice,
  .need-map { grid-template-columns: 1fr; }
  .ecosystem-role,
  .route-choice .ecosystem-role { min-height: 0; }
  .service-boundary { grid-template-columns: 1fr; }
}

@media (max-width: 1280px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .4rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .65rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: .8rem .9rem; }
}

/* v4.0 — čistý farebný systém s ostrými prechodmi */
:root {
  --warm-white: #f9f7f2;
  --paper: #fffdf9;
  --sand: #e9e1d5;
  --sand-light: #f2ede4;
  --horizon: #21494c;
  --horizon-2: #17383b;
  --line: #d8dcd6;
}

body { background: #f9f7f2; }

.safety-bar {
  background: #f1e8db;
  border-bottom-color: #e0d2bf;
}

.site-header {
  background: rgba(249,247,242,.94);
  border-bottom-color: rgba(33,73,76,.08);
}

.section,
.page-hero,
.hero {
  position: relative;
  isolation: isolate;
}

.section > .container,
.page-hero > .container,
.hero > .hero-inner {
  position: relative;
  z-index: 1;
}

.section-white { background: #fffdf9; }

.section-sand { background: #f2ede4; }

.section-dark {
  background: #21494c;
}

.finance-bridge {
  --section-surface: #1b3f42;
  background:
    radial-gradient(circle at 82% 18%, rgba(201,166,103,.16), transparent 25rem),
    radial-gradient(circle at 10% 100%, rgba(29,70,80,.34), transparent 30rem),
    linear-gradient(160deg, #1b3f42 0%, #101b1d 20%, #090d0e 62%, #111719 100%);
}

.story-bridge {
  --section-surface: #183c45;
  background:
    radial-gradient(circle at 18% 18%, rgba(201,155,54,.17), transparent 26rem),
    linear-gradient(155deg, #183c45 0%, #0b2b3b 29%, #071a28 100%);
}

main > .hero + .section::before,
main > .page-hero + .section::before,
main > .section + .section::before { display: none; }

.page-hero {
  background: #f3f1ea;
  border-bottom-color: rgba(33,73,76,.13);
}

.card,
.form-shell,
.ecosystem-role,
.need-card {
  background-color: rgba(255,253,249,.96);
  border-color: rgba(33,73,76,.11);
  box-shadow: 0 12px 38px rgba(24,56,59,.052);
}

.ecosystem-role.finance {
  background:
    radial-gradient(circle at 90% 5%, rgba(201,166,103,.15), transparent 16rem),
    linear-gradient(150deg, #173a3d 0%, #0d1517 24%, #080b0c 100%);
}

.home-newsletter {
  border-top-color: rgba(33,73,76,.08);
}

.site-footer {
  position: relative;
  background: #172426;
}

.site-footer::before { display: none; }

@media (max-width: 720px) {
  main > .hero + .section::before,
  main > .page-hero + .section::before,
  main > .section + .section::before {
    top: -42px;
    height: 42px;
  }

  .site-footer::before { display: none; }
}

/* v4.0 — autorská fotografia bez zásahu do textov */
.home-main > .section {
  border-top: 1px solid rgba(33,73,76,.13);
}

.home-main > .section-dark,
.home-main > .finance-bridge,
.home-main > .story-bridge {
  border-top-color: rgba(255,255,255,.13);
}

.first-contact-section,
#nie-ste-v-tom-sami {
  padding-block: clamp(4.4rem, 6.5vw, 6.4rem);
}

.contact-intro-grid,
.stats-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: center;
}

.contact-intro-grid { margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }

.horizon-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #d8e1dc;
  border: 1px solid rgba(33,73,76,.18);
  border-radius: 1.4rem;
  box-shadow: 0 18px 48px rgba(24,56,59,.13);
}

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

.horizon-photo-contact {
  aspect-ratio: 16 / 9;
  border-radius: 1.4rem 1.4rem .45rem 1.4rem;
}

.horizon-photo-contact img { object-position: 50% 55%; }

.first-contact-section .pathway {
  margin-top: 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(33,73,76,.15);
}

.stats-editorial {
  max-width: none;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.stats-editorial-copy { max-width: 720px; }

.horizon-photo-stats {
  aspect-ratio: 4 / 3;
  border-radius: 12rem 12rem 1.4rem 1.4rem;
}

.horizon-photo-stats img { object-position: 52% 50%; }

.timeline-detailed {
  gap: 1.15rem;
  align-items: stretch;
}

.timeline-detailed .timeline-editorial-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-top: 1px solid rgba(255,255,255,.16);
  border-radius: 1.15rem;
  background: #fffdf9;
  box-shadow: 0 20px 46px rgba(8,31,34,.2);
}

.timeline-editorial-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(33,73,76,.13);
}

.timeline-editorial-card:nth-child(1) > img { object-position: 50% 51%; }
.timeline-editorial-card:nth-child(2) > img { object-position: 50% 66%; }
.timeline-editorial-card:nth-child(3) > img { object-position: 50% 53%; }
.timeline-editorial-card > div { padding: clamp(1.35rem, 2.25vw, 1.9rem); }

.guide-photo-stack {
  position: relative;
  min-height: 570px;
  padding: 0 2rem 2rem 0;
}

.guide-photo {
  position: absolute;
  inset: 0 3.5rem 3rem 0;
  border-radius: 1.7rem 1.7rem .55rem 1.7rem;
}

.guide-photo img { object-position: 52% 50%; }

.guide-photo-stack .guide-cover {
  position: relative;
  z-index: 2;
  width: min(70%, 370px);
  margin: 4rem 0 0 auto;
  box-shadow: 0 30px 70px rgba(9,34,37,.32);
}

.closing-photo-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 500px;
  display: grid;
  align-items: center;
  background: #17383b;
}

.closing-photo,
.closing-photo-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-photo {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 52%;
}

.closing-photo-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(18,52,55,.95) 0%, rgba(18,52,55,.82) 52%, rgba(18,52,55,.36) 100%);
}

.closing-photo-section .cta-band {
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 1.3rem;
  background: rgba(18,52,55,.72);
}

@media (max-width: 980px) {
  .contact-intro-grid,
  .stats-editorial { grid-template-columns: 1fr; }
  .horizon-photo-contact,
  .horizon-photo-stats {
    width: 100%;
    max-height: 460px;
    border-radius: 1.25rem;
  }
  .guide-photo-stack { min-height: 520px; }
}

@media (max-width: 720px) {
  .first-contact-section,
  #nie-ste-v-tom-sami {
    padding-block: 3.6rem;
  }
  .contact-intro-grid { gap: 1.5rem; }
  .first-contact-section .pathway { padding-top: 1.1rem; }
  .horizon-photo-contact,
  .horizon-photo-stats {
    max-height: none;
    aspect-ratio: 4 / 3;
  }
  .guide-photo-stack {
    min-height: 480px;
    padding: 0 1rem 1rem 0;
  }
  .guide-photo { inset: 0 1.25rem 2.5rem 0; }
  .guide-photo-stack .guide-cover {
    width: min(78%, 310px);
    min-height: 410px;
    margin-top: 2.5rem;
  }
  .closing-photo-section { min-height: 560px; }
  .closing-photo-overlay {
    background: rgba(18,52,55,.78);
  }
}

/* Reprezentatívne titulky hlavných podstránok */
.page-hero-photo {
  padding-block: clamp(3.4rem, 6vw, 5.6rem);
  background: #f3f1ea;
}

.page-hero-photo > .container {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: center;
}

.page-hero-copy { min-width: 0; }
.page-hero-copy h1 { max-width: 820px; }

.page-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #d8e1dc;
  border: 1px solid rgba(33,73,76,.18);
  border-radius: 11rem 11rem 1.4rem 1.4rem;
  box-shadow: 0 18px 48px rgba(24,56,59,.13);
}

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

.page-hero-media-wide {
  aspect-ratio: 16 / 11;
  border-radius: 1.4rem 1.4rem .45rem 1.4rem;
}

.page-hero-media-water img { object-position: 50% 50%; }
.page-hero-media-path img { object-position: 53% 56%; }
.page-hero-media-summit img { object-position: 50% 53%; }
.page-hero-media-vertical img { object-position: 50% 58%; }

@media (max-width: 980px) {
  .page-hero-photo > .container { grid-template-columns: 1fr; }
  .page-hero-media {
    width: 100%;
    max-height: 480px;
    border-radius: 1.25rem;
  }
}

@media (max-width: 720px) {
  .page-hero-photo { padding-block: 3rem; }
  .page-hero-photo > .container { gap: 1.75rem; }
  .page-hero-media {
    max-height: none;
    aspect-ratio: 4 / 3;
  }
}

/* v4.1 — finálna vizuálna a responzívna oprava */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.home-main,
.home-main > .section,
.home-main > .section > .container,
.product-spotlight > *,
.page-hero-photo > .container > * {
  min-width: 0;
}

.guide-photo-stack {
  width: 100%;
  max-width: 100%;
}

.guide-photo-stack .guide-cover {
  width: min(82%, 390px);
  max-width: 100%;
}

.guide-photo-stack .guide-cover h2 {
  max-width: 100%;
  font-size: clamp(2.35rem, 3.2vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  overflow-wrap: normal;
  word-break: normal;
}

.page-hero-media {
  width: 100%;
  max-width: 100%;
}

.actions .btn {
  max-width: 100%;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .guide-photo-stack {
    width: calc(100% - .15rem);
    padding-right: .85rem;
  }

  .guide-photo-stack .guide-cover {
    width: min(80%, 310px);
    margin-right: 0;
  }

  .guide-photo-stack .guide-cover h2 {
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  .page-hero-copy h1,
  .page-hero-copy .lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

/* v4.2 — plnohodnotné fotografické titulky podstránok */
.page-hero-immersive {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
  background: #dce7e4;
}

.page-hero-immersive .page-hero-background,
.page-hero-immersive .page-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-immersive .page-hero-background {
  z-index: -2;
  display: block;
  max-width: none;
  object-fit: cover;
  object-position: var(--hero-position, 50% 50%);
}

.page-hero-immersive .page-hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(251,250,247,.97) 0%,
      rgba(251,250,247,.91) 40%,
      rgba(251,250,247,.58) 59%,
      rgba(16,42,45,.12) 82%,
      rgba(16,42,45,.18) 100%);
}

.page-hero-immersive.hero-copy-right .page-hero-wash {
  background:
    linear-gradient(270deg,
      rgba(251,250,247,.97) 0%,
      rgba(251,250,247,.91) 40%,
      rgba(251,250,247,.58) 59%,
      rgba(16,42,45,.12) 82%,
      rgba(16,42,45,.18) 100%);
}

.page-hero-immersive > .container,
.page-hero-immersive.page-hero-photo > .container {
  position: relative;
  z-index: 1;
  display: block;
  width: var(--container);
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.page-hero-immersive.hero-copy-right .page-hero-copy {
  margin-left: auto;
}

.page-hero-immersive .page-hero-copy,
.page-hero-immersive > .container {
  min-width: 0;
}

.page-hero-immersive .page-hero-copy,
.page-hero-immersive > .container > .breadcrumbs,
.page-hero-immersive > .container > .eyebrow,
.page-hero-immersive > .container > h1,
.page-hero-immersive > .container > .lead,
.page-hero-immersive > .container > .actions {
  max-width: 850px;
}

.page-hero-immersive h1 {
  max-width: 850px;
  font-size: clamp(2.85rem, 5.6vw, 5.8rem);
  line-height: .99;
  text-wrap: balance;
}

.page-hero-immersive .lead {
  max-width: 760px;
  color: #244b4e;
  text-wrap: pretty;
}

.page-hero-immersive .page-hero-media {
  display: none;
}

.page-hero-immersive .breadcrumbs,
.page-hero-immersive .breadcrumbs a {
  color: rgba(29,70,80,.86);
}

.page-hero-immersive.hero-copy-panel .page-hero-wash {
  background: linear-gradient(180deg, rgba(12,37,40,.08), rgba(12,37,40,.28));
}

.page-hero-immersive.hero-copy-panel .page-hero-copy {
  max-width: min(760px, 100%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 1.35rem;
  background: rgba(251,250,247,.91);
  box-shadow: 0 22px 60px rgba(13,42,45,.2);
  backdrop-filter: blur(8px);
}

.page-hero-immersive.hero-copy-panel.hero-copy-right .page-hero-copy {
  margin-left: auto;
}

.page-hero-immersive.hero-copy-bottom {
  align-items: end;
}

.page-hero-immersive.hero-copy-bottom .page-hero-wash {
  background:
    linear-gradient(180deg,
      rgba(12,37,40,.04) 0%,
      rgba(12,37,40,.08) 48%,
      rgba(12,37,40,.38) 73%,
      rgba(12,37,40,.58) 100%);
}

.page-hero-immersive.hero-copy-bottom > .container {
  padding-top: clamp(18rem, 38vw, 27rem);
  padding-bottom: 2rem;
}

.page-hero-immersive.hero-copy-bottom .page-hero-copy {
  max-width: min(820px, 100%);
}

.page-hero-immersive.hero-tone-dark .page-hero-wash {
  background:
    linear-gradient(90deg,
      rgba(10,35,38,.92) 0%,
      rgba(10,35,38,.79) 43%,
      rgba(10,35,38,.32) 70%,
      rgba(10,35,38,.12) 100%);
}

.page-hero-immersive.hero-tone-dark.hero-copy-right .page-hero-wash {
  background:
    linear-gradient(270deg,
      rgba(10,35,38,.92) 0%,
      rgba(10,35,38,.79) 43%,
      rgba(10,35,38,.32) 70%,
      rgba(10,35,38,.12) 100%);
}

.page-hero-immersive.hero-tone-dark h1,
.page-hero-immersive.hero-tone-dark .lead,
.page-hero-immersive.hero-tone-dark .eyebrow,
.page-hero-immersive.hero-tone-dark .breadcrumbs,
.page-hero-immersive.hero-tone-dark .breadcrumbs a {
  color: #fff;
}

.page-hero-immersive.hero-tone-dark .lead {
  color: rgba(255,255,255,.89);
}

.creators-portrait {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  margin: 0;
  border-radius: 1.35rem;
  box-shadow: 0 22px 60px rgba(18,53,56,.16);
}

.creators-portrait img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 50% 45%;
}

.creators-portrait figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  border-radius: .8rem;
  color: #fff;
  background: rgba(13,43,46,.72);
  backdrop-filter: blur(5px);
}

.creators-inline-credit {
  margin: 1rem 0 1.4rem;
  color: var(--horizon);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 650;
}

.creators-profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.creators-profile-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .7rem 1rem;
  border: 1px solid rgba(29,70,80,.22);
  border-radius: 999px;
  color: var(--horizon);
  background: rgba(255,255,255,.76);
  font-weight: 760;
  text-decoration: none;
}

.creators-profile-links a:hover,
.creators-profile-links a:focus-visible {
  border-color: var(--horizon);
  background: #fff;
}

.creators-credit-line {
  margin-top: 1.35rem;
  color: var(--horizon);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
  font-weight: 560;
}

.creators-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.35rem;
  margin: 1.1rem 0 1.7rem;
}

.creators-links a {
  color: var(--horizon);
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: .24em;
}

@media (max-width: 820px) {
  .page-hero-immersive {
    min-height: 680px;
  }

  .page-hero-immersive .page-hero-background {
    object-position: var(--hero-position-mobile, var(--hero-position, 50% 50%));
  }

  .page-hero-immersive .page-hero-wash {
    background:
      linear-gradient(180deg,
        rgba(251,250,247,.95) 0%,
        rgba(251,250,247,.89) 51%,
        rgba(251,250,247,.58) 76%,
        rgba(16,42,45,.22) 100%);
  }

  .page-hero-immersive.hero-copy-right .page-hero-wash {
    background:
      linear-gradient(180deg,
        rgba(251,250,247,.95) 0%,
        rgba(251,250,247,.89) 51%,
        rgba(251,250,247,.58) 76%,
        rgba(16,42,45,.22) 100%);
  }

  .page-hero-immersive.hero-tone-dark .page-hero-wash,
  .page-hero-immersive.hero-tone-dark.hero-copy-right .page-hero-wash {
    background:
      linear-gradient(180deg,
        rgba(10,35,38,.91) 0%,
        rgba(10,35,38,.78) 53%,
        rgba(10,35,38,.4) 79%,
        rgba(10,35,38,.2) 100%);
  }

  .page-hero-immersive > .container,
  .page-hero-immersive.page-hero-photo > .container {
    padding: 4.8rem 0 5.6rem;
  }

  .page-hero-immersive h1 {
    font-size: clamp(2.55rem, 11vw, 4.55rem);
    line-height: 1.01;
  }

  .page-hero-immersive.hero-copy-panel .page-hero-copy {
    padding: 1.35rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
  }

  .page-hero-immersive.hero-copy-bottom > .container {
    padding-top: 18rem;
    padding-bottom: 1.25rem;
  }

  .page-hero-immersive.hero-copy-bottom .page-hero-copy {
    padding: 1.2rem;
  }

  .creators-portrait,
  .creators-portrait img {
    min-height: 420px;
  }
}

/* v4.3 — individuálne kompozície, bezpečné orezy a menšie textové plochy */
.page-hero-immersive.hero-copy-panel .page-hero-copy {
  max-width: min(680px, 100%);
  padding: clamp(1.45rem, 2.5vw, 2.1rem);
  border-color: rgba(255,255,255,.76);
  border-radius: 1.1rem;
  background: rgba(251,250,247,.96);
  box-shadow: 0 18px 48px rgba(13,42,45,.16);
  backdrop-filter: none;
}

.page-hero-immersive.hero-copy-panel .page-hero-copy h1 {
  font-size: clamp(2.7rem, 4.65vw, 4.9rem);
  line-height: 1.01;
}

.page-hero-immersive.hero-panel-compact .page-hero-copy {
  max-width: min(620px, 100%);
}

.page-hero-immersive.hero-panel-compact .page-hero-copy h1 {
  font-size: clamp(2.55rem, 4.2vw, 4.45rem);
}

.page-hero-immersive.hero-layout-split {
  grid-template-columns: minmax(0, 1.18fr) minmax(410px, .82fr);
  align-items: stretch;
  min-height: 760px;
  background: #f3eee5;
}

.page-hero-immersive.hero-layout-split > .page-hero-background {
  position: relative;
  inset: auto;
  z-index: 0;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: var(--hero-position, 50% 50%);
}

.page-hero-immersive.hero-layout-split > .page-hero-wash {
  display: none;
}

.page-hero-immersive.hero-layout-split > .container,
.page-hero-immersive.hero-layout-split.page-hero-photo > .container {
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  align-items: center;
  width: 100%;
  padding: clamp(3rem, 5vw, 5.5rem) clamp(2.25rem, 4vw, 4.8rem);
}

.page-hero-immersive.hero-layout-split .page-hero-copy {
  max-width: 560px;
}

.page-hero-immersive.hero-layout-split h1 {
  font-size: clamp(2.85rem, 4.7vw, 5.1rem);
}

.page-hero-immersive.hero-layout-band {
  grid-template-rows: minmax(455px, 60vh) auto;
  align-items: stretch;
  min-height: 760px;
  background: #f3eee5;
}

.page-hero-immersive.hero-layout-band > .page-hero-background {
  position: relative;
  inset: auto;
  z-index: 0;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 455px;
  object-fit: cover;
  object-position: var(--hero-position, 50% 50%);
}

.page-hero-immersive.hero-layout-band > .page-hero-wash {
  display: none;
}

.page-hero-immersive.hero-layout-band > .container,
.page-hero-immersive.hero-layout-band.page-hero-photo > .container {
  z-index: 1;
  grid-row: 2;
  display: block;
  width: var(--container);
  padding: clamp(2.4rem, 4vw, 3.5rem) 0;
}

.page-hero-immersive.hero-layout-band .page-hero-copy {
  max-width: 900px;
}

.page-hero-immersive.hero-layout-band h1 {
  margin-bottom: .75rem;
  font-size: clamp(2.75rem, 4.9vw, 5rem);
}

.creators-portrait {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.creators-portrait img {
  min-height: 0;
  object-position: 50% 46%;
}

@media (max-width: 820px) {
  .page-hero-immersive.hero-copy-panel .page-hero-copy {
    padding: 1.25rem;
    background: rgba(251,250,247,.97);
    backdrop-filter: none;
  }

  .page-hero-immersive.hero-copy-panel .page-hero-copy h1,
  .page-hero-immersive.hero-panel-compact .page-hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.65rem);
  }

  .page-hero-immersive.hero-layout-split {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(390px, 58vh) auto;
    min-height: 0;
  }

  .page-hero-immersive.hero-layout-split > .page-hero-background {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    min-height: 390px;
    object-position: var(--hero-position-mobile, var(--hero-position, 50% 50%));
  }

  .page-hero-immersive.hero-layout-split > .container,
  .page-hero-immersive.hero-layout-split.page-hero-photo > .container {
    grid-column: 1;
    grid-row: 2;
    padding: 2.3rem 1.25rem;
  }

  .page-hero-immersive.hero-layout-split h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .page-hero-immersive.hero-layout-band {
    grid-template-rows: minmax(350px, 52vh) auto;
    min-height: 0;
  }

  .page-hero-immersive.hero-layout-band > .page-hero-background {
    min-height: 350px;
    object-position: var(--hero-position-mobile, var(--hero-position, 50% 50%));
  }

  .page-hero-immersive.hero-layout-band > .container,
  .page-hero-immersive.hero-layout-band.page-hero-photo > .container {
    padding: 2.3rem 0 2.7rem;
  }

  .page-hero-immersive.hero-layout-band h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.9rem);
  }

  .creators-portrait,
  .creators-portrait img {
    min-height: 0;
  }
}
