:root {
  --ink: #171717;
  --muted: #8b8b8b;
  --paper: #ffffff;
  --blue: #66b5ce;
  --blue-soft: #acd7e5;
  --line: #969696;
  --header-height: 174px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 28px clamp(28px, 4vw, 64px);
  background: var(--paper);
}

.site-header--compact {
  min-height: 112px;
  padding-block: 12px;
  border-bottom: 1px solid #ececec;
}

.site-header--compact .brand-tower {
  height: 82px;
  transform: scale(0.82);
  transform-origin: left center;
}

.site-header--compact .brand {
  width: 142px;
}

.site-header--compact .brand-wordmark {
  font-size: 22px;
}

.site-header--compact .support-button {
  min-width: 214px;
  padding: 15px 31px;
  font-size: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 154px;
}

.brand-wordmark {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.86;
}

.brand-tower {
  position: relative;
  display: block;
  flex: 0 0 55px;
  width: 55px;
  height: 100px;
}

.brand-tower__finial {
  position: absolute;
  top: 1px;
  left: 26px;
  width: 5px;
  height: 14px;
  border-radius: 100%;
  background: #111;
}

.brand-tower__finial::before {
  position: absolute;
  top: -6px;
  left: -2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #111;
  content: "";
}

.brand-tower__roof {
  position: absolute;
  top: 12px;
  left: 5px;
  width: 0;
  height: 0;
  border-right: 23px solid transparent;
  border-bottom: 57px solid #111;
  border-left: 23px solid transparent;
}

.brand-tower__body {
  position: absolute;
  top: 64px;
  left: 7px;
  width: 43px;
  height: 29px;
  border-radius: 50% 50% 4px 4px;
  background: #111;
}

.brand-tower__body::after {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 31px;
  height: 8px;
  border-top: 4px dotted white;
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.support-button {
  min-width: 255px;
  padding: 19px 38px;
  border-radius: 9px;
  background: var(--blue);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 31px;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.support-button:hover,
.support-button:focus-visible {
  background: #7bc4da;
  transform: translateY(-2px);
}

.menu-button {
  display: grid;
  gap: 8px;
  width: 57px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: #545454;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(13px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-13px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 80;
  inset: 0;
  padding: clamp(35px, 4vw, 62px) clamp(26px, 7vw, 110px) 60px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.985);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.menu-panel--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid #bdbdbd;
}

.menu-panel__header h2 {
  margin: 0;
  font-size: clamp(27px, 3.2vw, 47px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.menu-panel__header button {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #555;
  cursor: pointer;
  font-size: 58px;
  font-weight: 200;
  line-height: 1;
}

.menu-panel__nav {
  display: grid;
}

.menu-panel__nav a {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 18px 16px;
  border-bottom: 1px solid #d0d0d0;
  font-size: clamp(27px, 3.2vw, 47px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
  transition:
    background-color 160ms ease,
    padding-left 160ms ease;
}

.menu-panel__nav a:hover,
.menu-panel__nav a:focus-visible,
.language-list button:hover,
.language-list button:focus-visible {
  padding-left: 25px;
  background: #f5f5f5;
  outline: none;
}

.language-list {
  display: grid;
}

.language-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 18px 16px;
  border: 0;
  border-bottom: 1px solid #d0d0d0;
  background: transparent;
  cursor: pointer;
  font-size: clamp(27px, 3.2vw, 47px);
  font-weight: 300;
  letter-spacing: -0.025em;
  text-align: left;
  transition:
    background-color 160ms ease,
    padding-left 160ms ease;
}

.language-list button.language-active {
  color: #111;
  font-weight: 400;
}

.flag {
  position: relative;
  display: block;
  flex: 0 0 57px;
  width: 57px;
  height: 36px;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  box-shadow: 0 1px 2px rgb(0 0 0 / 8%);
}

.flag--pl {
  background: linear-gradient(#fff 0 50%, #dc143c 50%);
}

.flag--de {
  background: linear-gradient(#191919 0 33.33%, #df0019 33.33% 66.66%, #ffcf00 66.66%);
}

.flag--gb {
  background:
    linear-gradient(33deg, transparent 43%, white 43% 48%, #c8102e 48% 52%, white 52% 57%, transparent 57%),
    linear-gradient(-33deg, transparent 43%, white 43% 48%, #c8102e 48% 52%, white 52% 57%, transparent 57%),
    linear-gradient(90deg, transparent 38%, white 38% 43%, #c8102e 43% 57%, white 57% 62%, transparent 62%),
    linear-gradient(transparent 34%, white 34% 40%, #c8102e 40% 60%, white 60% 66%, transparent 66%),
    #1c3f8f;
}

.hero {
  position: relative;
  min-height: min(72vw, 800px);
  overflow: hidden;
  background:
    center 48% / cover no-repeat url("../images/hero.jpg"),
    #173124;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.3));
}

.hero-link {
  position: absolute;
  top: 45%;
  right: 3.2%;
  display: flex;
  align-items: center;
  gap: 24px;
  color: white;
  font-size: clamp(33px, 4.3vw, 61px);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.hero-link a,
.carousel-button {
  display: grid;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.hero-link a {
  width: 78px;
  height: 78px;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-link a:hover,
.hero-link a:focus-visible {
  background: white;
  color: var(--ink);
  transform: translateX(4px);
}

.arrow-icon {
  position: relative;
  display: block;
  width: 39px;
  height: 2px;
  background: currentColor;
}

.arrow-icon::after {
  position: absolute;
  top: -8px;
  right: 1px;
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.hero-caption {
  position: absolute;
  right: clamp(22px, 4vw, 70px);
  bottom: clamp(22px, 4vw, 60px);
  display: grid;
  justify-items: end;
  color: white;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.hero:hover .hero-caption {
  opacity: 1;
  transform: translateY(0);
}

.hero-caption strong {
  font-size: 26px;
}

.discover {
  padding: clamp(95px, 11vw, 160px) 0 clamp(100px, 13vw, 190px);
  overflow: hidden;
}

.search-box {
  display: flex;
  align-items: center;
  width: min(790px, calc(100% - 48px));
  margin: 0 auto clamp(110px, 13vw, 175px);
  padding: 12px 19px 12px 38px;
  border: 5px solid var(--line);
  border-radius: 36px;
}

.search-box input {
  flex: 1;
  min-width: 0;
  padding: 14px 0;
  border: 0;
  outline: 0;
  color: #626262;
  background: transparent;
  font-size: clamp(27px, 4vw, 48px);
  font-weight: 300;
}

.search-box input::placeholder {
  color: #a2a2a2;
  opacity: 1;
}

.search-box button {
  width: 78px;
  height: 72px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 7px solid var(--line);
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  right: -19px;
  bottom: -15px;
  width: 31px;
  height: 7px;
  border-radius: 4px;
  background: var(--line);
  content: "";
  transform: rotate(48deg);
}

.carousel-shell {
  position: relative;
}

.card-track {
  display: grid;
  grid-auto-columns: min(760px, 62vw);
  grid-auto-flow: column;
  gap: clamp(42px, 6vw, 86px);
  padding: 0 18vw;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.card-track::-webkit-scrollbar {
  display: none;
}

.place-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 40px;
  background: #e8e8e8;
  scroll-snap-align: center;
}

.place-card::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.76));
  content: "";
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.place-card:hover img,
.place-card:focus-visible img {
  transform: scale(1.035);
}

.place-card__label {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  padding: 13px 17px;
  border-radius: 7px;
  background: white;
  font-size: 13px;
}

.place-card__caption {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 32px;
  left: 36px;
  display: grid;
  gap: 5px;
  color: white;
}

.place-card__caption strong {
  font-size: clamp(25px, 2.6vw, 39px);
  font-weight: 400;
}

.place-card__caption small {
  font-size: 16px;
}

.carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 82px;
  height: 82px;
  border-width: 3px;
  color: white;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(-50%) scale(1.04);
}

.carousel-button--previous {
  left: 3%;
}

.carousel-button--previous .arrow-icon {
  transform: rotate(180deg);
}

.carousel-button--next {
  right: 3%;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 50px;
  border: 2px solid #ddd;
  border-radius: 40px;
  text-align: center;
}

.empty-state strong {
  font-size: 29px;
  font-weight: 400;
}

.empty-state button {
  padding: 12px 18px;
  border: 0;
  border-bottom: 2px solid;
  background: transparent;
  cursor: pointer;
}

.support-section {
  padding: clamp(90px, 9vw, 130px) clamp(24px, 7vw, 105px)
    clamp(80px, 8vw, 120px);
  background: var(--blue-soft);
}

.stats {
  display: grid;
  gap: clamp(70px, 8vw, 110px);
  max-width: 960px;
  margin: 0 auto clamp(110px, 12vw, 175px);
  text-align: center;
}

.stats div {
  display: grid;
}

.stats strong {
  color: white;
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 300;
  line-height: 0.95;
}

.stats span {
  margin-top: 9px;
  font-size: clamp(18px, 2vw, 25px);
}

.join {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.join h2 {
  margin: 0 0 clamp(65px, 8vw, 105px);
  font-size: clamp(39px, 6.1vw, 75px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.join-button {
  width: 100%;
  min-height: 180px;
  padding: 35px;
  border: 0;
  border-radius: 38px;
  background: white;
  font-size: clamp(31px, 4vw, 47px);
  font-weight: 300;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.join-button:hover,
.join-button:focus-visible {
  box-shadow: 0 18px 50px rgba(36, 86, 102, 0.14);
  transform: translateY(-4px);
}

.join-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 300ms ease,
    opacity 300ms ease,
    padding 300ms ease;
}

.join-panel--open {
  max-height: 260px;
  padding: 36px 20px 0;
  opacity: 1;
}

.join-panel p {
  max-width: 680px;
  margin: 0 auto 18px;
  font-size: 19px;
  line-height: 1.5;
}

.join-panel a {
  border-bottom: 2px solid;
  font-size: 20px;
  font-weight: 700;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(45px, 8vw, 120px);
  padding: clamp(45px, 6vw, 78px) clamp(30px, 4vw, 64px) 105px;
  background: white;
}

.footer-column h2 {
  margin: 0 0 4px;
  font-size: clamp(32px, 3.2vw, 49px);
  font-weight: 300;
}

.footer-column p {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.1vw, 31px);
  line-height: 1.12;
}

.footer-column strong {
  font-weight: 700;
}

.footer-column span,
.footer-column a {
  color: #777;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 35px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 10px;
  color: white;
  font-size: 49px;
  font-weight: 700;
}

.socials a:first-child {
  background: #4167a8;
  align-items: end;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

.socials a:nth-child(2) {
  background: #f32d39;
}

.socials a:last-child {
  background: linear-gradient(135deg, #6a4acb, #f03084, #ff9b3d);
  font-size: 50px;
  font-weight: 400;
}

.youtube-play {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid white;
}

.footer-note {
  position: absolute;
  right: 32px;
  bottom: 22px;
  margin: 0;
  color: #a0a0a0;
  font-size: 12px;
}

.detail-page {
  padding-bottom: 180px;
}

.detail-intro {
  position: relative;
  padding: clamp(75px, 9vw, 130px) 24px clamp(85px, 10vw, 140px);
  text-align: center;
}

.detail-intro h1 {
  margin: 0 0 clamp(55px, 7vw, 88px);
  font-size: clamp(49px, 6.3vw, 80px);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.detail-intro p {
  margin: 0;
  color: #858585;
  font-size: clamp(35px, 4.6vw, 58px);
  font-weight: 300;
  line-height: 1.08;
}

.detail-back {
  position: absolute;
  top: 35px;
  left: clamp(24px, 4vw, 64px);
  border-bottom: 1px solid;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.detail-figure {
  margin: 0 0 clamp(260px, 45vw, 650px);
}

.detail-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.detail-figure figcaption {
  padding: 14px 16px;
  color: #989898;
  font-size: clamp(15px, 2vw, 25px);
}

.detail-copy {
  width: min(830px, calc(100% - 48px));
  margin: 0 auto clamp(130px, 18vw, 250px);
}

.detail-kicker {
  margin-bottom: 18px !important;
  color: var(--blue) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
}

.detail-copy h2 {
  max-width: 740px;
  margin: 0 0 35px;
  font-size: clamp(42px, 5.5vw, 69px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.detail-copy p {
  color: #656565;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
}

.detail-figure--second {
  margin-bottom: 150px;
}

.detail-cta {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.detail-cta p {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
}

.detail-cta a {
  display: inline-block;
  margin-top: 22px;
  padding: 22px 38px;
  border-radius: 9px;
  background: var(--blue);
  font-size: 20px;
}

.editorial-page {
  padding-bottom: clamp(80px, 9vw, 140px);
}

.editorial-intro {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(500px, 53vw, 760px);
  padding: clamp(115px, 12vw, 180px) 28px;
  text-align: center;
}

.editorial-intro h1 {
  align-self: end;
  max-width: 1200px;
  margin: 0 0 clamp(65px, 8vw, 108px);
  font-size: clamp(50px, 6.5vw, 91px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.editorial-intro p {
  align-self: start;
  margin: 0;
  color: #858585;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.editorial-back {
  position: absolute;
  top: 38px;
  left: clamp(24px, 4vw, 64px);
  padding-bottom: 4px;
  border-bottom: 1px solid #929292;
  color: #737373;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editorial-figure {
  margin: 0 0 clamp(150px, 20vw, 300px);
}

.editorial-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.editorial-figure figcaption {
  padding: 13px clamp(18px, 3vw, 45px);
  color: #969696;
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 300;
}

.editorial-copy {
  width: min(1060px, calc(100% - 72px));
  margin: 0 auto clamp(165px, 22vw, 330px);
  color: #555;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.48;
}

.editorial-copy--compact {
  width: min(980px, calc(100% - 72px));
}

.editorial-copy p {
  margin: 0 0 1.55em;
}

.editorial-copy h2 {
  margin: 2.5em 0 1.15em;
  color: var(--ink);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.editorial-figure--second {
  margin-bottom: clamp(260px, 38vw, 560px);
}

.donor-section {
  width: min(1120px, calc(100% - 72px));
  margin: 0 auto;
  text-align: center;
}

.donor-section h2 {
  margin: 0 0 1.5em;
  font-size: clamp(29px, 3.3vw, 47px);
  font-weight: 400;
}

.donor-section > p,
.donor-section h3 {
  width: min(780px, 100%);
  margin: 0 auto 1.7em;
  color: #666;
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 300;
  line-height: 1.45;
}

.donor-section h3 {
  margin-top: clamp(70px, 8vw, 120px);
  color: #4a4a4a;
  font-weight: 400;
}

.donor-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 90px);
  margin-top: clamp(95px, 12vw, 175px);
}

.donor-actions > div {
  display: grid;
  align-content: end;
}

.donor-actions p {
  min-height: 67px;
  margin: 0 0 25px;
  color: #646464;
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.4;
}

.donor-button {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 24px;
  border-radius: 10px;
  color: white;
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 300;
  transition:
    transform 170ms ease,
    filter 170ms ease;
}

.donor-button:hover,
.donor-button:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-3px);
}

.donor-button--blue {
  background: #68b8d0;
}

.donor-button--orange {
  gap: 2px;
  background: #f15a24;
}

.donor-button--orange strong {
  font-size: 1.35em;
}

.timeline-section {
  width: min(1030px, calc(100% - 72px));
  margin: 0 auto clamp(300px, 40vw, 600px);
}

.timeline-lead {
  max-width: 890px;
  margin: 0 0 clamp(110px, 13vw, 185px);
  color: #5a5a5a;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.5;
}

.timeline {
  position: relative;
  display: grid;
  gap: clamp(62px, 8vw, 120px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 145px;
  width: 1px;
  background: #aaa;
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 68px;
}

.timeline li::before {
  position: absolute;
  top: 8px;
  left: 135px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px white;
  content: "";
}

.timeline strong {
  font-size: clamp(24px, 2.3vw, 33px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.timeline p {
  margin: 0;
  color: #5b5b5b;
  font-size: clamp(18px, 1.75vw, 25px);
  font-weight: 300;
  line-height: 1.45;
}

.donation-page {
  padding: clamp(65px, 8vw, 120px) 24px clamp(120px, 15vw, 220px);
}

.donation-form {
  width: min(980px, 100%);
  margin: 0 auto;
}

.donation-amount {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 130px;
  padding: 26px clamp(25px, 5vw, 75px);
  background: #e5e5e5;
  color: #515151;
}

.donation-amount > span {
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 700;
}

.donation-amount strong,
.donation-amount label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: clamp(33px, 4.5vw, 61px);
  font-weight: 300;
}

.donation-amount input {
  width: 150px;
  padding: 4px 8px;
  border: 0;
  border-bottom: 2px solid #999;
  outline: none;
  background: transparent;
  color: inherit;
  text-align: right;
}

.donation-amount > button {
  justify-self: end;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.donation-form__body {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(95px, 12vw, 165px);
}

.form-section {
  margin-bottom: clamp(100px, 13vw, 180px);
}

.form-section h1,
.form-section h2 {
  display: flex;
  align-items: center;
  margin: 0 0 clamp(70px, 8vw, 115px);
  font-size: clamp(35px, 4.4vw, 59px);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.form-section h2 span:not(.form-dot) {
  font-weight: 700;
}

.form-dot {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-right: 24px;
  border-radius: 50%;
  background: var(--blue);
}

.form-label {
  margin: 0 0 28px;
  color: #6f6f6f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.payment-method {
  min-height: 77px;
  padding: 16px 20px;
  border: 2px solid #a7a7a7;
  border-radius: 38px;
  background: white;
  color: #555;
  cursor: pointer;
  font-size: 18px;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.payment-method--selected {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.form-fields {
  display: grid;
  gap: 17px;
}

.form-fields input,
.form-fields textarea {
  width: 100%;
  padding: 21px 29px;
  border: 2px solid #9c9c9c;
  border-radius: 31px;
  outline: none;
  background: white;
  color: #4b4b4b;
  font-size: 18px;
  resize: vertical;
}

.form-fields input:focus,
.form-fields textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgb(102 181 206 / 16%);
}

.check-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 21px;
  margin: 0 0 clamp(70px, 9vw, 125px);
  color: #565656;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.check-row input {
  position: absolute;
  opacity: 0;
}

.check-mark {
  position: relative;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  border: 2px solid #777;
  border-radius: 50%;
}

.check-row input:checked + .check-mark {
  border-color: var(--blue);
  background: var(--blue);
}

.check-row input:checked + .check-mark::after {
  position: absolute;
  top: 6px;
  left: 10px;
  width: 7px;
  height: 13px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  content: "";
  transform: rotate(45deg);
}

.form-section--address {
  margin-top: -55px;
}

.demo-submit {
  width: 100%;
  min-height: 80px;
  padding: 20px;
  border: 0;
  border-radius: 40px;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.form-message {
  margin: 28px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 780px) {
  :root {
    --header-height: 104px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 14px 18px;
  }

  .brand {
    gap: 8px;
    width: 102px;
  }

  .brand-wordmark {
    font-size: 15px;
  }

  .brand-tower {
    flex-basis: 34px;
    width: 34px;
    height: 66px;
    transform: scale(0.65);
    transform-origin: left center;
  }

  .brand-tower__finial {
    left: 26px;
  }

  .header-actions {
    gap: 17px;
  }

  .support-button {
    min-width: 120px;
    padding: 12px 18px;
    font-size: 18px;
  }

  .menu-button {
    width: 38px;
    gap: 6px;
  }

  .menu-button span {
    height: 4px;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(10px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-10px) rotate(-45deg);
  }

  .menu-panel {
    padding: 24px 20px 40px;
  }

  .menu-panel__header {
    min-height: 68px;
  }

  .menu-panel__header h2 {
    font-size: 24px;
  }

  .menu-panel__header button {
    width: 48px;
    height: 48px;
    font-size: 44px;
  }

  .menu-panel__nav a,
  .language-list button {
    min-height: 65px;
    padding: 14px 8px;
    font-size: 25px;
  }

  .flag {
    flex-basis: 43px;
    width: 43px;
    height: 27px;
  }

  .hero {
    min-height: 67vh;
    background-position: 43% center;
  }

  .hero-link {
    top: auto;
    right: 20px;
    bottom: 38px;
    gap: 14px;
    font-size: 29px;
  }

  .hero-link a {
    width: 59px;
    height: 59px;
  }

  .arrow-icon {
    width: 27px;
  }

  .arrow-icon::after {
    top: -6px;
    width: 14px;
    height: 14px;
  }

  .hero-caption {
    display: none;
  }

  .discover {
    padding-top: 75px;
  }

  .search-box {
    width: calc(100% - 34px);
    margin-bottom: 85px;
    padding: 7px 13px 7px 20px;
    border-width: 3px;
    border-radius: 24px;
  }

  .search-box input {
    padding: 9px 0;
    font-size: 23px;
  }

  .search-box button {
    width: 50px;
    height: 50px;
  }

  .search-icon {
    width: 30px;
    height: 30px;
    border-width: 4px;
  }

  .search-icon::after {
    right: -13px;
    bottom: -9px;
    width: 19px;
    height: 4px;
  }

  .card-track {
    grid-auto-columns: 82vw;
    gap: 24px;
    padding: 0 9vw;
  }

  .place-card {
    min-height: 420px;
    border-radius: 25px;
  }

  .place-card__caption {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .carousel-button {
    display: none;
  }

  .support-section {
    padding-inline: 22px;
  }

  .stats {
    margin-bottom: 110px;
  }

  .join h2 {
    margin-bottom: 55px;
  }

  .join-button {
    min-height: 120px;
    border-radius: 25px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-bottom: 95px;
  }

  .footer-column p {
    line-height: 1.28;
  }

  .detail-intro {
    padding-top: 95px;
  }

  .detail-back {
    top: 28px;
  }

  .detail-figure {
    margin-bottom: 270px;
  }

  .detail-figure--second {
    margin-bottom: 100px;
  }

  .editorial-intro {
    min-height: 440px;
    padding: 110px 20px 90px;
  }

  .editorial-intro h1 {
    margin-bottom: 55px;
    font-size: clamp(39px, 12vw, 61px);
    line-height: 1;
  }

  .editorial-intro p {
    font-size: clamp(30px, 8.5vw, 44px);
  }

  .editorial-back {
    top: 26px;
    left: 20px;
    font-size: 11px;
  }

  .editorial-figure {
    margin-bottom: 145px;
  }

  .editorial-figure figcaption {
    font-size: 13px;
  }

  .editorial-copy,
  .editorial-copy--compact {
    width: calc(100% - 42px);
    margin-bottom: 145px;
    font-size: 19px;
    line-height: 1.5;
  }

  .editorial-copy h2 {
    margin-top: 2em;
  }

  .editorial-figure--second {
    margin-bottom: 230px;
  }

  .donor-section {
    width: calc(100% - 42px);
  }

  .donor-section > p,
  .donor-section h3 {
    font-size: 16px;
  }

  .donor-actions {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .donor-button {
    min-height: 95px;
  }

  .timeline-section {
    width: calc(100% - 42px);
    margin-bottom: 270px;
  }

  .timeline-lead {
    margin-bottom: 100px;
    font-size: 19px;
  }

  .timeline {
    gap: 75px;
  }

  .timeline::before {
    left: 62px;
  }

  .timeline li {
    grid-template-columns: 62px 1fr;
    gap: 35px;
  }

  .timeline li::before {
    top: 5px;
    left: 54px;
    width: 17px;
    height: 17px;
    box-shadow: 0 0 0 6px white;
  }

  .timeline strong {
    font-size: 18px;
  }

  .timeline p {
    font-size: 17px;
  }

  .donation-page {
    padding: 35px 0 120px;
  }

  .donation-amount {
    grid-template-columns: 1fr auto;
    gap: 18px;
    min-height: 115px;
    padding: 23px 22px;
  }

  .donation-amount strong,
  .donation-amount label {
    grid-row: 2;
    justify-content: flex-start;
    font-size: 36px;
  }

  .donation-amount > button {
    grid-row: 2;
  }

  .donation-amount input {
    width: 102px;
  }

  .donation-form__body {
    width: calc(100% - 42px);
    padding-top: 95px;
  }

  .form-section h1,
  .form-section h2 {
    margin-bottom: 65px;
    font-size: 36px;
  }

  .form-dot {
    width: 21px;
    height: 21px;
    margin-right: 14px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .payment-method {
    min-height: 65px;
  }

  .form-fields input,
  .form-fields textarea {
    padding: 18px 23px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
