:root {
  --blue-950: #0b2f50;
  --blue-900: #12486f;
  --blue-800: #155b91;
  --blue-700: #1d6eae;
  --blue-100: #eaf3fb;
  --teal-800: #09636c;
  --teal-700: #0d7580;
  --teal-100: #e7f6f5;
  --orange-800: #a94f1f;
  --orange-700: #b9531c;
  --orange-100: #fff0e5;
  --ink: #17253b;
  --muted: #667386;
  --line: #dfe8f0;
  --paper: #ffffff;
  --soft: #f5f9fc;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --shadow-xl: 0 24px 60px rgba(11, 47, 80, .14);
  --shadow-lg: 0 16px 42px rgba(11, 47, 80, .10);
  --shadow-md: 0 10px 26px rgba(11, 47, 80, .08);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--orange-700); color: #fff; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-950);
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.announcement {
  position: relative;
  z-index: 80;
  color: #fff;
  background: linear-gradient(90deg, var(--orange-800), var(--orange-700));
}
.announcement__inner {
  width: min(calc(100% - 40px), var(--container));
  min-height: 40px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255,255,255,.90);
  border-bottom: 1px solid rgba(221,232,241,.85);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(11,47,80,.07); background: rgba(255,255,255,.96); }
.nav-wrap {
  width: min(calc(100% - 40px), var(--container));
  min-height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.main-nav a {
  position: relative;
  color: #516176;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s ease;
}
.main-nav a span { color: #8793a2; font-size: 11px; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  border-radius: 99px;
  background: var(--orange-700);
  transition: right .2s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--blue-800); }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 16%, rgba(13,117,128,.76), transparent 36%),
    radial-gradient(circle at 10% 92%, rgba(199,100,39,.34), transparent 36%),
    linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 54%, var(--blue-950) 100%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: -1; }
.hero__glow--one { width: 480px; height: 480px; top: -240px; right: 8%; background: rgba(255,255,255,.18); }
.hero__glow--two { width: 380px; height: 380px; left: -190px; bottom: -190px; background: rgba(199,100,39,.30); }
.hero__grid {
  min-height: 720px;
  padding-block: 82px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: 68px;
}
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-700); box-shadow: 0 0 0 5px rgba(199,100,39,.22); }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 5.7vw, 76px);
  line-height: 1.01;
  letter-spacing: -.055em;
  font-weight: 900;
  text-wrap: balance;
}
.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.90);
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 500;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--orange { color: #fff; background: var(--orange-700); box-shadow: 0 16px 34px rgba(82,31,8,.26); }
.button--orange:hover { background: var(--orange-800); box-shadow: 0 20px 42px rgba(82,31,8,.30); }
.button--glass { color: #fff; background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.28); backdrop-filter: blur(12px); }
.button--glass:hover { background: rgba(255,255,255,.17); }
.button--blue { color: #fff; background: var(--blue-800); box-shadow: 0 12px 28px rgba(23,102,166,.23); }
.button--blue:hover { background: var(--blue-900); }
.button--white { color: var(--blue-900); background: #fff; box-shadow: 0 14px 30px rgba(16,59,98,.16); }
.button--outline-white { color: #fff; border-color: rgba(255,255,255,.50); background: transparent; }
.button--outline-white:hover { background: rgba(255,255,255,.12); }
.button--deep-blue { color: #fff; background: var(--blue-950); border-color: rgba(255,255,255,.18); box-shadow: 0 14px 32px rgba(11,47,80,.28); }
.button--deep-blue:hover { background: #082944; box-shadow: 0 18px 38px rgba(11,47,80,.34); }
.hero__facts {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.hero-fact {
  position: relative;
  min-height: 104px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  text-align: center;
}
.hero-fact::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -44px;
  bottom: -52px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.hero-fact--blue { background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(13,64,103,.24)); }
.hero-fact--orange { background: linear-gradient(145deg, rgba(199,100,39,.42), rgba(91,40,11,.20)); }
.hero-fact--teal { background: linear-gradient(145deg, rgba(13,117,128,.48), rgba(5,58,64,.22)); }
.hero-fact__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  display: grid;
  place-items: center;
}
.hero-fact strong { display: block; color: #fff; font-size: clamp(14px, 1.15vw, 17px); line-height: 1.12; font-weight: 900; text-wrap: balance; }
.hero-fact span { display: block; margin-top: 5px; color: rgba(255,255,255,.90); font-size: clamp(10px, .86vw, 12px); font-weight: 600; line-height: 1.25; text-wrap: balance; }
.hero-fact__place {
  display: inline-block;
  margin: 0 2px;
  padding: 2px 7px 3px;
  border-radius: 999px;
  color: #083c63;
  background: linear-gradient(135deg, #ffffff 0%, #dff7f7 100%);
  box-shadow: 0 4px 12px rgba(3, 29, 48, .16);
  font-weight: 900;
  white-space: nowrap;
}


.hero-fact__copy--location {
  gap: 4px;
  text-align: center;
}
.hero-fact__kicker {
  margin: 0 !important;
  color: rgba(255,255,255,.88) !important;
  font-size: clamp(10px, .82vw, 12px) !important;
  line-height: 1.1 !important;
  font-weight: 600 !important;
  white-space: nowrap;
}
.hero-fact__location {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(15px, 1.22vw, 18px) !important;
  line-height: 1.05 !important;
  font-weight: 500 !important;
  white-space: nowrap;
}
.hero-fact__location b {
  font-weight: 900;
}

.hero__visual { position: relative; }
.hero-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
  transform: rotate(1.2deg);
}
.hero-card img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; object-position: center 68%; transform: scale(1.13); }
.hero-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,59,98,.03) 45%, rgba(16,59,98,.52) 100%); }
.hero-card__tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 16px;
  color: #fff;
  background: rgba(16,59,98,.74);
  box-shadow: 0 20px 44px rgba(16,59,98,.26);
  backdrop-filter: blur(16px);
}
.hero-card__tag--top { top: 24px; left: 22px; }
.hero-card__tag--bottom { right: 22px; bottom: 24px; }
.hero-card__tag strong, .hero-card__tag small { display: block; }
.hero-card__tag strong { font-size: 15px; font-weight: 900; }
.hero-card__tag small { color: rgba(255,255,255,.82); font-size: 11px; font-weight: 600; }
.tag-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: var(--teal-700); font-weight: 900; }
.tag-icon--orange { background: var(--orange-700); }

.trust-strip {
  position: relative;
  z-index: 4;
  padding-bottom: 28px;
  background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  transform: translateY(-30px);
  margin-bottom: -30px;
}
.trust-card {
  position: relative;
  min-height: 96px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.trust-card::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: -42px;
  bottom: -52px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
  pointer-events: none;
}
.trust-card--blue { background: linear-gradient(145deg, #e5f1fb, #d8eafb); border-color: rgba(21,91,145,.22); }
.trust-card--teal { background: linear-gradient(145deg, #e4f5f4, #d2ecec); border-color: rgba(9,99,108,.22); }
.trust-card--orange { background: linear-gradient(145deg, #fff0e5, #f8dfce); border-color: rgba(169,79,31,.22); }
.trust-card__icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
}
.trust-card__icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-card--blue .trust-card__icon {
  position: relative;
  z-index: 1; background: linear-gradient(145deg, var(--blue-700), var(--blue-900)); }
.trust-card--teal .trust-card__icon {
  position: relative;
  z-index: 1; background: linear-gradient(145deg, var(--teal-700), var(--teal-800)); }
.trust-card--orange .trust-card__icon {
  position: relative;
  z-index: 1; background: linear-gradient(145deg, var(--orange-700), var(--orange-800)); }
.trust-card strong { position: relative; z-index: 1; color: #30445d; font-size: 14px; font-weight: 800; line-height: 1.25; }

.section { padding-block: 104px; }
.section--programs { background: linear-gradient(180deg, #fff, #f4f9fd); }
.section-heading { margin-bottom: 38px; display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted); font-size: 17px; font-weight: 500; }
.section-kicker { color: var(--orange-700); }
.section-kicker--light { color: rgba(255,255,255,.82); }
h2 {
  margin: 0;
  color: var(--blue-800);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 900;
  text-wrap: balance;
}
.program-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
.program-card {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .24s ease, box-shadow .24s ease;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(11,47,80,.12); }
.program-card__image { position: relative; height: 380px; overflow: hidden; background: #eaf3f8; }
.program-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 72%, rgba(11,47,80,.16)); pointer-events: none; }
.program-card__photo { width: 100%; height: 100%; object-fit: cover; transition: none; }
.program-card__photo--listicky { object-position: center center; transform: none; }
.program-card__photo--sport { object-position: center center; transform: none; }
.program-card__body {
  min-height: 178px;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 214px;
  align-items: end;
  gap: 20px;
  padding: 26px 28px 28px;
}
.program-card__label { margin: 0 0 8px; color: var(--orange-700) !important; font-size: 11px !important; font-weight: 800 !important; letter-spacing: .12em; text-transform: uppercase; }
.program-card h3 { margin: 0; color: var(--blue-800); font-size: 29px; line-height: 1.04; letter-spacing: -.035em; font-weight: 900; white-space: nowrap; }
.program-card__body p { margin: 7px 0 0; color: var(--muted); font-size: 15px; font-weight: 600; }
.program-card__body .button { width: 214px; flex: 0 0 auto; padding-inline: 14px; font-size: 14px; white-space: nowrap; }

.section--community {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 0%, rgba(16,131,141,.62), transparent 30%),
    radial-gradient(circle at 6% 100%, rgba(199,100,39,.30), transparent 33%),
    linear-gradient(135deg, var(--blue-800), var(--blue-950));
}
.section-heading--light h2 { color: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.feature-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: 0 16px 38px rgba(11,47,80,.15);
  isolation: isolate;
}
.feature-card::before { content: ""; position: absolute; z-index: -1; width: 250px; height: 250px; top: -120px; right: -100px; border-radius: 50%; background: rgba(255,255,255,.14); }
.feature-card--blue { background: linear-gradient(145deg, #1c6cab, #10456d); }
.feature-card--orange { background: linear-gradient(145deg, #b9531c, #8e3814); }
.feature-card--teal { background: linear-gradient(145deg, #0f7881, #064e56); }
.feature-card__index { position: absolute; top: 24px; right: 25px; color: rgba(255,255,255,.56); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.feature-card__icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 54px; border: 1px solid rgba(255,255,255,.24); border-radius: 16px; background: rgba(255,255,255,.14); }
.feature-card__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin: 0; font-size: 26px; line-height: 1.08; letter-spacing: -.035em; font-weight: 900; }
.feature-card p { margin: 14px 0 28px; color: rgba(255,255,255,.90); font-size: 15px; font-weight: 500; }
.feature-card a { width: fit-content; margin-top: auto; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.42); font-size: 14px; font-weight: 900; }

.section--thanks { background: #fff; }
.thanks-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 50px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f9fcff, #edf7fb);
  box-shadow: var(--shadow-lg);
}
.thanks-panel__logos { display: block; }
.supporter {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.supporter--modra-logo { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.supporter--modra-logo:hover { transform: translateY(-2px); border-color: rgba(21,91,145,.26); box-shadow: 0 14px 32px rgba(11,47,80,.11); }
.supporter--modra-logo:focus-visible { outline: 3px solid var(--orange-700); outline-offset: 4px; }
.supporter--modra-logo img { width: min(480px, 100%); height: auto; }

.cta-band { padding-block: 84px; color: #fff; background: linear-gradient(100deg, var(--orange-800), var(--orange-700)); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 720px; color: #fff; font-size: clamp(34px, 4vw, 52px); }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 86% 0%, rgba(16,131,141,.30), transparent 28%),
    linear-gradient(135deg, #154f7a, #0d3457);
}
.footer-grid { padding-block: 68px 46px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 52px; }
.footer-brand img {
  display: block;
  width: 225px;
  height: auto !important;
  max-height: 72px;
  aspect-ratio: 419 / 132;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.16));
}
.footer-brand p { margin: 22px 0 0; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column h3 { margin: 0 0 10px; color: #fff; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.84); font-size: 14px; font-weight: 700; transition: color .18s ease; }
.footer-column a:hover { color: #fff; }
.social-links { display: flex; gap: 11px; margin-top: 12px; }
.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(1,28,51,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.social-link svg {
  display: block;
  width: 21px;
  height: 21px;
  overflow: hidden;
}
.social-link--facebook { background: #1877f2; }
.social-link--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0 8%, #fd5949 42%, #d6249f 62%, #285aeb 92%);
}
.social-link:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 30px rgba(1,28,51,.30);
  filter: saturate(1.08);
}
.footer-bottom { min-height: 70px; display: flex; align-items: center; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 13px; }
  .hero__grid { gap: 42px; grid-template-columns: 1fr .86fr; }
  .hero-card, .hero-card img { min-height: 540px; }
  .program-card__body { grid-template-columns: minmax(0, 1fr) 198px; gap: 16px; }
  .program-card__body .button { width: 198px; font-size: 13px; }
  .program-card h3 { font-size: 27px; }
}

@media (max-width: 920px) {
  .nav-wrap { min-height: 72px; flex-wrap: wrap; padding-block: 10px; }
  .brand img { width: 190px; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--blue-800);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
  }
  .menu-toggle__icon { width: 18px; display: grid; gap: 3px; }
  .menu-toggle__icon i { height: 2px; border-radius: 99px; background: currentColor; }
  .main-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    transition: max-height .28s ease, padding .28s ease;
  }
  .main-nav.is-open { max-height: 560px; padding-block: 8px 12px; }
  .main-nav a { padding: 11px 12px; border-radius: 10px; background: var(--soft); }
  .main-nav a::after { display: none; }
  .hero__grid { min-height: auto; padding-block: 68px 74px; grid-template-columns: 1fr; }
  .hero__content { max-width: 760px; }
  .hero__visual { max-width: 650px; }
  .trust-strip__inner { grid-template-columns: 1fr; gap: 12px; transform: translateY(-22px); margin-bottom: -22px; }
  .trust-card { min-height: 82px; justify-content: flex-start; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .program-grid, .feature-grid { grid-template-columns: 1fr; }
  .program-card { display: grid; grid-template-columns: .95fr 1.05fr; }
  .program-card__image { height: 100%; min-height: 420px; }
  .program-card__body { grid-template-columns: 1fr; align-content: center; align-items: start; }
  .program-card__body .button { width: 100%; }
  .program-card h3 { white-space: normal; }
  .thanks-panel { grid-template-columns: 1fr; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .cta-band__actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container, .nav-wrap, .announcement__inner { width: min(calc(100% - 28px), var(--container)); }
  .announcement__inner { min-height: 52px; justify-content: space-between; text-align: left; font-size: 11px; }
  .announcement__inner span { max-width: 75%; }
  .announcement a { font-size: 11px; }
  .brand img { width: 166px; }
  .main-nav { grid-template-columns: 1fr; }
  .hero__grid { padding-block: 54px 58px; gap: 38px; }
  .hero h1 { font-size: 44px; }
  .hero__lead { font-size: 17px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__facts { grid-template-columns: 1fr; }
  .hero-card, .hero-card img { min-height: 470px; }
  .hero-card { border-radius: 23px; transform: none; }
  .hero-card__tag { max-width: calc(100% - 28px); padding: 11px 12px; }
  .hero-card__tag--top { left: 14px; top: 14px; }
  .hero-card__tag--bottom { right: 14px; bottom: 14px; }
  .section { padding-block: 76px; }
  h2 { font-size: 39px; }
  .program-card { display: block; }
  .program-card__image { height: 390px; min-height: 0; }
  .program-card__body { padding: 22px; }
  .program-card__body .button { width: 100%; }
  .feature-card { min-height: 360px; }
  .thanks-panel { padding: 24px; }
  .supporter { min-height: 132px; }
  .cta-band { padding-block: 66px; }
  .cta-band__actions { width: 100%; flex-direction: column; }
  .cta-band__actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
}

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

.program-card__number { display: none !important; }

.feature-card__index { display: none !important; }


/* =========================================================
   MODRÁ LÍŠKA — moderná hlavička a pätička v4
   ========================================================= */
.announcement {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 0%, rgba(66,205,209,.24), transparent 32%),
    linear-gradient(90deg, #0a3558 0%, #104d78 58%, #0a6470 100%);
}
.announcement__inner {
  width: min(calc(100% - 32px), 1280px);
  min-height: 36px;
  justify-content: space-between;
  gap: 24px;
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: -.01em;
}
.announcement__message { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.86); }
.announcement__message i { width: 7px; height: 7px; border-radius: 50%; background: #ff934b; box-shadow: 0 0 0 5px rgba(255,147,75,.15); }
.announcement a {
  gap: 7px;
  padding: 5px 10px 5px 12px;
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.09);
  font-size: 10.5px;
  font-weight: 800;
  transition: background .18s ease, transform .18s ease;
}
.announcement a:hover { background: rgba(255,255,255,.16); transform: translateX(2px); }
.announcement a svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  top: 0;
  padding: 10px 0;
  border: 0;
  background: rgba(236,245,250,.72);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  transition: padding .2s ease, background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { padding: 7px 0; background: rgba(236,245,250,.88); box-shadow: 0 14px 34px rgba(11,47,80,.08); }
.nav-wrap {
  width: min(calc(100% - 32px), 1280px);
  min-height: 66px;
  padding: 7px 9px 7px 15px;
  gap: 20px;
  border: 1px solid rgba(147,177,198,.35);
  border-radius: 21px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 42px rgba(11,47,80,.09), inset 0 1px 0 rgba(255,255,255,.95);
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand__logo {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px 4px 0;
  border-radius: 14px;
  transition: transform .2s ease, filter .2s ease;
}
.brand:hover .brand__logo { transform: translateY(-1px); filter: saturate(1.08); }
.brand img { width: 186px; max-height: 52px; object-fit: contain; object-position: left center; }

.main-nav {
  position: relative;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(166,189,205,.25);
  border-radius: 16px;
  background: rgba(238,245,249,.78);
  font-family: "Manrope", sans-serif;
}
.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 10px;
  overflow: hidden;
  border-radius: 12px;
  color: #496075;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -.018em;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.main-nav a span:not(.nav-label) { color: #8798a8; font-size: 9.5px; font-weight: 750; }
.main-nav a::after { display: none; }
.main-nav a:hover { color: #155b91; background: rgba(255,255,255,.72); transform: translateY(-1px); }
.main-nav a.is-active { color: #155b91; background: #fff; box-shadow: 0 7px 18px rgba(11,47,80,.09), inset 0 0 0 1px rgba(21,91,145,.07); }

.main-nav a.nav-community {
  color: #086a73;
  border: 1px solid rgba(15, 125, 135, .34);
  background: rgba(236, 250, 249, .74);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.62);
}
.main-nav a.nav-community::before { display: none; }
.main-nav a.nav-community::after { display: none; }
.main-nav a.nav-community:hover {
  color: #075c64;
  border-color: rgba(15,125,135,.52);
  background: rgba(231,248,247,.95);
  box-shadow: 0 7px 18px rgba(10,120,128,.08), inset 0 0 0 1px rgba(255,255,255,.72);
}
.main-nav a.nav-community.is-active {
  color: #075c64;
  border-color: rgba(15,125,135,.58);
  background: #f2fbfa;
  box-shadow: 0 7px 18px rgba(10,120,128,.08), inset 0 0 0 1px rgba(255,255,255,.85);
}

.menu-toggle {
  min-height: 43px;
  padding: 9px 13px;
  border: 1px solid rgba(21,91,145,.13);
  border-radius: 13px;
  color: #155b91;
  background: #fff;
  box-shadow: 0 7px 18px rgba(11,47,80,.08);
  font-family: "Manrope", sans-serif;
}
.menu-toggle__icon i { background: currentColor; }

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(40,196,201,.20), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(198,84,28,.20), transparent 30%),
    linear-gradient(145deg, #092a48 0%, #0e3f65 52%, #07545f 100%);
  font-family: "Manrope", sans-serif;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 78%, transparent);
}
.footer-web-cta {
  position: relative;
  z-index: 1;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 11px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.58);
}
.footer-web-cta__copy { min-width: 0; }
.footer-web-cta__eyebrow,
.footer-web-cta p { display: none; }
.footer-web-cta h2 {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 11.5px;
  line-height: 1.35;
  letter-spacing: -.01em;
  font-weight: 650;
}
.footer-web-cta__button {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  color: rgba(255,255,255,.74);
  background: transparent;
  box-shadow: none;
  font-size: 11.5px;
  font-weight: 750;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}
.footer-web-cta__button:hover {
  color: #fff;
  transform: translateX(2px);
  box-shadow: none;
}
.footer-web-cta__button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-grid {
  position: relative;
  z-index: 1;
  padding-block: 46px 42px;
  grid-template-columns: 1.35fr .78fr .72fr .9fr;
  gap: 48px;
}
.footer-brand__logo { display: inline-flex; padding: 8px 11px 8px 0; }
.footer-brand img { width: 212px; max-height: 66px; }
.footer-brand p { max-width: 430px; margin: 19px 0 0; color: rgba(255,255,255,.79); font-size: 14px; line-height: 1.62; font-weight: 550; }
.footer-address { margin-top: 17px; color: rgba(255,255,255,.51); font-size: 12px; line-height: 1.65; }
.footer-column { gap: 10px; }
.footer-column h3 {
  margin: 0 0 12px;
  color: #71d8da;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}
.footer-column a,
.footer-link-pending {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.45;
  transition: color .18s ease, transform .18s ease;
}
.footer-column a span { color: rgba(255,255,255,.42); font-size: 10px; }
.footer-column a:hover { color: #fff; transform: translateX(3px); }
.footer-community-link { color: #88ebea !important; }
.footer-link-pending { cursor: default; }
.footer-link-pending small { padding: 3px 6px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.43); font-size: 8px; font-style: normal; text-transform: uppercase; letter-spacing: .08em; }
.social-links { margin-top: 15px; }
.social-link { width: 39px; height: 39px; border-radius: 12px; }
.social-link svg { width: 19px; height: 19px; }
.footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 68px;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.43);
  font-size: 11.5px;
}
.footer-bottom__meta { display: inline-flex; align-items: center; gap: 10px; }
.footer-bottom__meta a { color: rgba(255,255,255,.65); font-weight: 700; transition: color .18s ease; }
.footer-bottom__meta a:hover { color:#fff; }

@media (max-width: 1180px) {
  .nav-wrap { gap: 12px; }
  .brand img { width: 168px; }
  .main-nav a { padding-inline: 8px; font-size: 11px; }
}
@media (max-width: 1080px) {
  .nav-wrap { min-height: 64px; flex-wrap: wrap; padding: 7px 8px 7px 13px; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 10px; }
  .main-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    transition: max-height .3s ease, padding .3s ease;
  }
  .main-nav.is-open { max-height: 680px; padding-block: 8px 4px; }
  .main-nav a { min-height: 47px; justify-content: flex-start; padding: 11px 13px; border: 1px solid rgba(166,189,205,.24); background: rgba(243,248,251,.92); }
  .main-nav a.is-active { background:#fff; }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .footer-column--contact { grid-column: 2 / -1; }
}
@media (max-width: 760px) {
  .announcement__inner { min-height: 42px; }
  .announcement__message { max-width: 70%; font-size: 10px; line-height: 1.35; }
  .announcement a span { display:none; }
  .announcement a { width: 34px; height: 30px; padding: 0; justify-content:center; }
  .site-header { padding: 7px 0; }
  .nav-wrap { width: min(calc(100% - 22px),1280px); border-radius: 18px; }
  .brand img { width: 157px; }
  .footer-web-cta { min-height: 50px; flex-direction: row; gap: 14px; padding-block: 10px; }
  .footer-web-cta__button { width: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column--contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content:center; padding-block: 18px; }
}
@media (max-width: 520px) {
  .main-nav { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column:auto; }
  .footer-web-cta { align-items: flex-start; flex-direction: column; gap: 2px; padding-block: 10px 12px; }
  .footer-web-cta h2 { font-size: 11px; }
  .footer-bottom__meta { flex-wrap: wrap; }
}


/* Footer contact refinement v3 */
.footer-whatsapp {
  white-space: nowrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}

.social-link svg {
  display: block;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  margin: 0;
  overflow: visible;
}

.social-link--facebook svg {
  width: 25.5px;
  height: 25.5px;
  flex-basis: 25.5px;
}

.social-link--instagram svg {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

@media (max-width: 520px) {
  .footer-whatsapp {
    white-space: normal;
  }
}

/* Footer social icons refinement v4: standalone brand-colour icons */
.social-links {
  align-items: center;
  gap: 13px;
  margin-top: 13px;
}

.social-link,
.social-link--facebook,
.social-link--instagram {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  box-shadow: none;
  line-height: 0;
  isolation: isolate;
  transition:
    transform .18s ease,
    filter .18s ease,
    opacity .18s ease;
}

.social-link--facebook {
  color: #2f8cf4;
}

.social-link--facebook svg {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  filter: drop-shadow(0 5px 10px rgba(24, 119, 242, .22));
}

.social-link--instagram {
  color: transparent;
}

.social-link--instagram svg {
  position: absolute;
  width: 31px;
  height: 31px;
  opacity: 0;
  pointer-events: none;
}

.social-link--instagram::before {
  content: "";
  width: 31px;
  height: 31px;
  display: block;
  background:
    radial-gradient(circle at 30% 107%, #ffd36b 0 18%, #ff6b45 40%, #d93691 63%, #7557e8 82%, #3978f6 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.7 1.5a1.35 1.35 0 1 1 0 2.7 1.35 1.35 0 0 1 0-2.7ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.7 1.5a1.35 1.35 0 1 1 0 2.7 1.35 1.35 0 0 1 0-2.7ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 5px 10px rgba(217, 54, 145, .20));
}

.social-link:hover {
  transform: translateY(-2px) scale(1.09);
  box-shadow: none;
  filter: saturate(1.12) brightness(1.06);
}

.social-link:active {
  transform: translateY(0) scale(.98);
}

.social-link:focus-visible {
  outline: 2px solid rgba(116, 229, 232, .95);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .social-link {
    transition: none;
  }
}
