@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-latin-ext-400-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-latin-ext-600-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-latin-ext-700-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-latin-ext-800-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  --ink: #160712;
  --ink-soft: #2a1624;
  --muted: #5a4c56;
  --line: #260917;
  --line-soft: #eadfe5;
  --pink: #d85a98;
  --pink-dark: #bb3f7c;
  --pink-soft: #fff1f8;
  --orange: #e47447;
  --orange-dark: #c85c34;
  --orange-soft: #fff3ed;
  --yellow: #ffe85a;
  --paper: #ffffff;
  --soft: #faf8f9;
  --soft-strong: #f4eef2;
  --shadow: 0 18px 48px rgba(38, 9, 23, .08);
  --max: 1360px;
  --header-max: 1680px;
  --gutter: clamp(18px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 3px solid var(--line);
  box-shadow: 0 1px 0 rgba(38, 9, 23, .05);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  width: min(100%, var(--header-max));
  min-height: 82px;
  margin: 0 auto;
  padding: 12px var(--gutter);
}

.brand {
  width: clamp(178px, 15vw, 232px);
  min-width: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-button {
  display: none;
}

.nav-backdrop {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(6px, .9vw, 14px);
  min-width: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 11px;
  color: var(--ink-soft);
  border-radius: 6px;
  font-size: clamp(13px, .98vw, 15px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1001;
  display: grid;
  gap: 3px;
  width: min(78vw, 286px);
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(38, 9, 23, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: -12px 0 auto;
  height: 12px;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav .nav-dropdown a {
  justify-content: flex-start;
  min-height: 40px;
  padding: 10px 12px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 13px;
  text-align: left;
  text-transform: none;
  white-space: normal;
}

.nav-dropdown--with-thumbs {
  width: min(84vw, 368px);
  gap: 6px;
}

.site-nav .nav-dropdown--with-thumbs a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  justify-content: initial;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 8px 10px;
}

.nav-thumb {
  width: 54px;
  height: 40px;
  object-fit: contain;
  border: 1px solid rgba(38, 9, 23, .08);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(38, 9, 23, .06);
}

.site-nav .nav-dropdown--with-thumbs a:hover .nav-thumb,
.site-nav .nav-dropdown--with-thumbs a:focus-visible .nav-thumb {
  border-color: rgba(224, 116, 70, .35);
  box-shadow: 0 10px 18px rgba(224, 116, 70, .12);
}

.site-nav .nav-dropdown a:hover,
.site-nav .nav-dropdown a:focus-visible {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.site-nav .nav-button {
  min-width: clamp(154px, 12vw, 202px);
  min-height: 50px;
  padding: 14px 20px;
  color: #fff;
  border-radius: 4px;
  font-size: clamp(14px, 1.16vw, 18px);
  box-shadow: 0 10px 22px rgba(38, 9, 23, .08);
}

.site-nav .nav-button:hover,
.site-nav .nav-button:focus-visible {
  color: #fff;
  background: var(--pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(38, 9, 23, .12);
}

.site-nav .nav-button--pink {
  background: var(--pink);
}

.site-nav .nav-button--orange {
  background: var(--orange);
}

.site-nav .nav-button--orange:hover,
.site-nav .nav-button--orange:focus-visible {
  background: var(--orange-dark);
}

.nav-toggle:focus-visible + .nav-toggle-button,
.site-nav a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.content-placeholder {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 523px);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
  min-height: 560px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 116px) var(--gutter);
  background: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.content-placeholder p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.content-placeholder img {
  width: 523px;
  height: 366px;
  object-fit: contain;
  background: #fff;
}

.content-placeholder--simple {
  grid-template-columns: minmax(0, 760px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 14px 22px;
  color: #fff;
  border: 0;
  border-radius: 4px;
  background: var(--orange);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn:hover,
.btn:focus-visible {
  color: #fff;
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(38, 9, 23, .12);
}

.btn--dark {
  background: var(--line);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background: #050105;
}

.text-link {
  color: #315a9f;
  font-weight: 800;
  text-underline-offset: 4px;
}

.home-hero,
.home-video,
.choice-section,
.home-split,
.home-icons {
  padding: 72px var(--gutter);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 523px;
  align-items: center;
  gap: 72px;
  min-height: 560px;
  max-width: var(--max);
  margin: 0 auto;
  background: #fff;
}

.home-hero__copy {
  max-width: 720px;
}

.home-hero h1,
.home-section-heading h2,
.home-band h2,
.home-split h2 {
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 780px;
  font-size: 76px;
}

.lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.45;
}

.home-hero__media {
  display: flex;
  justify-content: center;
  margin: 0;
}

.home-hero__media img {
  width: 523px;
  height: 366px;
  object-fit: contain;
  background: #fff;
}

.home-video {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--line-soft);
}

.home-section-heading {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-section-heading h2 {
  font-size: 52px;
}

.home-section-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.video-shell {
  position: relative;
  width: min(100%, 1100px);
  margin: 0 auto 24px;
  padding: clamp(18px, 3vw, 34px);
  isolation: isolate;
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: clamp(28px, 4vw, 52px) clamp(12px, 4vw, 64px);
  z-index: -1;
  border: 2px solid rgba(255, 227, 51, .72);
  border-radius: 10px;
  background: #fff8b8;
  transform: rotate(-1deg);
}

.video-shell::after {
  content: "";
  position: absolute;
  right: clamp(8px, 4vw, 56px);
  bottom: clamp(4px, 1.8vw, 20px);
  z-index: -1;
  width: clamp(130px, 18vw, 230px);
  height: clamp(42px, 6vw, 76px);
  border-radius: 8px;
  background: var(--pink);
  transform: rotate(2deg);
  opacity: .9;
}

.video-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border: clamp(8px, 1.6vw, 14px) solid #fff;
  border-radius: 10px;
  background: var(--line);
  box-shadow: 0 22px 58px rgba(38, 9, 23, .16);
  overflow: hidden;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.video-frame.is-playing .video-play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-play-overlay__poster,
.video-play-overlay__scrim {
  position: absolute;
  inset: 0;
}

.video-play-overlay__poster {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 250, 225, .28)),
    url("../img/home/02-prawo-ktore-dotyczy-ciebie-840d565d61.jpg") center center / contain no-repeat,
    #fff;
  transform: scale(1.01);
  transition: transform .28s ease, filter .28s ease;
}

.video-play-overlay__scrim {
  background: rgba(255, 255, 255, .22);
}

.video-play-overlay__button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(76px, 9vw, 108px);
  height: clamp(76px, 9vw, 108px);
  border: 8px solid #fff;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 22px 48px rgba(38, 9, 23, .26);
  transition: background-color .18s ease, transform .2s ease, box-shadow .2s ease;
}

.video-play-overlay__button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: clamp(14px, 1.8vw, 20px) solid transparent;
  border-bottom: clamp(14px, 1.8vw, 20px) solid transparent;
  border-left: clamp(22px, 2.5vw, 32px) solid #fff;
}

.video-play-overlay__label {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vw, 56px);
  z-index: 1;
  padding: 12px 18px;
  color: #fff;
  border-radius: 4px;
  background: rgba(38, 9, 23, .86);
  box-shadow: 0 14px 28px rgba(38, 9, 23, .18);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 800;
  line-height: 1;
  transform: translateX(-50%);
}

.video-play-overlay:hover .video-play-overlay__poster,
.video-play-overlay:focus-visible .video-play-overlay__poster {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.video-play-overlay:hover .video-play-overlay__button,
.video-play-overlay:focus-visible .video-play-overlay__button {
  background: var(--orange-dark);
  transform: scale(1.04);
  box-shadow: 0 26px 54px rgba(38, 9, 23, .32);
}

.video-play-overlay:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -8px;
}

.video-decoration {
  position: absolute;
  z-index: 1;
  width: clamp(86px, 12vw, 156px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 14px 20px rgba(38, 9, 23, .08));
}

.video-decoration--left {
  left: max(-26px, calc(50% - 642px));
  bottom: clamp(8px, 2.8vw, 40px);
  width: clamp(102px, 14vw, 180px);
  transform: rotate(-12deg);
}

.video-decoration--right {
  right: max(-24px, calc(50% - 628px));
  top: clamp(-8px, .5vw, 8px);
  width: clamp(104px, 14vw, 184px);
  transform: rotate(11deg);
}

.video-decoration--top-left {
  left: max(6px, calc(50% - 568px));
  top: clamp(-4px, 1vw, 12px);
  width: clamp(70px, 9vw, 112px);
  transform: rotate(8deg);
}

.video-decoration--bottom-right {
  right: max(8px, calc(50% - 540px));
  bottom: clamp(2px, 1.2vw, 16px);
  width: clamp(72px, 9vw, 118px);
  transform: rotate(-8deg);
}

.video-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  min-height: 54px;
  min-width: min(100%, 284px);
  margin: 0 auto;
  padding: 14px 22px;
  color: #fff;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(224, 116, 70, .22);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.video-link-button:hover,
.video-link-button:focus-visible {
  color: #fff;
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(224, 116, 70, .28);
}

.video-link-button__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 22px;
  border-radius: 7px;
  background: #fff;
}

.video-link-button__icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--orange);
}

.home-band {
  display: grid;
  grid-template-columns:
    minmax(var(--gutter), 1fr)
    minmax(260px, 500px)
    minmax(320px, 680px)
    minmax(var(--gutter), 1fr);
  align-items: center;
  column-gap: clamp(40px, 5vw, 80px);
  padding: 72px 0;
}

.home-band h2 {
  grid-column: 2;
  font-size: 50px;
}

.home-band > div {
  grid-column: 3;
}

.home-band p {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: 24px;
  line-height: 1.3;
}

.home-band--yellow {
  background: var(--yellow);
}

.home-band--pink {
  background: #e8a9c6;
}

.choice-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 76px;
  max-width: 980px;
  margin: 0 auto;
}

.choice-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 42px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 22px 44px rgba(38, 9, 23, .08);
}

.choice-card h3 {
  margin: 0 0 28px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
}

.choice-card ul {
  margin: 0 0 36px;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.82;
}

.choice-card li::marker {
  color: currentColor;
}

.choice-card span {
  display: block;
  margin-top: auto;
  padding: 16px 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.choice-card--pink {
  border: 4px solid var(--pink);
}

.choice-card--pink span {
  background: var(--pink);
}

.choice-card--orange {
  border: 4px solid var(--orange);
}

.choice-card--orange span {
  background: var(--orange);
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr);
  align-items: center;
  gap: 90px;
  max-width: var(--max);
  margin: 0 auto;
  background: #fff;
}

.home-split--reverse {
  grid-template-columns: minmax(0, .78fr) minmax(280px, .7fr);
}

.home-split--reverse img {
  order: 2;
}

.home-split--reverse > div {
  order: 1;
}

.home-split h2 {
  max-width: 760px;
  font-size: 48px;
}

.home-split p {
  max-width: 660px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.62;
}

.home-split img {
  width: min(100%, 480px);
  justify-self: center;
  object-fit: contain;
}

.home-icons {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  background: #fff;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  margin: 40px 0 42px;
}

.home-feature {
  position: relative;
}

.home-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 96px;
  right: -38px;
  width: 56px;
  height: 2px;
  background: #d4d0d2;
}

.home-feature img {
  width: 212px;
  height: 212px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.home-feature h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.home-feature p {
  max-width: 330px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.about-hero {
  padding: clamp(54px, 7vw, 92px) var(--gutter) clamp(36px, 5vw, 58px);
  text-align: center;
  background: #fff;
}

.about-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-hero h1 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 58px);
}

.about-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.46;
}

.about-intro,
.about-split,
.about-reasons,
.about-pillars {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(62px, 7vw, 96px) var(--gutter);
  background: #fff;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(360px, .96fr);
  align-items: center;
  gap: clamp(52px, 8vw, 116px);
  padding-top: 28px;
}

.about-intro__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.about-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 340px);
  aspect-ratio: 1 / .8;
}

.about-mark::before,
.about-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.about-mark::before {
  width: 86px;
  height: 86px;
  left: 18px;
  bottom: 42px;
  background: var(--yellow);
}

.about-mark::after {
  width: 32px;
  height: 32px;
  right: 38px;
  top: 30px;
  background: var(--orange);
  box-shadow: -190px 106px 0 #1595cc, -76px -34px 0 var(--pink);
}

.about-mark__circle {
  position: absolute;
  inset: auto;
  width: 178px;
  height: 178px;
  border: 12px solid #168dca;
  border-radius: 50%;
}

.about-mark__scale {
  position: relative;
  z-index: 1;
  color: #168dca;
  font-size: 144px;
  font-weight: 800;
  line-height: 1;
}

.about-logo {
  position: absolute;
  height: auto;
}

.about-logo--sector {
  left: 24%;
  bottom: 54px;
  width: 152px;
}

.about-logo--foundation {
  left: 18%;
  bottom: 0;
  width: min(72%, 314px);
}

.about-intro__copy h2,
.about-split h2,
.about-reason h3,
.pillar-card h3 {
  margin: 0;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-intro__copy h2 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 38px);
}

.about-intro__copy a {
  color: #315a9f;
  text-underline-offset: 4px;
}

.about-intro__copy p,
.about-split p,
.about-split li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.about-intro__copy p {
  max-width: 600px;
  margin: 0 0 20px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(52px, 9vw, 124px);
}

.about-split h2 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(30px, 3vw, 42px);
}

.about-split p {
  max-width: 520px;
  margin: 0 0 16px;
}

.about-split ul {
  margin: 0 0 28px;
  padding-left: 24px;
}

.about-split li::marker {
  color: var(--orange);
}

.about-split img {
  width: min(100%, 482px);
  height: auto;
  justify-self: center;
}

.about-reasons {
  text-align: center;
}

.about-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 88px);
  margin-top: clamp(42px, 6vw, 72px);
}

.about-reason img {
  width: 144px;
  height: 102px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.about-reason h3 {
  max-width: 280px;
  margin: 0 auto 12px;
  font-size: 21px;
}

.about-reason p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.about-pillars {
  position: relative;
  overflow: hidden;
  padding-top: clamp(58px, 7vw, 86px);
}

.pillar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: clamp(34px, 6vw, 72px);
  max-width: 820px;
  margin: 0 auto;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  min-height: 438px;
  padding: clamp(28px, 4vw, 42px);
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 22px 44px rgba(38, 9, 23, .08);
}

.pillar-card--pink {
  border: 4px solid var(--pink);
}

.pillar-card--orange {
  border: 4px solid var(--orange);
}

.pillar-card h3 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 38px);
}

.pillar-card p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 800;
}

.pillar-card ul {
  margin: 0 0 32px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.pillar-card li::marker {
  color: currentColor;
}

.pillar-card span {
  display: block;
  margin-top: auto;
  padding: 15px 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.pillar-card--pink span {
  background: var(--pink);
}

.pillar-card--orange span {
  background: var(--orange);
}

.pillar-decor {
  position: absolute;
  z-index: 0;
  height: auto;
  pointer-events: none;
}

.pillar-decor--left {
  left: max(22px, calc(50% - 570px));
  bottom: 112px;
  width: 156px;
}

.pillar-decor--right {
  right: max(22px, calc(50% - 600px));
  top: 118px;
  width: 180px;
}

.help-hero {
  padding: clamp(54px, 7vw, 86px) var(--gutter) clamp(48px, 6vw, 76px);
  text-align: center;
  background: #fff;
}

.help-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.help-hero h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 58px);
}

.help-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.48;
}

.help-section {
  display: grid;
  grid-template-columns: minmax(280px, .84fr) minmax(360px, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 118px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(62px, 7vw, 94px) var(--gutter);
  background: #fff;
}

.help-section__title {
  position: sticky;
  top: 120px;
}

.help-section__title h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.siren-illustration {
  display: grid;
  place-items: center;
  width: min(100%, 300px);
  aspect-ratio: 1 / .9;
  margin: clamp(34px, 6vw, 70px) auto 0;
  color: var(--pink);
}

.siren-illustration span {
  position: relative;
  display: block;
  width: 128px;
  height: 128px;
  border: 9px solid currentColor;
  border-bottom-width: 16px;
  border-radius: 62px 62px 14px 14px;
}

.siren-illustration span::before {
  content: "!";
  position: absolute;
  inset: 18px 0 auto;
  color: currentColor;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.siren-illustration span::after {
  content: "";
  position: absolute;
  left: -28px;
  right: -28px;
  bottom: -32px;
  height: 18px;
  border: 8px solid currentColor;
  border-top-width: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 -168px 0 -5px currentColor, -72px -88px 0 -5px currentColor, 72px -88px 0 -5px currentColor;
}

.help-list {
  display: grid;
  gap: 26px;
}

.help-item h3 {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.24;
}

.help-item p,
.help-item li {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.36;
}

.help-item p + p {
  margin-top: 18px;
}

.help-item ul {
  margin: 0;
  padding-left: 24px;
}

.help-item li + li {
  margin-top: 8px;
}

.help-item li::marker {
  color: var(--ink);
}

.help-callout {
  padding: clamp(58px, 7vw, 92px) var(--gutter);
  background: #e8a9c6;
  text-align: center;
}

.help-callout p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.28;
}

.contact-hero {
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(40px, 5vw, 62px);
  text-align: center;
  background: #fff;
}

.contact-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.contact-hero h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(42px, 5vw, 62px);
}

.contact-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.36;
}

.contact-main,
.contact-collab {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(50px, 6vw, 82px) var(--gutter);
  background: #fff;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(360px, 1fr);
  gap: clamp(52px, 9vw, 132px);
}

.contact-details {
  display: grid;
  gap: 30px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-detail h2,
.contact-reasons h2,
.contact-collab h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.contact-detail h2 {
  margin-bottom: 6px;
  font-size: clamp(24px, 2.3vw, 34px);
}

.contact-detail a,
.contact-detail p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  text-decoration: none;
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-reasons h2 {
  margin-bottom: 26px;
  font-size: clamp(30px, 3.2vw, 42px);
}

.contact-reasons ul,
.contact-collab ul {
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.58;
}

.contact-reasons li + li,
.contact-collab li + li {
  margin-top: 11px;
}

.contact-reasons li::marker,
.contact-collab li::marker {
  color: var(--ink);
}

.contact-collab {
  display: grid;
  grid-template-columns: minmax(360px, .94fr) minmax(320px, .82fr);
  align-items: center;
  gap: clamp(52px, 9vw, 120px);
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: clamp(72px, 8vw, 110px);
}

.contact-collab h2 {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: clamp(38px, 4.4vw, 58px);
}

.contact-collab p {
  max-width: 640px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
}

.contact-collab ul {
  max-width: 680px;
  margin-bottom: 36px;
}

.contact-collab img {
  width: min(100%, 482px);
  height: auto;
  justify-self: center;
}

.team-hero {
  padding: clamp(54px, 7vw, 84px) var(--gutter) clamp(36px, 5vw, 56px);
  text-align: center;
  background: #fff;
}

.team-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.team-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(42px, 5vw, 60px);
}

.team-hero p {
  max-width: 880px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 1.85vw, 24px);
  line-height: 1.36;
}

.team-about {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(380px, .98fr);
  align-items: center;
  gap: clamp(52px, 9vw, 128px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 94px) var(--gutter) clamp(76px, 8vw, 116px);
  background: #fff;
}

.team-about__visual {
  display: grid;
  justify-items: center;
  gap: clamp(72px, 9vw, 118px);
}

.team-logo {
  width: min(100%, 379px);
  height: auto;
}

.team-symbol {
  width: min(100%, 382px);
  height: auto;
}

.team-about__copy {
  display: grid;
  gap: clamp(32px, 5vw, 50px);
}

.team-about__copy h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.team-about__copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.58;
}

.team-about__copy p + p {
  margin-top: 24px;
}

.learn-hero {
  padding: clamp(54px, 7vw, 82px) var(--gutter) clamp(42px, 5vw, 64px);
  text-align: center;
  background: #fff;
}

.learn-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.learn-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(42px, 5vw, 60px);
}

.learn-hero p {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.42;
}

.learn-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(62px, 7vw, 96px) clamp(42px, 7vw, 92px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 58px) var(--gutter) clamp(86px, 9vw, 126px);
  background: #fff;
}

.learn-topic {
  display: grid;
  justify-items: center;
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.learn-topic:hover,
.learn-topic:focus-visible {
  color: var(--ink-soft);
  transform: translateY(-3px);
}

.learn-topic:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 8px;
}

.learn-topic img {
  width: 166px;
  height: 117px;
  margin-bottom: 24px;
  object-fit: contain;
}

.learn-topic h2 {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.learn-topic p {
  max-width: 340px;
  margin: 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
}

.act-hero {
  padding: clamp(54px, 7vw, 82px) var(--gutter) clamp(42px, 5vw, 64px);
  text-align: center;
  background: #fff;
}

.act-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.act-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(42px, 5vw, 60px);
}

.act-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.42;
}

.act-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(62px, 7vw, 96px) clamp(42px, 7vw, 92px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px) var(--gutter) clamp(86px, 9vw, 126px);
  background: #fff;
}

.act-topic {
  display: grid;
  justify-items: center;
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.act-topic:hover,
.act-topic:focus-visible {
  color: var(--ink-soft);
  transform: translateY(-3px);
}

.act-topic:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 8px;
}

.act-topic img {
  width: 166px;
  height: 117px;
  margin-bottom: 24px;
  object-fit: contain;
}

.act-topic h2 {
  max-width: 380px;
  margin: 0 0 16px;
  color: var(--orange);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.act-topic p {
  max-width: 350px;
  margin: 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
}

.rights-hero {
  padding: clamp(54px, 7vw, 82px) var(--gutter) clamp(42px, 5vw, 64px);
  text-align: center;
  background: #fff;
}

.rights-hero__inner {
  max-width: 940px;
  margin: 0 auto;
}

.rights-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(42px, 5vw, 60px);
}

.rights-hero p {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.42;
}

.rights-case {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(390px, 1fr);
  gap: clamp(54px, 8vw, 116px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px) var(--gutter) clamp(84px, 9vw, 128px);
  background: #fff;
}

.rights-case__visual {
  display: grid;
  align-content: start;
  gap: clamp(74px, 9vw, 122px);
}

.rights-things {
  position: relative;
  min-height: 370px;
}

.rights-thing {
  position: absolute;
  width: min(45%, 220px);
  height: auto;
}

.rights-thing--laptop {
  left: 0;
  top: 12px;
}

.rights-thing--bike {
  right: 0;
  top: 0;
}

.rights-thing--pad {
  left: 25%;
  top: 178px;
  width: min(48%, 236px);
}

.rights-person {
  width: min(100%, 467px);
  height: auto;
  justify-self: center;
}

.rights-case__content {
  display: grid;
  align-content: start;
  gap: clamp(38px, 5vw, 58px);
}

.rights-block h2 {
  margin: 0 0 34px;
  font-size: clamp(31px, 3.4vw, 43px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.rights-block h3,
.rights-action h3,
.rights-legal h3 {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 800;
  line-height: 1.3;
}

.rights-block p,
.rights-action p,
.rights-legal p,
.rights-study p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.5;
}

.study-label {
  position: relative;
  display: inline-block;
  margin: 0 0 20px !important;
  color: var(--pink) !important;
  font-size: clamp(44px, 5vw, 62px) !important;
  font-weight: 800;
  line-height: .82 !important;
  text-transform: uppercase;
}

.study-label span {
  display: block;
}

.study-label::after {
  content: "*";
  position: absolute;
  right: -34px;
  bottom: -5px;
  color: var(--yellow);
}

.rights-action {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.rights-action img {
  width: min(100%, 230px);
  height: auto;
}

.rights-legal {
  margin-top: -18px;
}

.school-hero {
  padding: clamp(54px, 7vw, 82px) var(--gutter) clamp(36px, 4vw, 54px);
  text-align: center;
  background: #fff;
}

.school-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.school-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(42px, 5vw, 60px);
}

.school-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.42;
}

.school-case {
  display: grid;
  grid-template-columns: minmax(340px, .88fr) minmax(420px, 1fr);
  gap: clamp(58px, 8vw, 120px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px) var(--gutter) clamp(82px, 9vw, 126px);
  background: #fff;
}

.school-case__visual {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: clamp(74px, 9vw, 118px);
  padding-top: clamp(8px, 2vw, 24px);
}

.school-rest {
  width: min(100%, 500px);
  height: auto;
}

.school-search {
  width: min(82%, 380px);
  height: auto;
}

.school-case__content {
  display: grid;
  align-content: start;
  gap: clamp(36px, 4.5vw, 54px);
}

.school-block h2 {
  max-width: 560px;
  margin: 0 0 6px;
  font-size: clamp(32px, 3.7vw, 48px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.school-subtitle {
  margin: 0 0 34px !important;
  color: var(--orange) !important;
  font-size: clamp(20px, 1.9vw, 26px) !important;
  font-weight: 800;
  line-height: 1.25 !important;
}

.school-block h3 {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 800;
  line-height: 1.3;
}

.school-block p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.52;
}

.school-calendar {
  width: min(62%, 280px);
  height: auto;
  margin: -10px 0 -6px auto;
}

.school-block--summary {
  padding-top: 4px;
}

.article-hero {
  padding: clamp(54px, 7vw, 82px) var(--gutter) clamp(36px, 4vw, 54px);
  text-align: center;
  background: #fff;
}

.article-hero__inner {
  max-width: 980px;
  margin: 0 auto;
}

.article-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(42px, 5vw, 58px);
}

.article-hero p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.42;
}

.article-page {
  display: grid;
  grid-template-columns: minmax(340px, .88fr) minmax(430px, 1fr);
  gap: clamp(58px, 8vw, 116px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px) var(--gutter) clamp(92px, 10vw, 150px);
  background: #fff;
}

.article-page__visual {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: clamp(76px, 10vw, 140px);
  padding-top: clamp(8px, 2vw, 28px);
}

.article-page__content {
  display: grid;
  align-content: start;
  gap: clamp(38px, 5vw, 64px);
}

.article-image {
  width: min(100%, 480px);
  height: auto;
}

.article-page--family .article-image--secondary,
.article-page--relations .article-image--secondary {
  width: min(100%, 430px);
}

.article-page--consumer .article-page__visual {
  align-content: center;
}

.article-page--consumer .article-image--primary {
  width: min(100%, 360px);
}

.article-page--legal-problem .article-page__visual {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  align-items: center;
  gap: clamp(34px, 5vw, 58px);
}

.article-page--legal-problem .article-image {
  width: min(100%, 185px);
}

.article-page--legal-problem .article-image--quinary {
  grid-column: 1 / -1;
  width: min(70%, 210px);
}

.article-block h2 {
  max-width: 620px;
  margin: 0 0 36px;
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.article-block h3 {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 800;
  line-height: 1.3;
}

.article-block p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.5;
}

.article-study {
  display: grid;
  gap: 16px;
}

.article-study img {
  width: min(100%, 250px);
  height: auto;
}

.article-block--with-icon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: end;
  gap: 28px;
}

.article-block--with-icon img {
  width: min(100%, 150px);
  height: auto;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) minmax(230px, .9fr) minmax(270px, 1fr) minmax(190px, .68fr);
  align-items: start;
  gap: clamp(28px, 4vw, 54px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 68px) var(--gutter) 30px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-brand img {
  width: clamp(178px, 15vw, 224px);
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.footer-contact a,
.footer-contact p {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
  text-decoration: none;
}

.footer-contact a,
.footer-shortcuts a {
  transition: color .18s ease, transform .18s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-shortcuts a:hover,
.footer-shortcuts a:focus-visible {
  color: var(--orange-dark);
}

.footer-contact a:hover,
.footer-shortcuts a:hover {
  transform: translateX(2px);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(38, 9, 23, .05);
}

.icon img {
  width: 21px;
  height: 21px;
}

.footer-shortcuts a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin: 0 0 10px;
  padding: 10px 12px;
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
}

.footer-shortcuts a:hover,
.footer-shortcuts a:focus-visible {
  border-color: var(--line-soft);
  background: var(--soft);
}

.footer-shortcuts strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-shortcuts small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-shortcuts img {
  width: 18px;
  height: 18px;
  opacity: .7;
}

.footer-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding-top: 0;
  text-align: center;
}

.footer-partner h2 {
  margin-bottom: 0;
}

.footer-partner a {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-partner img {
  width: min(100%, 170px);
  height: auto;
}

.copyright {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  padding-top: 22px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line-soft);
}

.copyright a {
  color: #315a9f;
  text-underline-offset: 3px;
}

@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 76px;
    padding-block: 12px;
  }

  .brand {
    width: clamp(168px, 30vw, 218px);
  }

  .nav-toggle-button {
    position: relative;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(38, 9, 23, .08);
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  }

  .nav-toggle-button:hover {
    border-color: rgba(38, 9, 23, .24);
    box-shadow: 0 14px 30px rgba(38, 9, 23, .12);
  }

  .nav-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    transition: opacity .18s ease, transform .22s ease;
  }

  .nav-icon--close {
    opacity: 0;
    transform: rotate(-90deg) scale(.82);
  }

  .nav-toggle:checked + .nav-toggle-button {
    border-color: rgba(38, 9, 23, .18);
    box-shadow: 0 14px 34px rgba(38, 9, 23, .16);
  }

  .nav-toggle:checked + .nav-toggle-button .nav-icon--menu {
    opacity: 0;
    transform: rotate(90deg) scale(.82);
  }

  .nav-toggle:checked + .nav-toggle-button .nav-icon--close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    width: min(390px, calc(100vw - 28px));
    height: 100dvh;
    min-width: 0;
    margin: 0;
    padding: 104px 22px 28px;
    border: 1px solid var(--line-soft);
    border-width: 0 0 0 1px;
    border-radius: 0;
    background: #fff;
    box-shadow: -24px 0 60px rgba(38, 9, 23, .16);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(104%);
    transition: transform .28s ease, opacity .22s ease, visibility .22s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: block;
    background: rgba(22, 7, 18, .28);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity .24s ease, visibility .24s ease;
  }

  body:has(.nav-toggle:checked) .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    min-height: 48px;
    padding: 12px;
    background: var(--soft);
    font-size: 14px;
    white-space: normal;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--orange-soft);
  }

  .site-nav .nav-button {
    min-width: 0;
    min-height: 52px;
    font-size: 16px;
  }

  .site-nav .nav-button--pink {
    background: var(--pink);
  }

  .site-nav .nav-button--orange {
    background: var(--orange);
  }

  .nav-group {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .nav-group > .nav-button {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    width: 100%;
    padding: 0 0 8px 12px;
    border: 0;
    border-left: 2px solid var(--line-soft);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .site-nav .nav-dropdown a {
    min-height: 38px;
    padding: 9px 10px;
    background: transparent;
    font-size: 13px;
  }

  .nav-dropdown--with-thumbs {
    gap: 8px;
  }

  .site-nav .nav-dropdown--with-thumbs a {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 54px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line-soft);
  }

  .nav-thumb {
    width: 48px;
    height: 36px;
  }

  .content-placeholder {
    grid-template-columns: 1fr;
  }

  .content-placeholder img {
    width: min(100%, 523px);
    height: auto;
  }

  .home-hero,
  .home-split,
  .home-split--reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero h1 {
    font-size: 62px;
  }

  .home-split--reverse img,
  .home-split--reverse > div {
    order: initial;
  }

  .home-band {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .choice-grid {
    gap: 28px;
  }

  .home-feature-grid {
    gap: 28px;
  }

  .home-feature:not(:last-child)::after {
    display: none;
  }

  .about-intro,
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-intro {
    padding-top: 44px;
  }

  .about-intro__visual {
    min-height: 350px;
    order: 2;
  }

  .about-intro__copy {
    order: 1;
  }

  .about-split img {
    width: min(100%, 430px);
  }

  .pillar-decor {
    opacity: .32;
  }

  .help-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .help-section__title {
    position: static;
  }

  .siren-illustration {
    margin-inline: 0;
  }

  .contact-main,
  .contact-collab {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-collab img {
    width: min(100%, 430px);
  }

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

  .team-about__visual {
    gap: 60px;
    order: 1;
  }

  .team-about__copy {
    order: 2;
  }

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

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

  .rights-case {
    grid-template-columns: 1fr;
  }

  .rights-case__visual {
    gap: 54px;
  }

  .rights-things {
    max-width: 520px;
    min-height: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .rights-action {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .school-case {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .school-case__visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 34px;
    padding-top: 0;
  }

  .school-rest,
  .school-search {
    width: min(100%, 340px);
  }

  .school-calendar {
    margin-left: 0;
  }

  .article-page {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .article-page__visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 34px;
    padding-top: 0;
  }

  .article-page--internet .article-page__visual,
  .article-page--consumer .article-page__visual {
    grid-template-columns: 1fr;
  }

  .article-image,
  .article-page--family .article-image--secondary,
  .article-page--relations .article-image--secondary {
    width: min(100%, 340px);
  }

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

  .footer-partner {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 7vw, 72px);
    margin-top: 4px;
    padding: 18px 0 0;
    border-top: 1px solid var(--line-soft);
  }

  .footer-partner img {
    width: 164px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    padding-inline: 16px;
  }

  .brand {
    width: min(178px, calc(100vw - 96px));
  }

  .site-nav {
    width: min(342px, calc(100vw - 24px));
    padding: 96px 16px 24px;
  }

  .site-nav a,
  .site-nav .nav-button {
    width: 100%;
  }

  h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .home-hero,
  .home-video,
  .choice-section,
  .home-split,
  .home-icons {
    padding: 48px 18px;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .home-hero__media img {
    width: min(100%, 523px);
    height: auto;
  }

  .home-section-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .home-section-heading h2 {
    font-size: 34px;
  }

  .home-section-heading p {
    margin: 0;
    font-size: 16px;
  }

  .video-frame {
    box-shadow: 0 10px 28px rgba(38, 9, 23, .12);
  }

  .video-play-overlay__poster {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 250, 225, .32)),
      url("../img/home/02-prawo-ktore-dotyczy-ciebie-840d565d61.jpg") center center / contain no-repeat,
      #fff;
  }

  .video-play-overlay__label {
    bottom: 18px;
  }

  .video-shell {
    padding: 12px 0 18px;
  }

  .video-shell::before {
    inset: 22px 6px 8px;
    border-width: 1px;
  }

  .video-shell::after,
  .video-decoration {
    display: none;
  }

  .video-link-button {
    display: flex;
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .home-band {
    grid-template-columns: 1fr;
    padding: 46px 18px;
  }

  .home-band h2,
  .home-band > div {
    grid-column: auto;
  }

  .home-band h2 {
    font-size: 36px;
  }

  .home-band p {
    font-size: 18px;
  }

  .choice-grid,
  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: auto;
    padding: 28px;
  }

  .choice-card h3 {
    font-size: 30px;
  }

  .choice-card ul {
    font-size: 16px;
    line-height: 1.65;
  }

  .home-split h2 {
    font-size: 34px;
  }

  .home-split p {
    font-size: 17px;
  }

  .home-feature-grid {
    margin-top: 28px;
  }

  .home-feature img {
    width: 170px;
    height: 170px;
  }

  .home-feature h3 {
    font-size: 24px;
  }

  .about-hero {
    padding: 44px 18px 30px;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-intro,
  .about-split,
  .about-reasons,
  .about-pillars {
    padding: 46px 18px;
  }

  .about-intro__visual {
    min-height: 268px;
  }

  .about-mark {
    width: min(100%, 254px);
  }

  .about-mark__circle {
    width: 128px;
    height: 128px;
    border-width: 9px;
  }

  .about-mark__scale {
    font-size: 102px;
  }

  .about-logo--sector {
    left: 16%;
    bottom: 48px;
    width: 112px;
  }

  .about-logo--foundation {
    left: 13%;
    width: min(76%, 260px);
  }

  .about-intro__copy h2,
  .about-split h2 {
    font-size: 28px;
  }

  .about-intro__copy p,
  .about-split p,
  .about-split li {
    font-size: 16px;
  }

  .about-reason-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .about-reason-grid {
    gap: 42px;
  }

  .about-reason img {
    width: 126px;
    height: 92px;
  }

  .pillar-card {
    min-height: auto;
    padding: 28px;
  }

  .pillar-card h3 {
    font-size: 28px;
  }

  .pillar-card ul {
    font-size: 15px;
  }

  .pillar-decor {
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
  }

  .help-hero {
    padding: 42px 18px 34px;
  }

  .help-hero h1 {
    font-size: 36px;
  }

  .help-hero p {
    font-size: 16px;
  }

  .help-section {
    padding: 42px 18px;
    text-align: center;
  }

  .help-section__title h2 {
    max-width: none;
    font-size: 20px;
  }

  .siren-illustration {
    width: 190px;
    margin: 30px auto 0;
  }

  .siren-illustration span {
    width: 90px;
    height: 90px;
    border-width: 6px;
    border-bottom-width: 12px;
    border-radius: 44px 44px 10px 10px;
  }

  .siren-illustration span::before {
    top: 12px;
    font-size: 52px;
  }

  .siren-illustration span::after {
    left: -22px;
    right: -22px;
    bottom: -24px;
    height: 13px;
    border-width: 6px;
    border-top-width: 0;
    box-shadow: 0 -120px 0 -4px currentColor, -50px -64px 0 -4px currentColor, 50px -64px 0 -4px currentColor;
  }

  .help-list {
    gap: 22px;
  }

  .help-item h3 {
    font-size: 17px;
  }

  .help-item p,
  .help-item li {
    font-size: 16px;
    line-height: 1.38;
  }

  .help-item ul {
    display: inline-block;
    max-width: 310px;
    text-align: left;
  }

  .help-callout {
    padding: 42px 18px;
  }

  .help-callout p {
    font-size: 25px;
  }

  .contact-hero {
    padding: 42px 18px 30px;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-hero p {
    font-size: 17px;
  }

  .contact-main,
  .contact-collab {
    padding: 42px 18px;
    text-align: center;
  }

  .contact-details {
    gap: 24px;
  }

  .contact-detail {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .contact-detail h2,
  .contact-reasons h2 {
    font-size: 24px;
  }

  .contact-detail a,
  .contact-detail p,
  .contact-reasons ul,
  .contact-collab p,
  .contact-collab ul {
    font-size: 16px;
  }

  .contact-reasons ul,
  .contact-collab ul {
    display: inline-block;
    max-width: 320px;
    padding-left: 20px;
    text-align: left;
  }

  .contact-collab {
    padding-top: 52px;
  }

  .contact-collab h2 {
    font-size: 32px;
  }

  .contact-collab img {
    width: min(100%, 310px);
  }

  .team-hero {
    padding: 42px 18px 28px;
  }

  .team-hero h1 {
    font-size: 34px;
  }

  .team-hero p {
    font-size: 18px;
  }

  .team-about {
    padding: 32px 18px 46px;
    gap: 46px;
    text-align: center;
  }

  .team-about__visual {
    gap: 38px;
  }

  .team-logo {
    width: min(100%, 310px);
  }

  .team-symbol {
    width: min(100%, 286px);
  }

  .team-about__copy {
    gap: 30px;
  }

  .team-about__copy h2 {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .team-about__copy p {
    font-size: 16px;
    line-height: 1.48;
  }

  .team-about__copy p + p {
    margin-top: 18px;
  }

  .learn-hero {
    padding: 42px 18px 28px;
  }

  .learn-hero h1 {
    font-size: 32px;
  }

  .learn-hero p {
    font-size: 16px;
  }

  .learn-topics {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 28px 18px 48px;
  }

  .learn-topic img {
    width: 142px;
    height: 100px;
    margin-bottom: 18px;
  }

  .learn-topic h2 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .learn-topic p {
    max-width: 300px;
    font-size: 16px;
    line-height: 1.5;
  }

  .learn-topic:nth-child(2) {
    order: 3;
  }

  .learn-topic:nth-child(3) {
    order: 5;
  }

  .learn-topic:nth-child(4) {
    order: 2;
  }

  .learn-topic:nth-child(5) {
    order: 4;
  }

  .learn-topic:nth-child(6) {
    order: 6;
  }

  .act-hero {
    padding: 42px 18px 28px;
  }

  .act-hero h1 {
    font-size: 32px;
  }

  .act-hero p {
    font-size: 16px;
  }

  .act-topics {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 28px 18px 48px;
  }

  .act-topic img {
    width: 142px;
    height: 100px;
    margin-bottom: 18px;
  }

  .act-topic h2 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .act-topic p {
    max-width: 310px;
    font-size: 16px;
    line-height: 1.5;
  }

  .act-topic:nth-child(2) {
    order: 3;
  }

  .act-topic:nth-child(3) {
    order: 5;
  }

  .act-topic:nth-child(4) {
    order: 2;
  }

  .act-topic:nth-child(5) {
    order: 4;
  }

  .act-topic:nth-child(6) {
    order: 6;
  }

  .rights-hero {
    padding: 42px 18px 28px;
  }

  .rights-hero h1 {
    font-size: 28px;
  }

  .rights-hero p {
    max-width: 290px;
    font-size: 16px;
  }

  .rights-case {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 18px 48px;
    text-align: center;
  }

  .rights-case__visual {
    display: contents;
  }

  .rights-things {
    display: grid;
    gap: 38px;
    min-height: 0;
  }

  .rights-thing {
    position: static;
    width: min(100%, 240px);
    margin: 0 auto;
  }

  .rights-thing--bike {
    order: 3;
  }

  .rights-thing--pad {
    order: 2;
  }

  .rights-case__content {
    display: contents;
  }

  .rights-block {
    order: 2;
  }

  .rights-block h2 {
    max-width: 300px;
    margin: 0 auto 18px;
    font-size: 21px;
  }

  .rights-block h3,
  .rights-action h3,
  .rights-legal h3 {
    font-size: 14px;
  }

  .rights-block p,
  .rights-action p,
  .rights-legal p,
  .rights-study p {
    max-width: 300px;
    margin-inline: auto;
    font-size: 13px;
    line-height: 1.42;
  }

  .rights-study {
    order: 3;
  }

  .study-label {
    margin-bottom: 18px !important;
    font-size: 42px !important;
  }

  .study-label::after {
    right: -26px;
    bottom: -4px;
  }

  .rights-action {
    order: 4;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rights-action img {
    width: min(100%, 220px);
    margin: 0 auto;
  }

  .rights-legal {
    order: 5;
    margin-top: -6px;
  }

  .rights-person {
    order: 6;
    width: min(100%, 260px);
    margin: 16px auto 0;
  }

  .school-hero {
    padding: 42px 18px 26px;
  }

  .school-hero h1 {
    font-size: 28px;
  }

  .school-hero p {
    max-width: 290px;
    font-size: 16px;
  }

  .school-case {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px 18px 52px;
    text-align: center;
  }

  .school-case__visual {
    display: contents;
  }

  .school-case__content {
    display: contents;
  }

  .school-block {
    order: 2;
  }

  .school-block h2 {
    max-width: 300px;
    margin: 0 auto 4px;
    font-size: 23px;
  }

  .school-subtitle {
    margin-bottom: 18px !important;
    font-size: 16px !important;
  }

  .school-block h3 {
    font-size: 14px;
  }

  .school-block p {
    max-width: 310px;
    margin-inline: auto;
    font-size: 13px;
    line-height: 1.44;
  }

  .school-rest {
    order: 3;
    width: min(100%, 285px);
    margin: 8px auto 0;
  }

  .school-search {
    order: 6;
    width: min(100%, 235px);
    margin: 0 auto;
  }

  .school-calendar {
    order: 7;
    width: min(100%, 230px);
    margin: 0 auto;
  }

  .school-block--summary {
    order: 8;
  }

  .article-hero {
    padding: 42px 18px 26px;
  }

  .article-hero h1 {
    font-size: 28px;
  }

  .article-hero p {
    max-width: 310px;
    font-size: 16px;
  }

  .article-page {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px 18px 52px;
    text-align: center;
  }

  .article-page__visual,
  .article-page__content {
    display: contents;
  }

  .article-block {
    order: 2;
  }

  .article-block h2 {
    max-width: 315px;
    margin: 0 auto 18px;
    font-size: 22px;
  }

  .article-block h3 {
    font-size: 14px;
  }

  .article-block p {
    max-width: 310px;
    margin-inline: auto;
    font-size: 13px;
    line-height: 1.44;
  }

  .article-image--primary {
    order: 3;
    width: min(100%, 280px);
    margin: 10px auto 0;
  }

  .article-image--secondary {
    order: 5;
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .article-image--tertiary {
    order: 7;
    width: min(100%, 240px);
    margin: 0 auto;
  }

  .article-image--quaternary {
    order: 9;
    width: min(100%, 220px);
    margin: 0 auto;
  }

  .article-image--quinary {
    order: 11;
    width: min(100%, 180px);
    margin: 0 auto;
  }

  .article-study {
    order: 4;
  }

  .article-study img {
    width: min(100%, 230px);
    margin: 0 auto;
  }

  .article-block--with-icon {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-block--with-icon img {
    width: min(100%, 140px);
    margin: 0 auto;
  }

  .article-page--consumer .article-image--primary {
    width: min(100%, 230px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-contact a,
  .footer-contact p {
    grid-template-columns: 36px minmax(0, 1fr);
    font-size: 15px;
  }

  .icon {
    width: 36px;
    height: 36px;
  }

  .footer-partner {
    justify-content: space-between;
    gap: 16px;
    text-align: left;
  }

  .footer-partner img {
    width: 150px;
  }
}
