:root {
  --bg: #f3f8f9;
  --surface: #fcfefe;
  --surface-strong: #e3f1f4;
  --surface-dark: #151515;
  --text: #171717;
  --text-soft: #4d585b;
  --line: rgba(23, 23, 23, 0.1);
  --primary: #0097b2;
  --primary-deep: #007f96;
  --accent: #2a2a2a;
  --success: #235f5a;
  --shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 10px 28px rgba(17, 17, 17, 0.05);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  hyphens: none;
  -webkit-hyphens: none;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(0, 151, 178, 0.16), transparent 30%),
    linear-gradient(180deg, #f9fdfe 0%, var(--bg) 30%, #f4f9fa 100%);
  line-height: 1.6;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(249, 253, 254, 0.88);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 196px;
  height: 58px;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__panel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav__links a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 600;
  transition: 180ms ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__links a.is-active {
  color: var(--text);
  background: rgba(0, 151, 178, 0.12);
}

.site-nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav__parent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav__parent::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.65;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 245px;
  display: grid;
  gap: 0.18rem;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: 180ms ease;
  z-index: 60;
}

.site-nav__dropdown:hover .site-nav__submenu,
.site-nav__dropdown:focus-within .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__submenu a {
  display: block;
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 16px;
  white-space: nowrap;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 151, 178, 0.2);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--primary-deep);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(23, 23, 23, 0.12);
}

.btn--dark {
  background: var(--surface-dark);
  color: #fff;
}

.btn--ghost {
  border-color: rgba(23, 23, 23, 0.14);
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 23, 23, 0.06);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  padding: 3.75rem 0 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2.2rem;
  align-items: stretch;
}

.hero__content,
.hero__visual {
  position: relative;
}

.hero__content {
  padding: clamp(2.4rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 151, 178, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(0, 151, 178, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__content h1,
.page-hero h1,
.section-heading h2,
.cta-panel h2 {
  font-family: "Inter", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: none;
  font-weight: 800;
}

.content-section h2,
.content-section h3,
.contact-card h2 {
  font-family: "Inter", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: none;
  font-weight: 700;
}

.content-section h2,
.contact-card h2 {
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.hero__content h1 {
  font-size: clamp(3.1rem, 5.4vw, 5.5rem);
  max-width: 11ch;
  font-weight: 800;
}

.page-hero h1 {
  letter-spacing: -0.005em;
}

.hero__lead {
  font-size: clamp(1.12rem, 1.35vw, 1.28rem);
  line-height: 1.48;
  color: var(--text);
  max-width: 35rem;
  margin: 1.35rem 0 0;
  font-weight: 700;
  letter-spacing: -0.012em;
  text-align: justify;
  text-align-last: left;
}

.hero__support {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.68;
  max-width: 39rem;
  margin-top: 1rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(0, 151, 178, 0.15);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(0, 151, 178, 0.08), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft);
  text-align: justify;
  text-align-last: left;
}

.hero__points {
  display: grid;
  gap: 0.7rem;
  margin: 1.55rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 38rem;
}

.hero__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--text);
  font-weight: 700;
  line-height: 1.42;
}

.hero__points li::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  margin-top: 0.47rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(0, 151, 178, 0.1);
}

.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.55rem;
  max-width: 39rem;
}

.home-stat-grid .metric-card--support-grants {
  min-height: 128px;
  padding: 1.05rem 0.8rem;
}

.hero__stats-note {
  margin: 0.95rem 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: right;
}

.hero__stats-note span {
  color: var(--primary);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.85rem;
}

.hero__actions .btn--primary {
  min-width: 190px;
  box-shadow: 0 16px 32px rgba(0, 151, 178, 0.24);
}

.hero__actions .btn--secondary {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(0, 151, 178, 0.22);
  color: var(--text);
}

.hero__visual {
  height: auto;
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16)),
    linear-gradient(135deg, rgba(0, 151, 178, 0.14), transparent 46%);
  pointer-events: none;
}

.metrics-band {
  padding: 0.5rem 0 1.5rem;
}

.metrics-band__box {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-lg);
}

.metrics-band__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.metrics-grid,
.card-grid,
.icon-grid,
.logo-grid,
.news-grid,
.contact-grid,
.program-grid,
.engage-grid,
.faq-grid {
  display: grid;
  gap: 1.15rem;
}

.faq-grid {
  grid-template-columns: minmax(0, 1fr);
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metrics-grid--support {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metrics-grid--support-grants {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.metric-card,
.card,
.icon-card,
.news-card,
.faq-item,
.program-card,
.contact-card,
.contact-person,
.logo-card,
.quote-card,
.step-card,
.mini-panel {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 1.4rem;
}

.metric-card strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Inter", sans-serif;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.metric-card span {
  display: block;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.support-grant-metrics {
  display: grid;
  align-content: stretch;
}

.support-grant-metrics .metrics-grid--support-grants {
  height: 100%;
}

.metric-card--support-grants {
  display: grid;
  min-height: 148px;
  padding: 1.35rem 1.2rem;
  text-align: center;
  justify-items: center;
  align-content: center;
  gap: 0.55rem;
  background: linear-gradient(180deg, rgba(231, 246, 249, 0.76), rgba(255, 255, 255, 0.9));
  border-color: rgba(0, 151, 178, 0.12);
  box-shadow: 0 14px 28px rgba(0, 58, 70, 0.06);
}

.metric-card--support-grants .metric-card__prefix {
  max-width: 18ch;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.35;
  font-size: 0.95rem;
}

.metric-card--support-grants strong {
  margin-bottom: 0;
  color: var(--primary-deep);
  font-size: clamp(1.6rem, 2.1vw, 2.15rem);
}

.metric-card--support-grants span {
  max-width: 18ch;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.35;
}

.metric-card--support-grants-wide {
  grid-column: 1 / -1;
}

.section {
  padding: 2.4rem 0;
}

.section--spacious {
  padding: 4.5rem 0;
}

.section--contact-meta {
  padding-top: 1.1rem;
  padding-bottom: 1rem;
}

.section--contact-grid-main {
  padding-top: 1.6rem;
}

.section--contact-accounts {
  padding-top: 1.2rem;
  padding-bottom: 4.5rem;
}

.section--surface {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(23, 23, 23, 0.06);
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
}

.section--section-menu {
  padding: 0.1rem 0 0.8rem;
}

.section-menu {
  position: relative;
  display: block;
  padding: 0.82rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 23, 23, 0.1);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.section-menu__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  overflow-x: auto;
  width: 100%;
  padding-inline: 3.2rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.section-menu.has-overflow .section-menu__track {
  justify-content: flex-start;
}

.section-menu__track::-webkit-scrollbar {
  display: none;
}

.section-menu__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  flex: 0 0 2.35rem;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 151, 178, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 246, 249, 0.96));
  color: var(--primary-deep);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  cursor: pointer;
  touch-action: manipulation;
}

.section-menu.has-overflow .section-menu__arrow {
  display: inline-flex;
}

.section-menu__arrow--prev {
  left: 0.8rem;
}

.section-menu__arrow--next {
  right: 0.8rem;
}

.section-menu__arrow.is-disabled {
  opacity: 0.34;
  pointer-events: none;
}

.section-menu.is-fixed {
  position: fixed;
  top: var(--section-menu-top, calc(90px + 1rem));
  left: var(--section-menu-left, 1rem);
  width: var(--section-menu-width, auto);
  z-index: 25;
}

.section-menu a {
  flex: 0 0 auto;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-soft);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.section-menu a:hover {
  background: rgba(0, 151, 178, 0.14);
  color: var(--text);
  border-color: rgba(0, 151, 178, 0.22);
}

.section-menu a.is-active,
.section-menu a[aria-current="true"] {
  background: rgba(0, 151, 178, 0.18);
  color: var(--text);
  border-color: rgba(0, 151, 178, 0.28);
  box-shadow:
    0 8px 18px rgba(0, 151, 178, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

#individualni-darci,
#firmy-a-spolecnosti,
#nadace-a-grantove-subjekty,
#jiny-zpusob-podpory,
#kazdy-typ-podpory,
#kontakt-podpora,
#firemni-dar,
#partnerska-spoluprace,
#nefinancni-spoluprace,
#spoluprace-na-miru,
#kontakt-firmy {
  scroll-margin-top: 190px;
}

html {
  scroll-padding-top: 190px;
}

.section-menu--support {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 246, 249, 0.95));
  border-color: rgba(0, 151, 178, 0.22);
  box-shadow:
    0 18px 42px rgba(17, 17, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.section-menu--support a {
  color: var(--text);
  min-width: 190px;
  text-align: center;
}

.section-menu--support a:hover {
  background: rgba(0, 151, 178, 0.18);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 2rem;
  min-width: 0;
}

.section-heading > *,
.section-heading__aside,
.section-heading__intro,
.hero__content,
.panel,
.card,
.icon-card,
.program-card,
.cta-panel,
.content-section,
.contact-card {
  min-width: 0;
}

.section-heading p,
.content-section p,
.card p,
.icon-card p,
.program-card p,
.quote-card p,
.news-card p,
.contact-card p,
.contact-person p,
.page-hero p,
.hero__lead,
.hero__support {
  overflow-wrap: normal;
  hyphens: none;
}

.section-heading--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 2rem;
  gap: 0.9rem;
}

.section-heading--artists h2 {
  font-size: clamp(1.65rem, 1.9vw, 2rem);
}

.section-heading--support {
  grid-template-columns: 1fr;
}

.section-heading--support h2 {
  max-width: 100%;
  text-wrap: balance;
}

.section-heading__body {
  display: grid;
  gap: 0.9rem;
}

.section-heading__body .eyebrow {
  width: fit-content;
}

.section-heading__intro {
  max-width: 980px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.section-heading h2 {
  font-size: clamp(1.75rem, 2.35vw, 2.65rem);
}

.cta-panel h2 {
  font-size: clamp(1.75rem, 2.25vw, 2.55rem);
}

.section-heading .eyebrow {
  margin-bottom: 1rem;
}

.section-heading p,
.content-section p,
.card p,
.icon-card p,
.program-card p,
.quote-card p,
.news-card p,
.contact-card p,
.contact-person p,
.page-hero p {
  margin: 0;
  color: var(--text-soft);
}

.section-heading__aside {
  font-size: 1rem;
  width: 100%;
  max-width: none;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(0, 151, 178, 0.15);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(0, 151, 178, 0.08), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.split--equal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split--align-stretch {
  align-items: stretch;
}

.split--align-stretch > .panel,
.split--align-stretch > .image-card,
.split--align-stretch > .support-grant-metrics {
  height: 100%;
}

.split--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.panel {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.panel--full {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.panel--full .eyebrow {
  align-self: flex-start;
  margin-bottom: 1rem;
}

.panel > .eyebrow,
.content-section > .eyebrow,
.mini-panel > .eyebrow {
  margin-bottom: 1rem;
}

.panel--narrow {
  max-width: 940px;
  margin: 0 auto;
}

.support-hero-copy {
  max-width: 860px;
  margin: 0 auto;
}

.support-hero-copy__emphasis {
  font-weight: 700;
  color: var(--text);
}

.section--support-message {
  padding-top: 2rem;
  padding-bottom: 2.2rem;
}

.support-message-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("../images/content/support-radost-v-domove-senioru-kultura-bliz-lidem.png") center/cover;
}

.support-message-photo__overlay {
  min-height: 340px;
  padding: 2.4rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.76));
}

.support-message-photo__overlay p {
  margin: 0;
  max-width: 860px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(23, 23, 23, 0.78);
}

.support-message-photo__overlay p:last-child {
  color: var(--text);
}

.artist-contact-card {
  width: 100%;
  max-width: none;
  min-width: 0;
  align-self: start;
}

.artist-contact-card p:first-child {
  margin-bottom: 0.45rem;
}

.artist-contact-card h3 {
  margin-bottom: 0.6rem;
}

.artist-contact-card .contact-person__meta-line + .contact-person__meta-line,
.support-contact-card .contact-person__meta-line + .contact-person__meta-line {
  margin-top: 0.12rem;
}

.artist-contact-card strong,
.support-contact-card strong {
  margin-top: 0.9rem;
}

.artist-cta-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.9fr);
  align-items: start;
}

.artist-cta-actions .btn {
  width: auto;
}

.artist-cta-note {
  margin: 0.65rem 0 0;
  text-align: left;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-soft);
}

.support-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.support-cta-copy {
  display: grid;
  gap: 1rem;
}

.support-cta-copy > .eyebrow {
  justify-self: start;
}

.support-contact-card {
  width: 100%;
  min-width: 0;
  align-self: start;
}

.support-contact-column {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding-top: 3.5rem;
}

.support-contact-column .cta-panel__actions {
  justify-content: stretch;
}

.support-contact-column .cta-panel__actions .btn {
  width: 100%;
}

.support-contact-lines {
  gap: 0.35rem;
}

.support-contact-lines p {
  margin: 0;
  line-height: 1.3;
}

.support-contact-card p:first-child {
  margin-bottom: 0.45rem;
}

.panel--dark {
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.92), rgba(21, 21, 21, 0.96)),
    var(--surface-dark);
  color: #fff;
}

.panel--dark p,
.panel--dark li,
.panel--dark .section-heading__aside {
  color: rgba(255, 255, 255, 0.78);
}

.image-card {
  min-height: 460px;
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-card img {
  display: block;
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--support {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.card-grid--support-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--support-personal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--compact {
  margin-top: 1.5rem;
}

.card,
.icon-card,
.program-card,
.news-card,
.quote-card,
.contact-person,
.contact-card,
.mini-panel {
  padding: 1.55rem;
}

.card h3,
.icon-card h3,
.program-card h3,
.quote-card h3,
.news-card h3,
.contact-person h3,
.contact-card h3,
.step-card h3,
.content-section h3 {
  margin: 0 0 0.65rem;
  font-size: 1.16rem;
  line-height: 1.28;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.card-grid .card p {
  text-align: justify;
  text-align-last: left;
}

.card__tag,
.status,
.program-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.56rem;
  border-radius: 999px;
  background: rgba(0, 151, 178, 0.1);
  color: var(--text);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
}

.card__tag--solid {
  background: var(--primary);
  color: #fff;
}

.card__tag.card__tag--solid {
  background: var(--primary);
  color: #fff;
}

.icon-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-grid--artists .icon-card {
  text-align: center;
  justify-items: center;
}

.icon-grid--artists .card__tag {
  justify-self: center;
}

.icon-grid--support-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-grid--home-proof,
.card-grid--home-routes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card > .btn {
  margin-top: 1.1rem;
}

.icon-card__symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-md);
}

.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card strong,
.contact-person strong {
  display: block;
  margin-top: 0.9rem;
}

.contact-person__role {
  font-weight: 600;
  color: var(--text);
}

.contact-person__meta-line {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.contact-person__role--accent,
.contact-person__name--accent {
  color: var(--primary);
}

.contact-person__scope {
  margin-top: 0.15rem;
}

.logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logo-card {
  min-height: 112px;
  padding: 1.25rem;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 247, 249, 0.9));
}

.logo-card strong {
  font-size: 1.05rem;
}

.logo-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
}

.map-card {
  padding: 1.1rem;
}

.map-card img,
.map-card iframe {
  width: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, #f2fbfd, #dff0f4);
}

.map-card iframe {
  display: block;
  max-width: 100%;
}

.project-section {
  position: relative;
  overflow: hidden;
}

.project-section::before {
  content: "";
  position: absolute;
  inset: auto -8% 8% auto;
  width: min(420px, 42vw);
  height: min(420px, 42vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.13), transparent 68%);
  pointer-events: none;
}

.project-section > .container {
  position: relative;
  z-index: 1;
}

.project-section--process {
  background:
    linear-gradient(135deg, rgba(231, 246, 249, 0.78), rgba(255, 255, 255, 0.94) 48%, rgba(0, 151, 178, 0.08)),
    var(--surface);
}

.project-process-grid {
  counter-reset: project-step;
  gap: 1.15rem;
}

.project-process-grid .card {
  counter-increment: project-step;
  position: relative;
  padding-top: 4.4rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  border-color: rgba(0, 151, 178, 0.14);
  overflow: hidden;
}

.project-process-grid .card::before {
  content: "0" counter(project-step);
  position: absolute;
  top: 1.2rem;
  right: 1.3rem;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(0, 151, 178, 0.11);
}

.project-process-grid .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), rgba(0, 151, 178, 0.1));
}

.project-process-grid .card__tag {
  background: var(--primary);
  color: #fff;
}

.project-section--why {
  background:
    radial-gradient(circle at 12% 24%, rgba(0, 151, 178, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 251, 252, 0.72));
}

.why-section-final {
  display: grid;
  gap: clamp(1.3rem, 3vw, 2rem);
}

.why-core-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
}

.why-core-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  min-height: 100%;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.why-core-card h2 {
  max-width: none;
  margin: 0 0 0.35rem;
  color: inherit;
}

.why-core-card p {
  margin: 0;
  text-align: justify;
  text-align-last: left;
}

.why-core-card--text {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(0, 81, 96, 0.96), rgba(0, 151, 178, 0.84));
  color: #fff;
}

.why-core-card--text .eyebrow {
  width: max-content;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.why-core-card--text p {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.why-core-card--accent {
  position: relative;
  overflow: hidden;
  justify-content: center;
  border: 1px solid rgba(0, 151, 178, 0.2);
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 151, 178, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(231, 246, 249, 0.88));
}

.why-core-card--accent::before {
  content: "!";
  position: absolute;
  top: 1.15rem;
  right: 1.2rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(0, 151, 178, 0.1);
  color: var(--primary);
  font-weight: 900;
  font-size: 1.3rem;
}

.why-core-card--accent::after {
  content: "";
  position: absolute;
  inset: 1.2rem auto 1.2rem 1.2rem;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), rgba(0, 151, 178, 0.18));
}

.why-core-card--accent p {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  font-weight: 700;
}

.why-sources-final {
  gap: clamp(1rem, 2.4vw, 1.5rem);
}

.why-variants {
  display: grid;
  gap: 1.5rem;
}

.why-variant {
  position: relative;
  padding-top: 2rem;
}

.why-variant__label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(0, 151, 178, 0.1);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.study-card--accent {
  background:
    linear-gradient(135deg, rgba(0, 151, 178, 0.12), rgba(231, 246, 249, 0.86));
  border-color: rgba(0, 151, 178, 0.2);
}

.study-quote-grid {
  display: grid;
  gap: 0.9rem;
}

.why-proposal {
  display: grid;
  gap: 1rem;
}

.why-proposal h2 {
  margin: 0;
}

.why-proposal p {
  text-align: justify;
  text-align-last: left;
}

.why-proposal__header,
.why-band__headline,
.why-magazine__intro,
.why-editorial__left {
  display: grid;
  gap: 0.8rem;
}

.why-proposal--compact-split {
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  align-items: start;
}

.why-proposal__main {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 81, 96, 0.93), rgba(0, 151, 178, 0.78)),
    var(--primary-deep);
  box-shadow: var(--shadow-soft);
}

.why-proposal__main .eyebrow,
.why-proposal__main h2,
.why-proposal__main p {
  color: #fff;
}

.why-proposal__main .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

.why-text-stack {
  display: grid;
  gap: 0.9rem;
}

.why-text-stack p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.why-summary-card {
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.why-summary-card p {
  margin: 0;
  color: var(--text);
}

.why-quote-pack {
  align-content: start;
}

.why-proposal--compact-steps {
  gap: 1.05rem;
}

.why-proposal__header {
  max-width: 42rem;
}

.why-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.why-step-card {
  position: relative;
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem 1.1rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 151, 178, 0.15);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.why-step-card__number {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
}

.why-step-card p {
  margin: 0;
}

.why-step-card--accent {
  background:
    linear-gradient(145deg, rgba(0, 151, 178, 0.12), rgba(231, 246, 249, 0.94));
}

.why-quote-strip {
  gap: 0.9rem;
}

.why-quote-strip__head,
.why-editorial__quotes-head {
  display: grid;
  gap: 0.7rem;
}

.why-proposal--compact-magazine {
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr) minmax(340px, 0.8fr);
  grid-template-areas:
    "intro lead quotes"
    "intro support quotes"
    "summary summary quotes";
  align-items: start;
}

.why-magazine__intro {
  grid-area: intro;
  align-content: start;
  padding: 1.35rem;
}

.why-magazine__lead {
  grid-area: lead;
}

.why-magazine__support {
  grid-area: support;
}

.why-magazine__summary {
  grid-area: summary;
}

.why-magazine__quotes {
  grid-area: quotes;
}

.why-proposal--compact-band {
  gap: 1rem;
}

.why-band__headline {
  max-width: 42rem;
}

.why-band__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 1rem;
  align-items: start;
}

.why-band__story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.why-band__story-card {
  align-content: start;
}

.why-band__quotes {
  align-content: start;
}

.why-proposal--compact-editorial {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
}

.why-editorial__left {
  padding: 1.35rem;
}

.why-editorial__right {
  display: grid;
  gap: 0.9rem;
}

.why-editorial__quotes {
  grid-column: 1 / -1;
}

.study-grid {
  display: grid;
  gap: 1rem;
}

.study-card {
  position: relative;
  padding: 1.45rem;
  border: 1px solid rgba(0, 151, 178, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 246, 249, 0.72));
  box-shadow: var(--shadow-soft);
}

.study-card h3,
.study-card p {
  margin: 0;
}

.study-card p {
  margin-top: 0.65rem;
  color: var(--text-soft);
}

.study-card__quote {
  line-height: 1.58;
  text-wrap: pretty;
  font-size: 0.92rem;
  font-style: italic;
}

.study-card__source {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 151, 178, 0.12);
  font-size: 0.86rem;
  line-height: 1.5;
}

.study-card__source a {
  color: var(--primary);
  font-weight: 700;
}

.study-card--quotes {
  display: grid;
  gap: 1.05rem;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(231, 246, 249, 0.86));
}

.study-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.study-quote-item {
  position: relative;
  display: grid;
  gap: 0.7rem;
  padding: 1.05rem 1.1rem 0.95rem 1.35rem;
  border: 1px solid rgba(0, 151, 178, 0.16);
  border-radius: 1.05rem 1.05rem 1.05rem 0.35rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 253, 0.94));
  box-shadow: 0 12px 28px rgba(0, 81, 96, 0.08);
  overflow: visible;
}

.study-quote-item::before {
  content: "“";
  position: absolute;
  top: -0.35rem;
  left: 0.82rem;
  color: rgba(0, 151, 178, 0.14);
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 1;
  pointer-events: none;
}

.study-quote-item::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: -0.55rem;
  width: 1.05rem;
  height: 1.05rem;
  border-left: 1px solid rgba(0, 151, 178, 0.16);
  border-bottom: 1px solid rgba(0, 151, 178, 0.16);
  background: rgba(255, 255, 255, 0.98);
  transform: rotate(-12deg) skewY(-22deg);
  border-bottom-left-radius: 0.28rem;
}

.study-quote-item + .study-quote-item {
  margin-top: 0.18rem;
  margin-left: 1.25rem;
  border-radius: 1.05rem 1.05rem 0.35rem 1.05rem;
}

.study-quote-item + .study-quote-item::after {
  right: 1rem;
  left: auto;
  transform: rotate(12deg) skewY(22deg);
  border-right: 1px solid rgba(0, 151, 178, 0.16);
  border-left: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0.28rem;
}

.study-quote-item .study-card__quote {
  line-height: 1.6;
  text-wrap: pretty;
  text-align: justify;
  text-align-last: left;
}

.study-quote-item .study-card__source {
  margin-top: 0;
  padding-top: 0.65rem;
  font-size: 0.82rem;
}

.study-card__quote strong {
  font-weight: 800;
  font-style: italic;
  color: var(--text);
}

.project-section--map {
  background:
    linear-gradient(180deg, rgba(231, 246, 249, 0.88), rgba(255, 255, 255, 0.96));
}

.project-map-card {
  padding: 0.75rem;
  border: 1px solid rgba(0, 151, 178, 0.15);
  background: rgba(255, 255, 255, 0.82);
}

.place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
}

.place-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.82rem;
  border: 1px solid rgba(0, 151, 178, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.person-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.team-variants {
  display: grid;
  gap: 2.5rem;
}

.team-variants--single {
  gap: 0;
}

.team-variant {
  position: relative;
  padding-top: 2.2rem;
}

.team-variants--single .team-variant {
  padding-top: 0;
}

.team-variant__label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(0, 151, 178, 0.1);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.person-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.35rem;
  border: 1px solid rgba(0, 151, 178, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(231, 246, 249, 0.76));
  box-shadow: var(--shadow-soft);
}

.person-card__photo {
  width: 78px;
  height: 78px;
  border-radius: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 16px 26px rgba(0, 151, 178, 0.18);
}

.person-card__body {
  display: grid;
  gap: 0.7rem;
}

.person-card__body h3,
.person-card__body p {
  margin: 0;
}

.person-card__body p {
  color: var(--text-soft);
  text-align: justify;
  text-align-last: left;
}

.team-note {
  width: 100%;
  max-width: none;
  margin: 1.4rem auto 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 151, 178, 0.14);
  border-radius: var(--radius-md);
  background: rgba(231, 246, 249, 0.58);
  color: var(--text-soft);
  text-align: center;
}

.team-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 1rem;
  align-items: stretch;
}

.team-editorial__lead,
.team-editorial__side {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 151, 178, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.team-editorial__lead {
  border-left: 7px solid var(--primary);
}

.team-editorial__side {
  background:
    linear-gradient(180deg, rgba(231, 246, 249, 0.74), rgba(255, 255, 255, 0.9));
}

.team-editorial span,
.team-split__head span,
.team-timeline__mark,
.team-bands__name span {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.team-editorial p,
.team-split p,
.team-timeline p,
.team-bands p {
  margin: 0;
  color: var(--text-soft);
  text-align: justify;
  text-align-last: left;
}

.team-editorial h3,
.team-split h3,
.team-timeline h3,
.team-bands h3 {
  margin: 0;
}

.team-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(0, 151, 178, 0.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.team-split article {
  display: grid;
  gap: 0.9rem;
  padding: 1.55rem;
}

.team-split article:first-child {
  background:
    linear-gradient(135deg, rgba(0, 151, 178, 0.1), rgba(255, 255, 255, 0.94));
}

.team-split article + article {
  border-left: 1px solid rgba(0, 151, 178, 0.14);
}

.team-split__head {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.team-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 0.2rem 0 0.2rem 2.4rem;
}

.team-timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.15rem;
  bottom: 1.15rem;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0, 151, 178, 0.55), transparent);
}

.team-timeline article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 151, 178, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.team-timeline article > div {
  display: grid;
  gap: 0.7rem;
}

.team-timeline__mark {
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(231, 246, 249, 0.95);
}

.team-timeline__photo {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 151, 178, 0.16);
  box-shadow:
    0 0 0 8px rgba(231, 246, 249, 0.95),
    0 16px 26px rgba(0, 151, 178, 0.14);
}

.team-bands {
  display: grid;
  gap: 1rem;
}

.team-bands article {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 151, 178, 0.16);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.team-bands article:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
}

.team-bands article:nth-child(even) .team-bands__name {
  order: 2;
}

.team-bands__name {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(0, 151, 178, 0.16), rgba(231, 246, 249, 0.82));
}

.team-bands__text {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
}

.reference-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.4rem);
}

.reference-card {
  display: grid;
  align-content: start;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 151, 178, 0.14);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.reference-card h3,
.reference-card p {
  margin: 0;
}

.reference-card p {
  margin-top: 0.65rem;
  color: var(--text-soft);
}

.reference-card a {
  margin-top: 1rem;
  color: var(--primary-deep);
  font-weight: 800;
}

.reference-card--with-image {
  overflow: hidden;
  padding: 0;
  grid-template-rows: auto 1fr;
}

.reference-card__media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 151, 178, 0.12);
  background: var(--surface-soft);
}

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

.reference-card__body {
  display: grid;
  align-content: start;
  padding: clamp(1.1rem, 1.8vw, 1.45rem);
}

.reference-card__body .card__tag {
  justify-self: start;
}

.logo-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.logo-placeholder-grid span {
  min-height: 58px;
  border: 1px solid rgba(0, 151, 178, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(0, 151, 178, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.66);
}

.reference-logo-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.2vw, 0.9rem);
  margin-top: clamp(1.4rem, 2.4vw, 2rem);
}

.reference-logo-grid figure {
  display: grid;
  place-items: center;
  min-height: clamp(68px, 5.2vw, 86px);
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(0, 151, 178, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 252, 0.84));
  box-shadow: 0 12px 24px rgba(0, 81, 96, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.reference-logo-grid figure:hover {
  border-color: rgba(0, 151, 178, 0.26);
  box-shadow: 0 16px 30px rgba(0, 81, 96, 0.1);
  transform: translateY(-1px);
}

.reference-logo-grid img {
  display: block;
  max-width: 100%;
  max-height: clamp(34px, 3.2vw, 50px);
  object-fit: contain;
  filter: saturate(0.92) contrast(0.98);
}

.logo-grid-note {
  margin: 3rem 0 0;
  color: var(--text-soft);
  text-align: center;
  font-weight: 700;
  clear: both;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.partner-card {
  height: 100%;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 151, 178, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(231, 246, 249, 0.66));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.partner-card h3,
.partner-card p {
  margin: 0;
}

.partner-card p {
  margin-top: 0.65rem;
  color: var(--text-soft);
  text-align: justify;
  text-align-last: left;
}

.partner-card__slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.55rem;
}

.partner-card__slots span {
  min-height: 46px;
  border: 1px dashed rgba(0, 151, 178, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
}

.project-section--final .cta-panel {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(0, 81, 96, 0.9), rgba(0, 151, 178, 0.84));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 42px rgba(0, 81, 96, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.project-section--final .cta-panel h2,
.project-section--final .cta-panel p {
  color: #fff;
}

.project-section--final .cta-panel .btn--primary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.32);
}

.project-section--final .cta-panel .btn--primary:hover,
.project-section--final .cta-panel .btn--primary:focus-visible {
  background: #fff;
}

.project-section--final .cta-panel .btn--secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.project-section--final .cta-panel .btn--secondary:hover,
.project-section--final .cta-panel .btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.project-section--final .cta-panel .btn--ghost {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 24px rgba(0, 81, 96, 0.12);
}

.project-section--final .cta-panel .btn--ghost:hover,
.project-section--final .cta-panel .btn--ghost:focus-visible {
  background: #fff;
}

.list-clean {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.85rem;
  color: var(--text-soft);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

.donation-methods {
  display: grid;
  gap: 0.9rem;
}

.donation-method {
  display: grid;
  gap: 0.35rem;
}

.donation-method strong {
  font-size: 1rem;
}

.donation-method span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.donation-method--qr {
  min-height: 140px;
  place-content: center;
  justify-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(227, 241, 244, 0.78));
  border-style: dashed;
}

.tax-note {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.7rem;
}

.tax-note p {
  margin: 0;
}

.support-closing {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--text);
}

.content-section--support-subsection {
  margin-top: 1.5rem;
}

.content-section__intro {
  margin: 0 0 1.4rem;
  color: var(--text-soft);
}

.content-section--support-subsection .content-section__intro {
  margin-bottom: 2rem;
}

.support-personal-card {
  display: grid;
  align-content: start;
}

.support-personal-card__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--primary);
}

.support-personal-card__icon svg {
  width: 26px;
  height: 26px;
}

.support-mode-card {
  height: 100%;
}

.support-mode-card > :first-child {
  min-height: 10.5rem;
}

.support-modes-grid > .panel {
  padding-bottom: 1.75rem;
}

.section--company-support {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(0, 151, 178, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 84, 102, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(231, 246, 249, 0.92), rgba(244, 250, 252, 0.96));
  border-top: 1px solid rgba(0, 151, 178, 0.1);
  border-bottom: 1px solid rgba(0, 151, 178, 0.1);
}

.section--company-support .section-heading {
  margin-bottom: 1.35rem;
}

.section--company-support .section-heading h2,
.section--company-support .section-heading__intro,
.section--company-support .section-heading .eyebrow {
  color: var(--text);
}

.support-company-menu-wrap {
  margin-bottom: 1.5rem;
}

.support-variant-stack {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2rem;
}

.support-variant {
  display: grid;
  gap: 1rem;
}

.support-variant__heading {
  display: grid;
  gap: 0.45rem;
}

.support-variant__heading h3 {
  margin: 0;
  font-size: 1.5rem;
}

.support-horizontal-stack {
  display: grid;
  gap: 1rem;
}

.support-horizontal-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1.2fr) minmax(320px, 0.95fr);
  gap: 1.25rem;
  padding: 1.3rem 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 251, 253, 0.95));
  border: 1px solid rgba(0, 151, 178, 0.16);
  box-shadow: 0 18px 34px rgba(0, 58, 70, 0.08);
}

.support-horizontal-card__title {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.support-horizontal-card__title h4 {
  margin: 0;
  font-size: 1.6rem;
}

.support-horizontal-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 151, 178, 0.18), rgba(0, 151, 178, 0.1));
  color: var(--primary-deep);
  font-weight: 800;
}

.support-horizontal-card__body p {
  margin: 0;
  line-height: 1.65;
}

.support-horizontal-card__meta {
  display: grid;
  gap: 0.8rem;
}

.support-horizontal-card__meta p {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.55;
}

.support-horizontal-card__meta p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

.support-horizontal-card__meta strong {
  color: var(--primary-deep);
}

.support-ribbon-stack {
  display: grid;
  gap: 1.2rem;
}

.support-ribbon-card {
  display: grid;
  gap: 1rem;
  width: 100%;
  padding: 1.4rem 1.5rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 253, 0.96));
  border: 1px solid rgba(0, 151, 178, 0.16);
  box-shadow: 0 18px 34px rgba(0, 58, 70, 0.08);
}

.support-ribbon-card--left {
  justify-self: stretch;
}

.support-ribbon-card--right {
  justify-self: stretch;
}

.support-ribbon-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
}

.support-ribbon-card__head h4 {
  margin: 0;
  font-size: 1.55rem;
}

.support-ribbon-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 151, 178, 0.18), rgba(0, 151, 178, 0.08));
  color: var(--primary-deep);
  font-weight: 800;
}

.support-ribbon-card > p {
  margin: 0;
  line-height: 1.65;
}

.support-ribbon-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.support-ribbon-card__list li {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(231, 246, 249, 0.62);
  line-height: 1.55;
}

.support-ribbon-card__list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--primary-deep);
}

.support-ribbon-card--subtle {
  margin-top: 1.2rem;
  background: linear-gradient(180deg, rgba(247, 252, 254, 0.98), rgba(242, 249, 252, 0.95));
  box-shadow: 0 14px 28px rgba(0, 58, 70, 0.06);
}

.support-ribbon-card__list--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-matrix {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 251, 253, 0.95));
  border-color: rgba(0, 151, 178, 0.16);
}

.support-matrix__header,
.support-matrix__row {
  display: grid;
  grid-template-columns: 180px repeat(3, minmax(0, 1fr));
}

.support-matrix__header span,
.support-matrix__row > * {
  padding: 1rem 1.05rem;
}

.support-matrix__header {
  background: rgba(0, 84, 102, 0.92);
  color: #fff;
  font-weight: 800;
}

.support-matrix__header span:first-child {
  background: rgba(0, 58, 70, 0.96);
}

.support-matrix__row {
  border-top: 1px solid rgba(0, 151, 178, 0.14);
}

.support-matrix__row strong {
  color: var(--primary-deep);
  background: rgba(231, 246, 249, 0.64);
}

.support-matrix__row p {
  margin: 0;
  line-height: 1.55;
}

.support-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 252, 254, 0.94));
  border-color: rgba(0, 151, 178, 0.18);
}

.support-board__column {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.5rem;
}

.support-board__column + .support-board__column {
  border-left: 1px solid rgba(0, 151, 178, 0.12);
}

.support-board__column > p {
  margin: 0;
  line-height: 1.6;
}

.support-board__list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.support-board__list li {
  display: grid;
  gap: 0.3rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(0, 151, 178, 0.14);
}

.support-board__list strong {
  color: var(--primary-deep);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-board__list span {
  line-height: 1.55;
}

.support-dossier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.support-dossier-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 253, 0.96));
  border: 1px solid rgba(0, 151, 178, 0.16);
  box-shadow: 0 18px 34px rgba(0, 58, 70, 0.08);
}

.support-dossier-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.support-dossier-card__head h4 {
  margin: 0;
  font-size: 1.45rem;
}

.support-dossier-card__head p {
  margin: 0.2rem 0 0;
  color: var(--text-soft);
}

.support-dossier-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 151, 178, 0.18), rgba(0, 151, 178, 0.08));
  color: var(--primary-deep);
  font-weight: 800;
}

.support-dossier-card > p {
  margin: 0;
  line-height: 1.65;
}

.support-dossier-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.support-dossier-card__list li {
  margin: 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0, 151, 178, 0.12);
  line-height: 1.55;
}

.support-dossier-card__list strong,
.support-timeline-card__meta strong,
.support-layered-card dl dt,
.support-command-board__card ul strong {
  color: var(--primary-deep);
}

.support-timeline-stack {
  display: grid;
  gap: 1rem;
}

.support-timeline-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  padding: 1.35rem 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 253, 0.96));
  border: 1px solid rgba(0, 151, 178, 0.16);
  box-shadow: 0 18px 34px rgba(0, 58, 70, 0.08);
}

.support-timeline-card__rail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.2rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  border-right: 1px solid rgba(0, 151, 178, 0.14);
}

.support-timeline-card__content {
  display: grid;
  gap: 0.9rem;
}

.support-timeline-card__content h4 {
  margin: 0;
  font-size: 1.45rem;
}

.support-timeline-card__content > p {
  margin: 0;
  line-height: 1.65;
}

.support-timeline-card__meta {
  display: grid;
  gap: 0.55rem;
}

.support-timeline-card__meta p {
  margin: 0;
  line-height: 1.55;
}

.support-orbit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.support-orbit-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 251, 253, 0.95));
  border: 1px solid rgba(0, 151, 178, 0.16);
  box-shadow: 0 18px 34px rgba(0, 58, 70, 0.08);
  position: relative;
}

.support-orbit-card--raised {
  transform: translateY(-22px);
}

.support-orbit-card__index {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 151, 178, 0.12);
  color: var(--primary-deep);
  font-weight: 800;
}

.support-orbit-card h4 {
  margin: 0;
  font-size: 1.5rem;
}

.support-orbit-card > p {
  margin: 0;
  line-height: 1.65;
}

.support-orbit-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.support-orbit-card__chips span {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(231, 246, 249, 0.78);
  color: var(--primary-deep);
  font-weight: 600;
  font-size: 0.92rem;
}

.support-orbit-card__practice {
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(0, 151, 178, 0.18);
}

.support-layered-grid {
  display: grid;
  gap: 1rem;
}

.support-layered-card {
  display: grid;
  gap: 1rem;
  padding: 1.45rem 1.5rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(241, 250, 252, 0.95)),
    linear-gradient(180deg, rgba(0, 151, 178, 0.06), rgba(0, 151, 178, 0));
  border: 1px solid rgba(0, 151, 178, 0.16);
  box-shadow: 0 18px 34px rgba(0, 58, 70, 0.08);
}

.support-layered-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 151, 178, 0.12);
  color: var(--primary-deep);
  font-weight: 800;
}

.support-layered-card > p {
  margin: 0;
  line-height: 1.65;
}

.support-layered-card dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.support-layered-card dl div {
  display: grid;
  gap: 0.22rem;
  padding-left: 1rem;
  position: relative;
}

.support-layered-card dl div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

.support-layered-card dl dt,
.support-layered-card dl dd {
  margin: 0;
  line-height: 1.55;
}

.support-collage-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
  min-height: 540px;
}

.support-collage-note {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 254, 0.96));
  border: 1px solid rgba(0, 151, 178, 0.16);
  box-shadow: 0 18px 34px rgba(0, 58, 70, 0.08);
  position: relative;
}

.support-collage-note__pin {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 151, 178, 0.14);
}

.support-collage-note strong {
  color: var(--primary-deep);
}

.support-collage-note p {
  margin: 0;
  line-height: 1.6;
}

.support-collage-note--a {
  transform: rotate(-2deg) translateY(22px);
}

.support-collage-note--b {
  transform: rotate(1.4deg);
}

.support-collage-note--c {
  transform: rotate(-1deg) translateY(46px);
}

.support-command-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.support-command-board__card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 251, 253, 0.95));
  border: 1px solid rgba(0, 151, 178, 0.18);
  box-shadow: 0 18px 34px rgba(0, 58, 70, 0.08);
}

.support-command-board__card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 151, 178, 0.12);
}

.support-command-board__card header span {
  font-weight: 800;
  color: var(--primary-deep);
}

.support-command-board__card header strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 151, 178, 0.12);
  color: var(--primary-deep);
}

.support-command-board__card p {
  margin: 0;
  line-height: 1.65;
}

.support-command-board__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.support-command-board__card ul li {
  margin: 0;
  line-height: 1.55;
}

.support-mode-card__meta {
  min-height: 4.8rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(0, 151, 178, 0.14);
}

.support-mode-card__meta p,
.support-mode-card__practice p {
  margin: 0;
}

.support-mode-card__practice {
  margin-top: auto;
  min-height: 5.4rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(0, 151, 178, 0.24);
}

.content-section--support-examples {
  background: linear-gradient(180deg, rgba(244, 249, 250, 0.92), rgba(255, 255, 255, 0.88));
  border-color: rgba(0, 151, 178, 0.14);
}

.content-section--company-subtle {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 151, 178, 0.12);
  box-shadow: none;
}

.support-example-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 151, 178, 0.12);
  box-shadow: none;
}

.support-output-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 252, 254, 0.92));
}

.support-output-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding-left: 1.1rem;
}

.support-output-list li {
  color: var(--text-primary);
  line-height: 1.6;
}

.support-output-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.support-output-list--teal {
  list-style: none;
  padding-left: 0;
}

.support-output-list--teal li {
  position: relative;
  padding-left: 1rem;
}

.support-output-list--teal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

.support-output-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

.support-output-cards li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(231, 246, 249, 0.5);
  border: 1px solid rgba(0, 151, 178, 0.1);
  line-height: 1.5;
}

.support-output-cards__item--full {
  grid-column: 1 / -1;
}

.support-output-cards__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 151, 178, 0.12);
  color: var(--primary-deep);
}

.support-output-cards__icon svg {
  width: 22px;
  height: 22px;
}

.support-custom-examples {
  margin-top: 1rem;
}

.support-custom-examples p {
  margin: 0 0 0.55rem;
}

.cta-panel--company {
  background: linear-gradient(180deg, rgba(7, 56, 68, 0.96), rgba(8, 69, 82, 0.94));
  border-color: rgba(120, 225, 244, 0.18);
  box-shadow: 0 24px 54px rgba(0, 44, 53, 0.22);
}

.cta-panel--company h2,
.cta-panel--company p,
.cta-panel--company a {
  color: #fff;
}

.cta-panel--company .btn--primary {
  background: rgba(120, 225, 244, 0.16);
  border-color: rgba(120, 225, 244, 0.34);
  color: #fff;
}

.cta-panel--company .btn--primary:hover,
.cta-panel--company .btn--primary:focus-visible {
  background: rgba(120, 225, 244, 0.24);
}

.cta-panel--company .support-contact-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(120, 225, 244, 0.12);
}

.cta-panel--company .support-contact-card h3,
.cta-panel--company .support-contact-card p,
.cta-panel--company .support-contact-card a,
.cta-panel--company .support-contact-card strong {
  color: var(--text);
}

.support-personal-floating-cta {
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 0.35rem;
  min-height: 100%;
  padding: 0.9rem 0.6rem 0.8rem;
}

.support-personal-floating-cta__art {
  display: block;
  width: min(100%, 320px);
  height: auto;
  user-select: none;
  pointer-events: none;
  margin-bottom: -0.15rem;
}

.support-personal-card__cta-button {
  min-width: 220px;
  background: rgba(0, 151, 178, 0.12);
  border-color: rgba(0, 151, 178, 0.18);
  color: var(--primary-deep);
  box-shadow: 0 12px 24px rgba(0, 151, 178, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.support-personal-card__cta-button:hover,
.support-personal-card__cta-button:focus-visible {
  background: rgba(0, 151, 178, 0.18);
}

.support-widget-panel {
  align-self: start;
  display: grid;
  gap: 1rem;
}

.support-widget-panel__frame {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow-soft);
}

.support-widget-panel__frame img {
  width: 100%;
  display: block;
}

.support-widget-panel__note {
  margin-top: 0.85rem;
}

.support-photo-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.support-photo-card {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 32px;
  border: 0;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
  background-color: #dfecef;
  background-size: cover;
  background-position: center;
}

.support-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.72) 24%, rgba(255, 255, 255, 0.62) 54%, rgba(255, 255, 255, 0.76) 100%);
}

.support-photo-card--handshake {
  background-image: url("/Users/vladka/Desktop/Kultura blíž lidem/Web/assets/images/content/jina-forma-spoluprace-podani-ruky-kultura-bliz-lidem.png");
}

.support-photo-card--legacy {
  background-image: url("/Users/vladka/Desktop/Kultura blíž lidem/Web/assets/images/content/odkaz-v-zaveti-kultura-bliz-lidem.png");
}

.support-photo-card__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.75rem 1.8rem;
  color: var(--text);
}

.support-photo-card__content h3 {
  margin: 0 0 0.75rem;
  max-width: 24ch;
  font-size: clamp(1.7rem, 2vw, 2.25rem);
  line-height: 1.08;
}

.support-photo-card__content p {
  margin: 0;
  max-width: 48ch;
  line-height: 1.52;
  font-size: 1.02rem;
}

.support-accounts {
  margin-top: 1.2rem;
}

.support-accounts--embedded {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.15rem;
}

.support-account-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.3rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(0, 151, 178, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(227, 241, 244, 0.62));
  box-shadow: 0 18px 44px rgba(12, 70, 82, 0.07);
}

.support-account-row__text {
  display: grid;
  gap: 0.35rem;
  text-align: left;
}

.support-account-row__text .eyebrow {
  width: fit-content;
  margin-bottom: 0.25rem;
}

.support-account-row__text p {
  margin: 0;
  color: var(--text);
  font-size: clamp(0.9rem, 1.12vw, 1rem);
  line-height: 1.28;
}

.support-qr-placeholder {
  margin-top: 0;
  padding: 0.55rem;
  border-radius: 18px;
  background: #fff;
}

.support-qr-image {
  display: block;
  width: min(104px, 20vw);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.support-account-warning {
  margin-top: 1rem;
  padding: clamp(0.95rem, 1.8vw, 1.2rem);
  border: 1px solid rgba(0, 151, 178, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(227, 241, 244, 0.86), rgba(255, 255, 255, 0.94));
  color: var(--text);
  text-align: left;
}

.support-account-warning strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.support-account-warning p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.support-account-warning p + p {
  margin-top: 0.45rem;
}

.support-account-warning--compact {
  margin-top: 0;
  padding: 0.75rem 0.9rem;
  border-left-width: 5px;
  border-radius: 18px;
}

.support-account-warning--compact strong {
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
}

.support-account-warning--compact p {
  font-size: 0.74rem;
  line-height: 1.35;
}

.support-tax-panel {
  margin-top: 1.2rem;
}

.support-tax-panel__mail {
  color: var(--primary);
  font-weight: 700;
}

.news-grid,
.contact-grid,
.program-grid,
.engage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-card {
  overflow: hidden;
  padding: 0;
}

.program-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.program-card__body {
  padding: 1.35rem;
}

.facility-audience-panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.55rem;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 151, 178, 0.07), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.facility-audience-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facility-audience-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(0, 151, 178, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.facility-audience-panel > p {
  max-width: 880px;
  margin: 0 auto;
  color: var(--text-soft);
  text-align: center;
}

.facility-highlight-panel {
  justify-content: center;
}

.facility-highlight-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facility-highlight-list li {
  position: relative;
  padding: 1rem 1.1rem 1rem 2.6rem;
  border: 1px solid rgba(0, 151, 178, 0.16);
  border-radius: 22px;
  background: rgba(231, 246, 249, 0.78);
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.facility-highlight-list li::before {
  content: "";
  position: absolute;
  top: 1.28rem;
  left: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--primary);
}

.facility-trust-section + .facility-practice-section {
  margin-top: 1.5rem;
}

.facility-logo-grid .logo-card,
.facility-link-card {
  min-height: 100%;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 1.3rem 1.4rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1.4rem 1.35rem;
}

.cta-panel {
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 151, 178, 0.11), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.content-flow--offset,
.panel-note {
  margin-top: 1rem;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 1.6rem;
  align-items: center;
  padding: 2.4rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.page-hero__box--single {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero__box--centered {
  text-align: center;
  justify-items: center;
}

.page-hero__box--centered > div {
  max-width: 760px;
}

.page-hero__box--centered p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.page-hero .eyebrow {
  margin-bottom: 1.15rem;
}

.page-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.content-flow {
  display: grid;
  gap: 1.1rem;
}

.content-flow > .eyebrow {
  justify-self: start;
  width: fit-content;
}

.content-section {
  padding: 1.65rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-md);
}

.contact-grid {
  align-items: start;
}

.contact-grid--balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.contact-card .eyebrow {
  margin-bottom: 1rem;
}

.contact-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 253, 0.96));
  border: 1px solid rgba(0, 151, 178, 0.18);
  box-shadow: 0 22px 48px rgba(0, 151, 178, 0.08);
}

.contact-card form {
  display: grid;
  gap: 0.85rem;
  flex: 1;
}

.contact-card .btn {
  width: 100%;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
}

.label-inline {
  display: grid;
  gap: 0.45rem;
}

.label-text {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.required-mark {
  color: #c53a32;
  font-weight: 700;
  font-size: 0.82em;
  line-height: 1;
}

.spolek-meta {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.spolek-meta h2 {
  margin: 0 0 1rem;
}

.spolek-meta__grid {
  display: grid;
  gap: 0.45rem;
}

.spolek-meta__grid p {
  margin: 0;
  color: var(--text-soft);
}

.contact-accounts {
  display: grid;
  gap: 1rem;
}

.contact-accounts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-account-card {
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 1px solid rgba(0, 151, 178, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(227, 241, 244, 0.72));
  box-shadow: var(--shadow-soft);
}

.contact-account-card h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.contact-account-card h2 span {
  color: var(--text-soft);
  font-size: 0.75em;
  font-weight: 700;
}

.contact-account-card p {
  margin: 0;
  color: var(--text-soft);
}

.contact-account-card .no-break {
  white-space: normal;
  overflow-wrap: anywhere;
}

.contact-account-card__number {
  margin-bottom: 0.35rem !important;
  color: var(--text) !important;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.contact-account-warning {
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(0, 151, 178, 0.18);
  border-left: 7px solid var(--primary);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(12, 70, 82, 0.08);
}

.contact-account-warning strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
}

.contact-account-warning p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

textarea {
  min-height: 124px;
  resize: vertical;
}

.site-footer {
  margin-top: 4rem;
  padding: 3.2rem 0 2rem;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at top left, rgba(0, 151, 178, 0.18), transparent 32%),
    #111111;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.65fr)) minmax(230px, 0.85fr);
  gap: 1.5rem;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-brand img {
  width: 188px;
  margin: 0 auto 1rem;
  display: block;
}

.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(0, 151, 178, 0.1);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(0, 151, 178, 0.34);
  border-color: rgba(255, 255, 255, 0.38);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: currentColor;
}

.site-footer h3 a {
  color: #fff;
}

.site-footer h3 a:hover {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links-stack {
  display: grid;
  gap: 1.2rem;
}

.footer-single-links {
  display: grid;
  gap: 0.75rem;
}

.footer-single-links h3 {
  margin: 0;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.muted {
  color: var(--text-soft);
}

.small {
  font-size: 0.92rem;
}

.no-break {
  white-space: nowrap;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 151, 178, 0.28);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.back-to-top:hover {
  background: var(--primary-deep);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


.thank-you-actions {
  justify-content: center;
}

.thank-you-actions .btn {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1080px) {
  .hero__grid,
  .split,
  .reference-layout,
  .page-hero__box,
  .metrics-band__intro,
  .section-heading,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid,
  .card-grid,
  .home-stat-grid,
  .project-process-grid,
  .person-grid,
  .reference-card-grid,
  .partner-grid,
  .card-grid--support,
  .card-grid--support-wide,
  .card-grid--support-personal,
  .card-grid--home-routes,
  .facility-audience-list,
  .why-mini-grid,
  .why-ribbon-grid,
  .icon-grid,
  .icon-grid--home-proof,
  .icon-grid--support-benefits,
  .quote-grid,
  .logo-grid,
  .logo-placeholder-grid,
  .news-grid,
  .program-grid,
  .engage-grid,
  .contact-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual {
    min-height: clamp(360px, 70vw, 520px);
  }

  .site-nav {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav__panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(360px, calc(100vw - 2rem));
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(23, 23, 23, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 180ms ease;
  }

  .site-nav__panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__links a,
  .site-nav__panel .btn {
    width: 100%;
  }

  /* Mobile dropdown navigation */
  .site-nav__dropdown {
    display: block;
    width: 100%;
  }

  .site-nav__parent {
    width: 100%;
    justify-content: center;
  }

  .site-nav__submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 0.35rem 0 0.75rem;
    padding: 0.45rem;
    border-radius: 18px;
    box-shadow: none;
    background: rgba(0, 151, 178, 0.05);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__submenu a {
    text-align: center;
    white-space: normal;
    font-size: 0.92rem;
  }

  .section-menu {
    padding: 0.7rem;
  }

  .why-core-grid {
    grid-template-columns: 1fr;
  }

  .reference-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why-proposal--compact-split,
  .why-proposal--compact-magazine,
  .why-band__body,
  .why-proposal--compact-editorial {
    grid-template-columns: 1fr;
  }

  .why-proposal--compact-magazine {
    grid-template-areas:
      "intro"
      "lead"
      "support"
      "summary"
      "quotes";
  }

  .why-step-grid,
  .why-band__story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 2rem;
  }

  .hero__content,
  .panel,
  .page-hero__box,
  .metrics-band__box,
  .cta-panel {
    padding: 1.4rem;
  }

  .metrics-grid,
  .card-grid,
  .project-process-grid,
  .person-grid,
  .reference-card-grid,
  .partner-grid,
  .logo-placeholder-grid,
  .reference-logo-grid,
  .card-grid--support,
  .card-grid--support-wide,
  .card-grid--support-personal,
  .card-grid--home-routes,
  .facility-audience-list,
  .icon-grid,
  .icon-grid--home-proof,
  .icon-grid--support-benefits,
  .quote-grid,
  .logo-grid,
  .news-grid,
  .program-grid,
  .engage-grid,
  .faq-grid,
  .contact-grid,
  .steps,
  .field-grid,
  .contact-accounts__grid,
  .page-hero__stats {
    grid-template-columns: 1fr;
  }

  .home-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .home-stat-grid .metric-card--support-grants {
    min-height: 96px;
    padding: 0.75rem 0.45rem;
    gap: 0.35rem;
  }

  .home-stat-grid .metric-card--support-grants strong {
    font-size: clamp(1.35rem, 8vw, 1.8rem);
  }

  .home-stat-grid .metric-card--support-grants span {
    font-size: 0.74rem;
    line-height: 1.18;
  }

  .person-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .person-card__body {
    justify-items: center;
  }

  .support-account-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .support-account-row__text {
    justify-items: center;
    text-align: center;
  }

  .support-qr-image {
    width: min(112px, 40vw);
  }

  .team-variants {
    gap: 2rem;
  }

  .why-proposal__main,
  .why-magazine__intro,
  .why-editorial__left {
    padding: 1.15rem;
  }

  .why-proposal__header,
  .why-band__headline {
    max-width: none;
  }

  .why-step-card,
  .why-summary-card {
    padding: 0.95rem 1rem;
  }

  .why-core-card {
    padding: 1.15rem;
  }

  .why-core-card--accent::before {
    top: 0.85rem;
    right: 0.9rem;
  }

  .why-core-card h2 {
    max-width: none;
  }

  .reference-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-editorial,
  .team-split,
  .team-timeline article,
  .team-bands article,
  .team-bands article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .team-split article + article {
    border-left: 0;
    border-top: 1px solid rgba(0, 151, 178, 0.14);
  }

  .team-timeline {
    padding-left: 0;
  }

  .team-timeline::before {
    display: none;
  }

  .team-bands article:nth-child(even) .team-bands__name {
    order: 0;
  }

  .place-tags {
    justify-content: center;
  }

  .hero__actions,
  .cta-panel__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .cta-panel__actions .btn {
    width: 100%;
  }

  .hero__content h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
    line-height: 1;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(1.55rem, 9vw, 2.05rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }

  .hero__lead,
  .page-hero p {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .brand img,
  .footer-brand img {
    width: 132px;
  }

  .site-header__inner {
    min-height: 78px;
  }

  .page-hero__box--centered > div {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero__content,
  .section-heading,
  .section-heading__body,
  .section-heading__aside,
  .section-heading__intro,
  .panel,
  .card,
  .icon-card,
  .program-card__body,
  .news-card,
  .quote-card,
  .contact-person,
  .logo-card,
  .step-card,
  .faq-item,
  .cta-panel,
  .map-card .content-flow,
  .facility-link-card,
  .facility-highlight-panel,
  .support-mode-card,
  .support-personal-card,
  .support-output-cards li,
  .support-photo-card__content {
    text-align: center;
  }

  .section-heading,
  .section-heading__body,
  .card,
  .icon-card,
  .program-card__body,
  .contact-person,
  .logo-card,
  .step-card,
  .cta-panel {
    justify-items: center;
  }

  .contact-card,
  .contact-card form,
  .field-grid,
  .label-inline {
    text-align: left;
  }

  .facility-highlight-list,
  .facility-audience-list {
    padding-left: 0;
    text-align: center;
    list-style-position: inside;
  }

  .artist-cta-grid {
    grid-template-columns: 1fr;
  }

  .artist-cta-middle {
    grid-template-columns: 1fr;
  }

  .support-cta-grid {
    grid-template-columns: 1fr;
  }

  .support-contact-column {
    padding-top: 0;
  }

  .metrics-grid--support {
    grid-template-columns: 1fr;
  }

  .metrics-grid--support-grants {
    grid-template-columns: 1fr;
  }

  .metric-card--support-grants-wide {
    grid-column: auto;
  }

  .support-output-list--columns {
    grid-template-columns: 1fr;
  }

  .support-output-cards {
    grid-template-columns: 1fr;
  }

  .support-photo-card-grid {
    grid-template-columns: 1fr;
  }

  .support-dossier {
    grid-template-columns: 1fr;
  }

  .support-dossier__body > p {
    min-height: auto;
  }

  .support-horizontal-card,
  .support-matrix__header,
  .support-matrix__row,
  .support-board {
    grid-template-columns: 1fr;
  }

  .support-matrix__header span:first-child {
    display: none;
  }

  .support-board__column + .support-board__column {
    border-left: none;
    border-top: 1px solid rgba(0, 151, 178, 0.12);
  }

  .support-dossier-grid,
  .support-command-board,
  .support-orbit-grid,
  .support-collage-grid {
    grid-template-columns: 1fr;
  }

  .support-timeline-card {
    grid-template-columns: 1fr;
  }

  .support-timeline-card__rail {
    border-right: none;
    border-bottom: 1px solid rgba(0, 151, 178, 0.14);
    justify-content: flex-start;
    padding-bottom: 0.75rem;
  }

  .support-ribbon-card,
  .support-ribbon-card--left,
  .support-ribbon-card--right,
  .support-orbit-card--raised,
  .support-collage-note--a,
  .support-collage-note--b,
  .support-collage-note--c {
    transform: none;
    justify-self: stretch;
  }

  .support-ribbon-card__list {
    grid-template-columns: 1fr;
  }

  .support-message-photo__overlay {
    min-height: 280px;
    padding: 1.5rem;
  }

  .support-message-photo__overlay p {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
  }

  .section-menu {
    width: 100%;
    padding: 0.55rem 0.65rem;
  }

  .section-menu__track {
    padding-inline: 2.85rem;
    touch-action: pan-x;
  }

  .section-menu__track::-webkit-scrollbar {
    display: none;
  }

  .section-menu.is-fixed {
    left: 1rem;
    width: calc(100vw - 2rem);
  }

  .section-menu__arrow--prev {
    left: 0.45rem;
  }

  .section-menu__arrow--next {
    right: 0.45rem;
  }

  .section-menu--support a {
    min-width: max-content;
  }

  .section-menu--company a {
    min-width: max-content;
  }

  .support-mini-cta__copy {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
  }
}


/* KBL final additions: forms, partners, map consent and mobile centering */
.form-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted, #666);
  line-height: 1.5;
}

.form-captcha {
  margin: 1rem 0 1.1rem;
}

.form-captcha iframe {
  max-width: 100%;
}

.partner-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.partner-card__status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 151, 178, 0.09);
  color: var(--accent, #0097b2);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.partner-card__status--open {
  background: rgba(29, 36, 50, 0.06);
  color: var(--text-soft);
}

.partner-card__logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.partner-logo {
  min-height: 58px;
  border: 1px solid rgba(0, 151, 178, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  text-align: center;
  transition: 180ms ease;
}

.partner-logo[href]:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 151, 178, 0.32);
  box-shadow: 0 12px 24px rgba(0, 81, 96, 0.1);
}

.partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.partner-logo--placeholder {
  border-style: dashed;
  color: rgba(29, 36, 50, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
}

.map-consent {
  width: 100%;
  padding: 1.35rem;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(0, 151, 178, 0.12);
  text-align: center;
}

.map-consent h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.map-consent p {
  margin: 0 auto 0.85rem;
  max-width: 42rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.btn--compact {
  min-height: auto;
  padding: 0.72rem 1.15rem;
  font-size: 0.92rem;
}

.google-map-iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: none;
}

.google-map-iframe.is-loaded {
  display: block;
}

@media (max-width: 768px) {
  body {
    text-align: center;
  }

  .container,
  .page-hero,
  .section,
  .panel,
  .contact-grid,
  .content-flow,
  .contact-person,
  .contact-card,
  .support-account-row,
  .site-footer,
  .site-footer__grid,
  .footer-brand,
  .footer-social,
  .footer-links-stack,
  .footer-bottom,
  .partner-card,
  .partner-card__topline,
  .partner-card__logos {
    text-align: center;
    justify-items: center;
    align-items: center;
    justify-content: center;
  }

  .site-footer__grid,
  .partner-grid,
  .partner-card__logos {
    grid-template-columns: 1fr;
  }

  .site-footer ul,
  .footer-links-stack ul,
  .hero__points,
  .facility-highlight-list,
  .facility-audience-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }

  .site-footer li::marker,
  .hero__points li::marker,
  .facility-highlight-list li::marker,
  .facility-audience-list li::marker {
    content: "";
  }

  .footer-brand img,
  .footer-social,
  .footer-bottom {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-card,
  .contact-card form,
  .contact-card input,
  .contact-card textarea,
  .contact-card select {
    text-align: left;
  }

  .partner-card p {
    text-align: center;
    text-align-last: center;
  }

  .partner-card__topline {
    flex-direction: column;
  }
}

/* KBL mobile refinement: stronger centering and cleaner hero points */
@media (max-width: 768px) {
  .hero__content,
  .hero__content h1,
  .hero__lead,
  .hero__support,
  .hero__points,
  .hero__points li,
  .hero__stats-note,
  .home-stat-grid,
  .section-heading,
  .section-heading__body,
  .section-heading__intro,
  .section-heading__aside,
  .page-hero__box,
  .page-hero__box p,
  .metrics-band__box,
  .panel,
  .card,
  .icon-card,
  .program-card__body,
  .news-card,
  .quote-card,
  .faq-item,
  .cta-panel,
  .content-flow,
  .contact-person,
  .support-account-row,
  .support-account-row__text,
  .site-footer,
  .site-footer__grid,
  .site-footer li,
  .footer-bottom {
    text-align: center;
    text-align-last: center;
  }

  .hero__content h1 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.95rem, 8.35vw, 2.8rem);
    line-height: 1.02;
  }

  .hero__lead,
  .hero__support,
  .hero__points,
  .home-stat-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__support {
    border-left-width: 1px;
    padding-left: 1.15rem;
  }

  .hero__points {
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    list-style: none;
    padding-left: 0;
  }

  .hero__points li {
    display: block;
    max-width: 100%;
  }

  .hero__points li::before {
    display: none;
    content: none;
  }

  .facility-highlight-list li,
  .facility-audience-list li {
    display: block;
    padding-left: 0;
  }

  .facility-highlight-list li::before,
  .facility-audience-list li::before {
    display: none;
    content: none;
  }

  .site-footer ul,
  .footer-links-stack ul,
  .hero__points,
  .facility-highlight-list,
  .facility-audience-list {
    list-style: none;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

/* KBL mobile refinements: pro-zajemce-o-program */
@media (max-width: 768px) {
  .facility-audience-list,
  .facility-highlight-list {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.9rem;
    width: 100%;
  }

  .facility-audience-list li,
  .facility-highlight-list li {
    width: min(100%, 34rem);
    min-height: 4.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.15rem;
    text-align: center;
    text-align-last: center;
    line-height: 1.25;
  }

  .facility-highlight-list li {
    padding-left: 1.15rem;
  }

  .program-grid .program-card:nth-child(5) > img {
    object-position: 18% 8%;
  }

  .reference-card__body {
    text-align: center;
    justify-items: center;
  }

  .reference-card__body .card__tag {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-align-last: center;
  }
}

/* KBL mobile refinements: pro-umelce */
@media (max-width: 768px) {
  .panel--full > .eyebrow,
  .panel > .eyebrow,
  .content-section > .eyebrow,
  .mini-panel > .eyebrow {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
    text-align-last: center;
  }

  .panel-note,
  .panel-note strong,
  .panel-note .list-clean,
  .panel-note .list-clean li {
    text-align: center;
    text-align-last: center;
  }

  .panel-note .list-clean {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    list-style: none;
  }

  .panel-note .list-clean li {
    padding-left: 0;
    margin-bottom: 0;
    max-width: 42rem;
  }

  .panel-note .list-clean li::before {
    display: none;
    content: none;
  }
}

/* KBL mobile refinements: kontakt + podpora */
@media (max-width: 768px) {
  /* Kontakt: stejna sirka kontaktnich boxu */
  .section--contact-grid-main .content-flow {
    display: grid;
    justify-items: center;
  }

  .section--contact-grid-main .content-flow .contact-person {
    width: min(100%, 36rem);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-align-last: center;
  }

  .contact-person a,
  .support-contact-card a {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  /* Podpora: odstraneni odrazek a celkove centrovani mobilnich bloku */
  .support-direct-copy,
  .support-direct-copy p,
  .support-direct-copy__methods,
  .support-direct-copy__methods p,
  .support-direct-copy__methods .list-clean,
  .support-direct-copy__methods .list-clean li,
  .support-tax-note-inline,
  .support-tax-note-inline p,
  .support-closing,
  .support-output-panel,
  .support-output-panel p,
  .support-example-card,
  .support-example-card p,
  .support-contact-lines,
  .support-contact-lines p,
  .support-ribbon-card,
  .support-ribbon-card > p,
  .support-ribbon-card__list,
  .support-ribbon-card__list li,
  .support-ribbon-card__list strong,
  .support-ribbon-card__list span,
  .support-output-cards,
  .support-output-cards li,
  .support-output-cards li span,
  .support-board__list,
  .support-board__list li,
  .support-dossier-card__list,
  .support-dossier-card__list li,
  .support-command-board__card ul,
  .support-command-board__card ul li {
    text-align: center;
    text-align-last: center;
  }

  .support-direct-copy__methods .list-clean,
  .support-ribbon-card__list,
  .support-output-cards,
  .support-board__list,
  .support-dossier-card__list,
  .support-command-board__card ul,
  #nadace-a-grantove-subjekty .list-clean {
    list-style: none;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .support-direct-copy__methods .list-clean li,
  #nadace-a-grantove-subjekty .list-clean li {
    display: block;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .support-direct-copy__methods .list-clean li::before,
  #nadace-a-grantove-subjekty .list-clean li::before,
  .support-board__list li::before,
  .support-dossier-card__list li::before,
  .support-command-board__card ul li::before {
    display: none;
    content: none;
  }

  /* Firemni formy podpory: cislo nad nadpisem, vse centrovane */
  .support-ribbon-card__head {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.65rem;
  }

  .support-ribbon-card__index {
    margin-left: auto;
    margin-right: auto;
  }

  .support-ribbon-card__head h4 {
    text-align: center;
    text-align-last: center;
  }

  .support-ribbon-card__list {
    justify-items: center;
  }

  .support-ribbon-card__list li {
    width: 100%;
    display: grid;
    justify-items: center;
  }

  /* Mozne vystupy spoluprace: ikony i text na stred, bez odrazek */
  .support-output-cards {
    display: grid;
    justify-items: center;
    gap: 0.9rem;
  }

  .support-output-cards li {
    display: grid;
    justify-items: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .support-output-cards__icon {
    margin-left: auto;
    margin-right: auto;
  }

  /* Grantova cisla: 2x2 na mobilu */
  .metrics-grid.metrics-grid--support-grants {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .metric-card--support-grants {
    min-height: 9.25rem;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    text-align-last: center;
  }

  /* Podpora: kontakt */
  .support-cta-copy > .eyebrow,
  #kontakt-podpora .eyebrow {
    align-self: center;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-align-last: center;
  }

  #kontakt-podpora .support-cta-copy,
  #kontakt-podpora .support-contact-column,
  #kontakt-podpora .support-contact-card,
  #kontakt-podpora .cta-panel__actions {
    display: grid;
    justify-items: center;
    text-align: center;
    text-align-last: center;
  }
}

@media (max-width: 520px) {
  .section--contact-grid-main .content-flow .contact-person {
    width: min(100%, 31rem);
  }

  .metrics-grid.metrics-grid--support-grants {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .metric-card--support-grants {
    min-height: 8.5rem;
    padding: 1.05rem 0.8rem;
  }

  .metric-card--support-grants strong {
    font-size: clamp(1.75rem, 10vw, 2.35rem);
  }

  .metric-card--support-grants span {
    font-size: 0.9rem;
    line-height: 1.25;
  }
}


/* Cookie consent */
.cookie-consent[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent__content {
  width: min(100%, 68rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 151, 178, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(29, 36, 50, 0.16);
  pointer-events: auto;
  backdrop-filter: blur(14px);
}

.cookie-consent__text h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.cookie-consent__text p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-consent__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  align-items: center;
}

.cookie-consent__button {
  min-height: auto;
  padding: 0.72rem 1rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(29, 36, 50, 0.42);
}

.cookie-modal__dialog {
  position: relative;
  width: min(100%, 42rem);
  max-height: min(90vh, 48rem);
  overflow: auto;
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 151, 178, 0.16);
  background: #fff;
  box-shadow: 0 30px 70px rgba(29, 36, 50, 0.22);
}

.cookie-modal__dialog h2 {
  margin: 0.7rem 0 0.75rem;
}

.cookie-modal__dialog p {
  margin: 0;
  color: var(--text-soft);
}

.cookie-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(29, 36, 50, 0.1);
  border-radius: 999px;
  background: rgba(242, 249, 250, 0.9);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal__options {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--surface-soft);
  border: 1px solid rgba(0, 151, 178, 0.12);
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  margin-bottom: 0.2rem;
}

.cookie-option small {
  color: var(--text-soft);
  line-height: 1.45;
}

.cookie-option input {
  width: 1.3rem;
  height: 1.3rem;
  accent-color: var(--primary);
}

.footer-cookie-settings {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-consent__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-consent__actions,
  .cookie-modal__actions {
    justify-content: center;
  }

  .cookie-consent__button {
    flex: 1 1 auto;
  }

  .cookie-modal__dialog {
    text-align: center;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

/* KBL final mobile pass: index layout alignment fixes */
@media (max-width: 768px) {
  /* Header: logo vlevo, hamburger vpravo */
  .site-header__inner.container,
  .site-header__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    justify-items: stretch !important;
    text-align: left !important;
    width: min(calc(100% - 2rem), var(--container));
  }

  .site-header .brand {
    margin-right: auto !important;
    margin-left: 0 !important;
    justify-self: flex-start !important;
  }

  .site-header .brand img {
    margin-left: 0 !important;
    margin-right: 0 !important;
    object-fit: contain;
  }

  .site-header .site-nav {
    margin-left: auto !important;
    justify-self: flex-end !important;
  }

  .site-header .menu-toggle {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  /* Index: Proč to má smysl */
  .project-section--why .why-core-grid,
  .project-section--why .why-core-card,
  .project-section--why .why-core-card--text,
  .project-section--why .why-core-card--accent,
  .project-section--why .why-sources-final {
    text-align: center !important;
    text-align-last: center !important;
    justify-items: center !important;
    align-items: center !important;
  }

  .project-section--why .why-core-card .eyebrow,
  .project-section--why .why-sources-final > .card__tag {
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    justify-self: center !important;
  }

  .project-section--why .why-core-card h2,
  .project-section--why .why-core-card p,
  .project-section--why .why-core-card--text p,
  .project-section--why .why-core-card--accent p,
  .project-section--why .study-card__quote,
  .project-section--why .study-card__source {
    text-align: center !important;
    text-align-last: center !important;
  }

  .project-section--why .why-core-card--accent p {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .project-section--why .why-core-card--accent::after {
    display: none !important;
    content: none !important;
  }

  .project-section--why .why-core-card--accent::before {
    position: static !important;
    margin: 0 auto 0.4rem !important;
    transform: none !important;
  }

  .project-section--why .study-card__tags {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.55rem !important;
    text-align: center !important;
  }

  .project-section--why .study-card__tags .card__tag,
  .project-section--why .study-card__tags .card__tag--solid {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    text-align-last: center !important;
  }

  /* Index: Lidé za projektem */
  .project-section--people .person-grid,
  .project-section--people .person-card,
  .project-section--people .person-card__body {
    display: grid !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
    text-align-last: center !important;
  }

  .project-section--people .person-card__photo,
  .project-section--people .person-card__photo img {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-self: center !important;
  }

  .project-section--people .person-card__body h3,
  .project-section--people .person-card__body p,
  .project-section--people .team-note,
  .project-section--people .team-note p {
    text-align: center !important;
    text-align-last: center !important;
  }

  /* Index: Partneři, loga a volná místa v jedné řadě */
  .project-section--partners .partner-card__logos {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.45rem !important;
    width: 100% !important;
    justify-items: stretch !important;
    align-items: stretch !important;
  }

  .project-section--partners .partner-logo {
    min-width: 0 !important;
    min-height: 4.1rem !important;
    padding: 0.55rem 0.38rem !important;
    font-size: 0.68rem !important;
    line-height: 1.15 !important;
    text-align: center !important;
    text-align-last: center !important;
  }

  .project-section--partners .partner-logo img {
    max-width: 100% !important;
    max-height: 2.1rem !important;
  }
}

/* KBL final override: mobile header, homepage photo and team centering */
@media (max-width: 1080px) {
  .site-header__inner.container,
  .site-header__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    width: min(calc(100% - 2rem), var(--container)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
    text-align-last: auto !important;
  }

  .site-header .brand {
    flex: 0 1 auto !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    justify-content: flex-start !important;
  }

  .site-header .brand img {
    width: clamp(158px, 34vw, 190px) !important;
    height: auto !important;
    max-height: 62px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .site-header .site-nav {
    flex: 0 0 auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    justify-content: flex-end !important;
  }

  .site-header .menu-toggle {
    flex: 0 0 auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .hero__visual {
    display: block !important;
    min-height: clamp(280px, 66vw, 520px) !important;
    background-image: url("../images/hero/kulturni-program-domov-senioru-kultura-bliz-lidem.png") !important;
    background-size: cover !important;
    background-position: center 38% !important;
    background-repeat: no-repeat !important;
  }

  .hero__visual img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .project-section--people .team-variants,
  .project-section--people .team-variant,
  .project-section--people .team-timeline,
  .project-section--people .team-timeline article,
  .project-section--people .team-timeline article > div {
    width: 100% !important;
    display: grid !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
    text-align-last: center !important;
  }

  .project-section--people .team-timeline {
    padding-left: 0 !important;
  }

  .project-section--people .team-timeline::before {
    display: none !important;
  }

  .project-section--people .team-timeline article {
    grid-template-columns: 1fr !important;
    justify-content: center !important;
    gap: 1.25rem !important;
  }

  .project-section--people .team-timeline__photo {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-self: center !important;
  }

  .project-section--people .team-timeline h3,
  .project-section--people .team-timeline p,
  .project-section--people .team-timeline .contact-person__role,
  .project-section--people .team-note {
    width: 100% !important;
    max-width: 42rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    text-align-last: center !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand img {
    width: clamp(158px, 42vw, 178px) !important;
  }
}

/* KBL hotfix: mobile logo size, hero photo and people centering */
@media (max-width: 768px) {
  .site-header__inner.container,
  .site-header__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    width: min(calc(100% - 2rem), var(--container)) !important;
    min-height: 94px !important;
    text-align: left !important;
    text-align-last: auto !important;
  }

  .site-header .brand {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 1 auto !important;
    width: auto !important;
    max-width: calc(100% - 92px) !important;
    margin: 0 auto 0 0 !important;
  }

  .site-header .brand img {
    display: block !important;
    width: clamp(200px, 50vw, 260px) !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .site-header .site-nav,
  .site-header .menu-toggle {
    flex: 0 0 auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .hero__visual {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    margin-top: 1rem !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    background-image: url("../images/hero/kulturni-program-domov-senioru-kultura-bliz-lidem.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .hero__visual img {
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hero__visual .hero__overlay {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
  }

  #lide-za-projektem,
  #lide-za-projektem .container,
  #lide-za-projektem .section-heading,
  #lide-za-projektem .team-variants,
  #lide-za-projektem .team-variant,
  #lide-za-projektem .team-timeline,
  #lide-za-projektem .team-timeline article,
  #lide-za-projektem .team-timeline article > div,
  .project-section--people,
  .project-section--people .container,
  .project-section--people .section-heading,
  .project-section--people .team-variants,
  .project-section--people .team-variant,
  .project-section--people .team-timeline,
  .project-section--people .team-timeline article,
  .project-section--people .team-timeline article > div {
    display: grid !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
    text-align-last: center !important;
  }

  #lide-za-projektem .team-timeline,
  .project-section--people .team-timeline {
    padding-left: 0 !important;
  }

  #lide-za-projektem .team-timeline::before,
  .project-section--people .team-timeline::before {
    display: none !important;
    content: none !important;
  }

  #lide-za-projektem .team-timeline article,
  .project-section--people .team-timeline article {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    place-items: center !important;
    justify-content: center !important;
  }

  #lide-za-projektem .team-timeline__photo,
  .project-section--people .team-timeline__photo,
  #lide-za-projektem .team-timeline article img,
  .project-section--people .team-timeline article img {
    display: block !important;
    margin: 0 auto 1rem !important;
    justify-self: center !important;
    align-self: center !important;
  }

  #lide-za-projektem .team-timeline h3,
  #lide-za-projektem .team-timeline p,
  #lide-za-projektem .team-timeline .contact-person__role,
  #lide-za-projektem .team-editorial p,
  #lide-za-projektem .team-split p,
  #lide-za-projektem .team-bands p,
  .project-section--people .team-timeline h3,
  .project-section--people .team-timeline p,
  .project-section--people .team-timeline .contact-person__role,
  .project-section--people .team-editorial p,
  .project-section--people .team-split p,
  .project-section--people .team-bands p {
    width: 100% !important;
    max-width: 42rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    text-align-last: center !important;
  }
}

@media (max-width: 390px) {
  .site-header .brand img {
    width: clamp(178px, 54vw, 210px) !important;
  }
}

/* KBL final hotfix: compact mobile header after cropping logo canvas */
@media (max-width: 768px) {
  .site-header {
    min-height: 0 !important;
  }

  .site-header__inner.container,
  .site-header__inner {
    min-height: 74px !important;
    padding-top: 0.45rem !important;
    padding-bottom: 0.45rem !important;
    gap: 0.75rem !important;
  }

  .site-header .brand img {
    width: clamp(150px, 38vw, 182px) !important;
    height: auto !important;
    max-height: 58px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .site-header .menu-toggle {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
  }
}

@media (max-width: 420px) {
  .site-header__inner.container,
  .site-header__inner {
    min-height: 68px !important;
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
  }

  .site-header .brand img {
    width: clamp(138px, 42vw, 162px) !important;
    max-height: 50px !important;
  }

  .site-header .menu-toggle {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
  }
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


.form-submit-status {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  color: var(--muted, #666);
  line-height: 1.5;
}

button[disabled] {
  cursor: progress;
  opacity: 0.75;
}

/* KBL critical mobile fix: remove invisible/cached anchor overlays */
@media (max-width: 768px) {
  /* The one-page anchor strip on the homepage must never become a floating layer on mobile. */
  .section--section-menu,
  .section--section-menu .section-menu,
  .section-menu.is-fixed {
    display: none !important;
    position: static !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    opacity: 1 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }

  /* Closed hamburger menu must not exist as an invisible clickable layer. */
  .site-nav__panel {
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
    transform: none !important;
  }

  .site-nav__panel.is-open {
    display: block !important;
    pointer-events: auto !important;
  }

  .site-nav__panel:not(.is-open),
  .site-nav__panel:not(.is-open) * {
    pointer-events: none !important;
  }

  .site-nav__panel.is-open,
  .site-nav__panel.is-open * {
    pointer-events: auto !important;
  }
}

/* Newsletter pás nad patičkou */
.site-newsletter-band {
  width: 100%;
  margin: 0 !important;
  padding: 18px 0;
  background: linear-gradient(135deg, #007f91 0%, #00a0b8 100%);
  color: #fff;
}

.site-newsletter-band + .site-footer,
.site-footer {
  margin-top: 0 !important;
}

.site-newsletter-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.site-newsletter-kicker {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.site-newsletter-text p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.4;
  font-weight: 700;
}

.site-newsletter-form {
  display: grid;
  gap: 7px;
}

.site-newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.site-newsletter-row input[type="email"] {
  min-width: 0;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.site-newsletter-row input[type="email"]::placeholder {
  color: #7a8288;
}

.site-newsletter-row button {
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  background: #0b1214;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.site-newsletter-row button:hover {
  background: #1d2a2e;
}

.site-newsletter-consent {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}

.site-newsletter-consent input {
  margin-top: 1px;
}

@media (max-width: 900px) {
  .site-newsletter-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-newsletter-band {
    padding: 18px 0;
  }

  .site-newsletter-row {
    grid-template-columns: 1fr;
  }

  .site-newsletter-row button {
    width: 100%;
  }
}

/* Právní stránky */
.legal-hero {
  padding: clamp(42px, 5vw, 72px) 0 clamp(22px, 3vw, 34px);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 12px 0 16px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: #515b60;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.55;
}

.legal-content {
  padding: 0 0 clamp(48px, 6vw, 76px);
}

.legal-content__inner {
  max-width: 860px;
}

.legal-updated {
  margin: 0 0 22px;
  color: #6a747a;
  font-size: 14px;
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: #364247;
  font-size: 15.5px;
  line-height: 1.62;
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-content a {
  color: #008fa3;
  font-weight: 800;
}

/* Spodní odkazy ve footeru */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom__links {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.footer-bottom__links a:hover {
  color: #fff;
}

/* Pojistka proti duplicitě starého odkazu mimo skupinu */
.footer-bottom > a[data-cookie-settings] {
  display: none !important;
}

@media (max-width: 760px) {
  .legal-hero {
    padding-top: 38px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .footer-bottom__links {
    margin-left: 0;
    width: 100%;
    gap: 12px;
  }
}

/* Pojistka proti dvojímu odkazu Nastavení cookies */
.site-footer a[data-cookie-settings] {
  display: none !important;
}

.site-footer .footer-bottom__links a[data-cookie-settings] {
  display: inline-flex !important;
}

.site-footer .footer-bottom__links a[data-cookie-settings] ~ a[data-cookie-settings] {
  display: none !important;
}

/* Zmenseni odkazu ve footeru */
.footer-bottom {
  font-size: 14px;
}

.footer-bottom > span {
  font-size: 14px;
  line-height: 1.4;
}

.footer-bottom__links {
  gap: 16px;
}

.footer-bottom__links a,
.site-footer .footer-bottom__links a,
.site-footer .footer-bottom__links a[data-cookie-settings] {
  display: inline-flex !important;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px !important;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.site-footer .footer-bottom__links a:hover,
.site-footer .footer-bottom__links a[data-cookie-settings]:hover {
  color: #fff;
}

@media (max-width: 760px) {
  .footer-bottom,
  .footer-bottom > span,
  .footer-bottom__links a,
  .site-footer .footer-bottom__links a,
  .site-footer .footer-bottom__links a[data-cookie-settings] {
    font-size: 13px !important;
  }
}

/* Kompaktní harmonika právní stránky */
.legal-hero--compact {
  padding: clamp(34px, 4vw, 58px) 0 22px;
}

.legal-hero--compact h1 {
  max-width: 760px;
  margin: 12px 0 12px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.legal-hero--compact p {
  max-width: 760px;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
}

.legal-content--accordion {
  padding: 0 0 clamp(48px, 6vw, 78px);
}

.legal-content--accordion .legal-content__inner {
  max-width: 860px;
}

.legal-content--accordion .legal-updated {
  margin: 0 0 18px;
  font-size: 13px;
  color: #6a747a;
}

.legal-accordion {
  display: grid;
  gap: 10px;
}

.legal-accordion__item {
  border: 1px solid rgba(0, 150, 170, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(0, 65, 80, 0.045);
  overflow: hidden;
}

.legal-accordion__item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 54px 18px 22px;
  color: #111;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 800;
  line-height: 1.25;
}

.legal-accordion__item summary::-webkit-details-marker {
  display: none;
}

.legal-accordion__item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 153, 173, 0.1);
  color: #008fa3;
  font-size: 20px;
  font-weight: 800;
}

.legal-accordion__item[open] summary::after {
  content: "−";
}

.legal-accordion__body {
  padding: 0 22px 20px;
}

.legal-accordion__body p,
.legal-accordion__body li {
  color: #364247;
  font-size: 15px;
  line-height: 1.6;
}

.legal-accordion__body p {
  margin: 0 0 12px;
}

.legal-accordion__body ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.legal-accordion__body a {
  color: #008fa3;
  font-weight: 800;
}

@media (max-width: 760px) {
  .legal-accordion__item summary {
    padding: 16px 48px 16px 18px;
  }

  .legal-accordion__body {
    padding: 0 18px 18px;
  }
}

/* Mobilni opravy pravni stranky a footeru */
@media (max-width: 760px) {
  .legal-page,
  .legal-page .container,
  .legal-hero,
  .legal-hero--compact,
  .legal-content,
  .legal-content--accordion,
  .legal-content__inner,
  .legal-accordion,
  .legal-accordion__item,
  .legal-accordion__item summary,
  .legal-accordion__body,
  .legal-accordion__body p,
  .legal-accordion__body li {
    text-align: left !important;
  }

  .legal-accordion__body ul {
    text-align: left !important;
    padding-left: 22px;
  }

  .legal-accordion__body li {
    padding-left: 2px;
  }

  .site-footer .footer-bottom {
    justify-content: center !important;
    text-align: center !important;
  }

  .site-footer .footer-bottom > span {
    width: 100%;
    text-align: center !important;
  }

  .site-footer .footer-bottom__links {
    width: 100%;
    justify-content: center !important;
    margin-left: 0 !important;
    text-align: center !important;
  }
}

/* Darujme widget a účty na stránce Podpora */
.support-donor-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.6rem);
  align-items: stretch;
}

.support-donor-panel {
  height: 100%;
}

.support-donor-panel--darujme {
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
  display: flex;
  align-items: stretch;
}

.darujme-support-block {
  width: 100%;
  display: grid;
  gap: 1rem;
}

.darujme-support-block__intro h3 {
  margin: 0.45rem 0 0.45rem;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.darujme-support-block__intro p {
  margin: 0;
  color: #536066;
  font-size: 0.96rem;
  line-height: 1.52;
}

.darujme-support-widget {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.support-accounts--three {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.35rem);
  margin-top: 0;
}

.support-account-row--third {
  min-height: 100%;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 1rem;
}

.support-account-row--third .support-qr-placeholder {
  justify-self: start;
}

.support-account-row--third .support-qr-image {
  width: min(138px, 100%);
}

.support-account-warning--third {
  margin-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-account-warning--third p:last-child {
  margin-bottom: 0;
}

.support-personal-floating-cta__note {
  max-width: 320px;
  margin: 10px auto 0;
  color: #536066;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 980px) {
  .support-donor-layout,
  .support-accounts--three {
    grid-template-columns: 1fr;
  }

  .support-account-row--third {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .support-account-row--third .support-qr-placeholder {
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .support-donor-panel--darujme {
    padding: 1.1rem;
  }

  .support-account-row--third {
    grid-template-columns: 1fr;
  }

  .support-account-row--third .support-qr-placeholder {
    justify-self: start;
  }

  .darujme-support-block__intro h3 {
    font-size: 1.45rem;
  }
}

/* Vyladění sekce Podpora – zvýraznění Darujme widgetu a kompaktnější bloky účtů */
.support-donor-panel--darujme {
  border: 1px solid rgba(0, 151, 178, 0.20);
  background: linear-gradient(160deg, rgba(227, 241, 244, 0.88), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 54px rgba(6, 83, 99, 0.12);
}

.darujme-support-block {
  height: 100%;
  align-content: center;
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}

.darujme-support-block__intro {
  max-width: 35rem;
}

.darujme-support-block__intro h3 {
  margin: 0.35rem 0 0.6rem;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  line-height: 1.05;
}

.darujme-support-block__intro p {
  max-width: 32ch;
  font-size: 1.02rem;
  line-height: 1.58;
}

.darujme-support-widget {
  padding: 0.55rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 249, 0.96));
  border: 1px solid rgba(0, 151, 178, 0.18);
  box-shadow: 0 18px 42px rgba(5, 92, 110, 0.12);
}

.darujme-support-widget [data-darujme-widget-token] {
  display: block;
  min-height: 430px;
}

.darujme-support-widget iframe {
  width: 100% !important;
  min-height: 430px !important;
}

.support-accounts--three {
  align-items: stretch;
}

.support-account-row--third,
.support-account-warning--third {
  min-height: 100%;
}

.support-account-row--third .support-account-row__text p {
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.32;
}

.support-qr-placeholder {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.support-qr-image,
.support-account-row--third .support-qr-image {
  width: min(176px, 100%);
  border-radius: 0;
  background: transparent;
}

.support-account-warning--third {
  padding: clamp(1.35rem, 2.2vw, 1.85rem);
  justify-content: center;
}

.support-account-warning--third strong {
  margin-bottom: 0.8rem;
  font-size: clamp(1.18rem, 1.5vw, 1.55rem);
  line-height: 1.28;
}

.support-account-warning--third p {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
  color: var(--text);
}

.support-account-warning--third p + p {
  margin-top: 0.9rem;
}

@media (max-width: 980px) {
  .darujme-support-block {
    align-content: start;
  }

  .darujme-support-widget [data-darujme-widget-token],
  .darujme-support-widget iframe {
    min-height: 390px !important;
  }
}

@media (max-width: 620px) {
  .darujme-support-block__intro h3 {
    font-size: 1.65rem;
  }

  .darujme-support-widget {
    padding: 0.35rem;
    border-radius: 22px;
  }

  .darujme-support-widget [data-darujme-widget-token],
  .darujme-support-widget iframe {
    min-height: 370px !important;
  }

  .support-qr-image,
  .support-account-row--third .support-qr-image {
    width: min(158px, 100%);
  }

  .support-account-warning--third strong {
    font-size: 1.08rem;
  }

  .support-account-warning--third p {
    font-size: 0.95rem;
  }
}

/* Finální ladění Darujme sekce */
.darujme-support-block__intro h3 {
  font-size: clamp(1.55rem, 2.05vw, 2.15rem);
  line-height: 1.08;
}

.darujme-support-block__intro p {
  max-width: 38ch;
  font-size: 0.98rem;
}

.darujme-support-widget {
  padding: 0.45rem;
  border-radius: 22px;
}

/* Nerobit uměle vysoký iframe – výšku si má řídit Darujme widget */
.darujme-support-widget [data-darujme-widget-token] {
  min-height: 0 !important;
}

.darujme-support-widget iframe {
  min-height: 0 !important;
}

/* Spodní tři bloky – centrování obsahu */
.support-account-row--third,
.support-account-warning--third {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.support-account-row--third .support-account-row__text {
  text-align: center;
  justify-items: center;
}

.support-account-row--third .support-account-row__text .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.support-account-row--third .support-qr-placeholder {
  justify-self: center;
  align-self: center;
  margin-top: 0.8rem;
}

.support-account-warning--third {
  align-items: center;
  padding: clamp(1.55rem, 2.4vw, 2.05rem);
}

.support-account-warning--third strong {
  max-width: 17ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  line-height: 1.25;
  text-align: center;
}

.support-account-warning--third p {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 980px) {
  .support-account-row--third {
    align-items: center;
  }

  .support-account-row--third .support-qr-placeholder {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .darujme-support-block__intro h3 {
    font-size: 1.45rem;
  }

  .darujme-support-block__intro p {
    font-size: 0.94rem;
  }

  .support-account-row--third,
  .support-account-warning--third,
  .support-account-row--third .support-account-row__text,
  .support-account-warning--third strong,
  .support-account-warning--third p {
    text-align: center;
  }
}
