:root {
  --navy-950: #051f34;
  --navy-900: #072b49;
  --navy-800: #0d3b5f;
  --blue-300: #a9cbe8;
  --blue-100: #eaf2f8;
  --peach-600: #e69257;
  --peach-500: #f3a86f;
  --peach-100: #fff0e4;
  --surface: #ffffff;
  --background: #f7f8f6;
  --border: #dce5ec;
  --text: #294154;
  --muted: #5b6d7c;
  --heading: #072b49;
  --shadow-sm: 0 4px 14px rgba(7, 43, 73, .06);
  --shadow-md: 0 14px 36px rgba(7, 43, 73, .11);
  --shadow-lg: 0 24px 70px rgba(7, 43, 73, .16);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --header-height: 72px;
  --font-heading: "Montserrat", "Inter", Arial, sans-serif;
  --font-body: "Source Sans 3", "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy-900);
  color: white;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  /* Pri vrchu stránky (0px) je lišta priehľadná a splýva s hero pozadím */
  background: rgba(247, 248, 246, 0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
/* Po odscrollovaní sa lišta vyplní do plného vzhľadu */
.site-header.scrolled {
  background: rgba(247, 248, 246, .9);
  border-bottom-color: rgba(7, 43, 73, .1);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 24px rgba(7, 43, 73, .06);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1.05; }
.brand-name { font-family: var(--font-heading); font-weight: 800; color: var(--navy-900); letter-spacing: -.035em; }
.brand-place { margin-top: 4px; font-size: 12px; font-weight: 700; color: var(--peach-600); letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--navy-900); text-decoration: none; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 3px; border-radius: 999px; background: var(--peach-500); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.nav-cta { padding: 11px 16px; border-radius: 10px; background: var(--navy-900); color: white !important; box-shadow: var(--shadow-sm); }
.nav-cta:hover { background: var(--navy-800); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  /* Pozadie hero siaha až pod priehľadnú hlavičku (od 0px) */
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  background: linear-gradient(110deg, rgba(169,203,232,.76) 0%, rgba(247,248,246,.96) 46%, rgba(243,168,111,.72) 100%);
}
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 52% 35%, rgba(255,255,255,.6), transparent 40%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); align-items: center; gap: 72px; padding-block: 56px 0; }
.hero-copy { max-width: 690px; }
.eyebrow, .section-kicker { margin: 0 0 16px; font-family: var(--font-heading); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; color: var(--peach-600); }
h1, h2, h3 { margin-top: 0; font-family: var(--font-heading); color: var(--heading); }
h1 { margin-bottom: 18px; font-size: clamp(3.75rem, 7vw, 6.5rem); line-height: .9; letter-spacing: -.065em; font-weight: 800; }
h2 { margin-bottom: 18px; font-size: clamp(2.25rem, 4.4vw, 3.75rem); line-height: 1.08; letter-spacing: -.045em; font-weight: 800; }
h3 { margin-bottom: 10px; font-size: 1.35rem; line-height: 1.2; letter-spacing: -.02em; }
.hero-location { margin: 0 0 22px; padding-top: 14px; border-top: 5px solid rgba(243,168,111,.7); font-size: clamp(1.2rem, 2vw, 1.75rem); color: var(--navy-900); }
.hero-claim { margin: 0 0 12px; font-family: var(--font-heading); font-size: clamp(1.55rem, 3vw, 2.55rem); line-height: 1.18; font-weight: 800; color: var(--navy-900); }
.hero-lead { max-width: 650px; margin: 0; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 24px; border: 2px solid transparent; border-radius: 12px; font-family: var(--font-heading); font-size: 15px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, textarea:focus-visible, .menu-toggle:focus-visible { outline: 3px solid var(--blue-300); outline-offset: 3px; }
.button-primary { color: var(--navy-900); background: var(--peach-500); box-shadow: 0 10px 28px rgba(7,43,73,.16); }
.button-primary:hover { background: var(--peach-600); box-shadow: 0 15px 34px rgba(7,43,73,.2); }
.button-secondary { border-color: var(--navy-900); color: var(--navy-900); background: rgba(255,255,255,.18); }
.button-secondary:hover { background: var(--navy-900); color: white; }
.button-light { background: white; color: var(--navy-900); }
.value-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 34px 0 0; }
.value-list li { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 8px 13px; border: 1px solid rgba(7,43,73,.13); border-radius: 999px; background: rgba(255,255,255,.68); font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--navy-900); }
.value-list svg { width: 20px; height: 20px; }
/* Výrez postavy — ukotvený vpravo dole, mierne odsadený od okraja */
.hero-portrait { position: absolute; z-index: 1; right: clamp(12px, 4vw, 110px); bottom: 0; margin: 0; width: clamp(400px, 38vw, 660px); pointer-events: none; }
/* Mäkký brandový svit za výrezom postavy — dodáva hĺbku */
.hero-portrait::before { content: ""; position: absolute; z-index: 0; inset: 10% 6% 0; border-radius: 50%; background: radial-gradient(58% 55% at 50% 45%, rgba(243,168,111,.42), transparent 70%); filter: blur(46px); }
/* „Stojí" na spodnej lište hero; spodok jemne splýva do pozadia */
.hero-portrait img { position: relative; z-index: 1; display: block; width: 100%; height: auto; margin-bottom: -1px; filter: drop-shadow(0 18px 34px rgba(7,43,73,.18)); -webkit-mask-image: linear-gradient(to bottom, #000 86%, transparent 100%); mask-image: linear-gradient(to bottom, #000 86%, transparent 100%); }

/* Brandový chevron za postavou (motív z manuálu), nenápadne */
.hero-brandmark { position: absolute; z-index: 0; right: clamp(-40px, 2vw, 60px); bottom: 6%; width: min(30vw, 420px); aspect-ratio: 3 / 4; pointer-events: none;
  background: linear-gradient(160deg, rgba(243,168,111,.30), rgba(169,203,232,.20));
  clip-path: polygon(54% 0, 100% 0, 46% 50%, 100% 100%, 54% 100%, 8% 50%); }

.section { padding-block: 112px; scroll-margin-top: 96px; }
.section-about { background: white; }
.about-grid { display: grid; grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr); align-items: center; gap: 80px; }
.about-photo { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 12%; }
.photo-caption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 13px 16px; border-radius: 12px; background: rgba(7,43,73,.88); color: white; font-size: 14px; font-weight: 600; backdrop-filter: blur(12px); }
.about-copy p { max-width: 710px; }
.about-copy .lead { font-size: 1.2rem; }
.accent-line { width: 92px; height: 5px; margin: 0 0 28px; border-radius: 999px; background: var(--peach-500); }
blockquote { margin: 30px 0 18px; padding: 24px 28px; border-left: 5px solid var(--peach-500); border-radius: 0 16px 16px 0; background: var(--blue-100); color: var(--navy-900); font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; }
.signature-row { display: flex; align-items: center; gap: 20px; margin-top: 18px; color: var(--navy-900); font-family: var(--font-heading); font-weight: 700; }
.signature-row img { width: 170px; max-height: 95px; object-fit: cover; object-position: 52% 50%; border-radius: 8px; mix-blend-mode: multiply; }

.section-priorities { background: var(--background); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading > p { max-width: 470px; margin: 0 0 12px; }
.priority-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.priority-card { position: relative; grid-column: span 2; min-height: 300px; padding: 30px; overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.priority-card:nth-child(4) { grid-column: 2 / span 2; }
.priority-card:nth-child(5) { grid-column: 4 / span 2; }
.priority-card:hover { transform: translateY(-5px); border-color: rgba(243,168,111,.85); box-shadow: var(--shadow-md); }
.priority-card > svg { width: 42px; height: 42px; margin: 32px 0 24px; color: var(--navy-900); }
.priority-number { position: absolute; top: 20px; right: 24px; font-family: var(--font-heading); font-size: 56px; font-weight: 800; color: rgba(7,43,73,.07); }
.priority-card p { margin-bottom: 0; color: var(--muted); }
.priority-card-featured { color: white; border-color: var(--navy-900); background: var(--navy-900); }
.priority-card-featured h3, .priority-card-featured > svg { color: white; }
.priority-card-featured p { color: #d8e5ee; }
.priority-card-featured .priority-number { color: rgba(255,255,255,.09); }

.section-values { position: relative; overflow: hidden; background: var(--navy-900); color: #d8e5ee; }
.section-values::before { content: ""; position: absolute; width: 520px; height: 520px; right: -260px; top: -100px; border: 70px solid rgba(243,168,111,.12); transform: rotate(45deg); }
.values-layout { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.section-kicker-light { color: #ffc496; }
.values-intro h2 { color: white; }
.values-intro p { max-width: 520px; }
.values-intro .button { margin-top: 18px; }
.values-stack { display: grid; gap: 14px; }
.value-panel { display: grid; grid-template-columns: 52px 1fr; gap: 22px; align-items: start; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.07); backdrop-filter: blur(14px); }
.value-panel > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--peach-500); color: var(--navy-900); font-family: var(--font-heading); font-weight: 800; }
.value-panel h3 { margin: 0 0 6px; color: white; }
.value-panel p { margin: 0; color: #d8e5ee; }

.section-quote { position: relative; overflow: hidden; background: linear-gradient(125deg, var(--blue-100) 0%, #ffffff 48%, var(--peach-100) 100%); }
/* Jemné brandové chevrony rámujúce citát — rovnaký motív ako inde, nenápadne */
.section-quote::before, .section-quote::after { content: ""; position: absolute; top: 50%; width: 120px; height: 120px; border: 26px solid; transform: translateY(-50%) rotate(45deg); opacity: .1; pointer-events: none; }
.section-quote::before { left: -46px; border-color: var(--navy-800) transparent transparent var(--navy-800); }
.section-quote::after { right: -46px; border-color: transparent var(--peach-600) var(--peach-600) transparent; }
.quote-inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 940px; margin-inline: auto; }
.quote-mark { display: block; font-family: var(--font-heading); font-weight: 800; font-size: clamp(3.4rem, 8vw, 5.4rem); line-height: 1; color: var(--peach-500); }
.quote-text { margin: 10px 0 30px; font-family: var(--font-heading); font-weight: 800; color: var(--navy-900); font-size: clamp(2.1rem, 5.4vw, 4rem); line-height: 1.06; letter-spacing: -.045em; }
.quote-author { display: flex; flex-direction: column; gap: 5px; margin: 0; font-family: var(--font-heading); font-weight: 800; color: var(--navy-900); font-size: 1.2rem; letter-spacing: -.01em; }
.quote-author span { font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--peach-600); }

.section-contact { background: var(--navy-950); color: #d8e5ee; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; }
.contact-copy h2 { color: white; }
.website-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: #ffc496; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; text-underline-offset: 5px; text-decoration-thickness: 2px; }
.contact-points { margin-top: 32px; padding-left: 20px; }
.contact-form { padding: 32px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.06); box-shadow: var(--shadow-lg); }
.form-row { display: grid; gap: 8px; margin-bottom: 18px; }
.form-row label { color: white; font-size: 14px; font-weight: 700; }
.form-row input, .form-row textarea { width: 100%; border: 1px solid rgba(255,255,255,.26); border-radius: 10px; padding: 13px 15px; color: var(--text); background: white; }
.form-row textarea { min-height: 150px; resize: vertical; }
.check-row { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 22px; font-size: 14px; line-height: 1.4; }
.check-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--peach-500); }
.contact-form .button { width: 100%; border: 0; }
.contact-form .button[disabled] { opacity: .65; cursor: progress; transform: none; }
.form-status { min-height: 24px; margin: 14px 0 0; font-size: 14px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { padding-block: 36px; background: #031522; color: #b9ccd9; font-size: 14px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 24px 48px; align-items: center; }
.footer-inner > div:first-child { display: flex; flex-direction: column; }
.footer-inner strong { color: white; font-family: var(--font-heading); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: white; text-underline-offset: 4px; }
.legal-note { grid-column: 1 / -1; margin: 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: #8299a8; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --header-height: 64px; }
  body { font-size: 17px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; gap: 0; padding: 16px 24px 26px; border-bottom: 1px solid var(--border); background: rgba(247,248,246,.98); box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .22s ease; }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 14px 0; font-size: 16px; }
  .site-nav a::after { display: none; }
  .nav-cta { margin-top: 10px; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 34px; }
  h1 { font-size: clamp(3.4rem, 8vw, 5rem); }
  .about-grid, .values-layout, .contact-grid { gap: 48px; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .priority-grid { grid-template-columns: repeat(2, 1fr); }
  .priority-card, .priority-card:nth-child(4), .priority-card:nth-child(5) { grid-column: auto; }
  .priority-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 54px 0; gap: 36px; }
  .hero-copy { text-align: left; }
  .hero-portrait { position: static; right: auto; bottom: auto; width: 100%; max-width: 360px; margin: 24px auto 0; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .value-list { gap: 8px; }
  .value-list li { font-size: 12px; }
  .section { padding-block: 72px; }
  .about-grid, .values-layout, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 42px; }
  .about-photo { order: 2; }
  .signature-row { align-items: flex-start; flex-direction: column; }
  .section-heading { margin-bottom: 34px; }
  .priority-grid { grid-template-columns: 1fr; }
  .priority-card, .priority-card:last-child { grid-column: auto; min-height: 260px; }
  .contact-form { padding: 24px 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .legal-note { grid-column: auto; }
  .section-quote::before, .section-quote::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header { position: static; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero { min-height: 720px; }
  .hero-portrait img { height: 620px; }
}
