@font-face {
  font-family: "Bebas Neue";
  src: url("assets/fonts/BebasNeue-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bebas";
  src: url("assets/fonts/Bebas-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #10261f;
  --ink-soft: #244138;
  --paper: #f3f0e8;
  --paper-deep: #e7e2d5;
  --white: #fffef9;
  --accent: #d7ff61;
  --accent-strong: #bde932;
  --coral: #ff7e63;
  --ifhp-green: #0e7162;
  --ifhp-text: #1f2927;
  --ifhp-muted: #5d6865;
  --ifhp-line: #dce4e1;
  --ifhp-surface: #f4f7f6;
  --ifhp-pale-blue: #d1e6eb;
  --line: rgba(16, 38, 31, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --sans: "Helvetica Neue", "Neue Haas Grotesk Text Pro", "Arial Nova", Arial, sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --display: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  --ci-logo-institute: "Bebas Neue";
  --ci-logo-wordmark: "Bebas";
  --container: min(1320px, calc(100vw - 80px));
  --header-height: 92px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

.i18n-loading body {
  visibility: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open,
body.cookie-settings-open,
html.consent-pending,
body.consent-pending {
  overflow: hidden;
  overscroll-behavior: none;
}

.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 18%, rgba(215, 255, 97, .55), transparent 32%),
    var(--paper);
}

.not-found-main {
  display: grid;
  align-content: space-between;
  min-height: 100vh;
  padding: 32px max(24px, calc((100vw - 1320px) / 2)) 10vh;
}

.not-found-brand {
  width: 205px;
}

.not-found-copy {
  max-width: 780px;
}

.not-found-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(64px, 10vw, 150px);
  letter-spacing: -.065em;
  line-height: .86;
}

.not-found-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 34px 0;
  font-size: clamp(18px, 2vw, 24px);
}

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

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

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.scroll-progress {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 40px;
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background-color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(243, 240, 232, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  width: 205px;
}

.brand img {
  width: 100%;
  height: auto;
  transition: filter .25s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3vw, 48px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a {
  position: relative;
  padding: 12px 0;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  height: 41px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 650;
  transition: color .25s ease, background .25s ease;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.language-dropdown {
  position: relative;
  width: 164px;
  font-size: 13px;
  font-weight: 650;
}

.language-dropdown summary {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  height: 43px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.42);
  cursor: pointer;
  list-style: none;
  transition: border-color .25s ease, background .25s ease;
}

.language-dropdown summary::-webkit-details-marker {
  display: none;
}

.language-dropdown summary:hover,
.language-dropdown[open] summary {
  border-color: var(--ifhp-green);
  background: var(--white);
}

.flag-disc {
  display: inline-block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(16, 38, 31, .14);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(16, 38, 31, .14);
  overflow: hidden;
}

.flag-at {
  background: linear-gradient(to bottom, #c8102e 0 33.33%, #fff 33.33% 66.66%, #c8102e 66.66% 100%);
}

.flag-uk {
  background: #012169 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath fill='%23012169' d='M0 0h60v30H0z'/%3E%3Cpath stroke='%23fff' stroke-width='6' d='M0 0l60 30M60 0L0 30'/%3E%3Cpath stroke='%23C8102E' stroke-width='2.5' d='M0 0l60 30M60 0L0 30'/%3E%3Cpath stroke='%23fff' stroke-width='10' d='M30 0v30M0 15h60'/%3E%3Cpath stroke='%23C8102E' stroke-width='6' d='M30 0v30M0 15h60'/%3E%3C/svg%3E") center / cover no-repeat;
}

.language-current-label {
  flex: 1;
  white-space: nowrap;
}

.language-chevron {
  flex: 0 0 8px;
  width: 8px;
  height: 5px;
  margin: 0 3px 0 2px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform .25s var(--ease);
}

.language-dropdown[open] .language-chevron {
  transform: rotate(180deg);
}

.language-dropdown-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 3px);
  right: 0;
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 4px;
  border: 1px solid rgba(14, 113, 98, .4);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 38, 31, .12);
  overflow: hidden;
}

.language-dropdown-menu button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  height: 43px;
  padding: 0 11px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  transition: color .2s ease, background .2s ease;
}

.language-dropdown-menu button:hover {
  background: var(--ifhp-surface);
}

.language-dropdown-menu button[aria-pressed="true"] {
  color: var(--ifhp-green);
  background: rgba(215, 255, 97, .32);
}

.mobile-language-switch {
  display: none;
}

.mobile-contact-link {
  display: none;
}

.header-cta:hover {
  color: var(--ink);
  background: transparent;
}

.menu-toggle {
  display: none;
}

.hero {
  --hero-ink: #083f35;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
  align-items: center;
  min-height: max(760px, 100svh);
  padding: calc(var(--header-height) + 48px) max(40px, calc((100vw - 1320px) / 2)) 70px;
  color: var(--hero-ink);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px), linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 8) 112px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.ambient-one {
  top: -20%;
  right: -13%;
  width: 62vw;
  height: 62vw;
  background: radial-gradient(circle at 50% 50%, rgba(215, 255, 97, .58), rgba(215, 255, 97, 0) 68%);
}

.ambient-two {
  bottom: -33%;
  left: -22%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle at 50% 50%, rgba(255, 126, 99, .2), rgba(255, 126, 99, 0) 68%);
}

.hero-copy,
.hero-visual,
.hero-foot {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
  padding-top: 24px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.events-heading h2,
.join-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(64px, 8.2vw, 132px);
  font-weight: 520;
  letter-spacing: -.065em;
  line-height: .84;
}

.hero h1 {
  max-width: 880px;
  opacity: 0;
  animation: enter-up 1s .15s var(--ease) forwards;
}

.hero h1 .hero-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.7px var(--hero-ink);
  font-family: var(--serif);
  font-size: .95em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero h1 strong {
  display: block;
  font-size: .74em;
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1;
}

.hero-lead {
  max-width: 590px;
  margin: 42px 0 0;
  font-size: clamp(19px, 1.5vw, 24px);
  letter-spacing: -.02em;
  opacity: 0;
  animation: enter-up .9s .42s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
  opacity: 0;
  animation: enter-up .9s .56s var(--ease) forwards;
}

.hero .button-primary {
  background: var(--hero-ink);
}

.hero .button-primary:hover {
  color: var(--hero-ink);
  border-color: var(--hero-ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--ink);
}

.button-accent {
  color: var(--ink);
  background: var(--accent);
}

.button-accent:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 650;
  transition: gap .3s var(--ease);
}

.text-link:hover,
.arrow-link:hover {
  gap: 34px;
}

.hero-visual {
  justify-self: end;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  margin-right: -2vw;
  opacity: 0;
  animation: enter-scale 1.25s .3s var(--ease) forwards;
  will-change: transform;
}

.hero-figure,
.hero-visual::before {
  position: absolute;
  z-index: 3;
  top: -11%;
  right: -4%;
  width: 88%;
  height: 88%;
  pointer-events: none;
}

.hero-visual::before {
  background: url("assets/illustrations/miteinander.webp") center / contain no-repeat;
  content: "";
  filter: brightness(0) invert(1);
  opacity: 1;
}

.hero-figure {
  object-fit: contain;
  opacity: 1;
}

.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(8, 63, 53, .34);
  border-radius: 50%;
}

.orbit-outer {
  inset: 0;
  animation: breathe 8s ease-in-out infinite;
}

.orbit-outer::before,
.orbit-outer::after {
  position: absolute;
  inset: 11%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.orbit-outer::after {
  inset: 25%;
}

.orbit-inner {
  top: 50%;
  left: 0;
  width: 100%;
  height: 31%;
  transform: translateY(-50%);
}

.orbit-inner::after {
  position: absolute;
  top: -112%;
  left: 34%;
  width: 31%;
  height: 322%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 31.68%;
  height: 31.68%;
  aspect-ratio: 1 / 1;
  padding: 12%;
  color: var(--white);
  z-index: 4;
  background: var(--hero-ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 32px 80px rgba(16, 38, 31, .23);
}

.visual-core img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31.2%;
  height: 31.2%;
  filter: invert(1);
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.topic-tag {
  position: absolute;
  z-index: 5;
  padding: 9px 13px;
  border: 1px solid var(--hero-ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: clamp(10px, .75vw, 12px);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag-one {
  top: 8%;
  right: 9%;
}

.tag-two {
  top: 49%;
  left: -5%;
}

.tag-three {
  right: 2%;
  bottom: 10%;
}

.hero-foot {
  position: absolute;
  right: max(40px, calc((100vw - 1320px) / 2));
  bottom: 28px;
  left: max(40px, calc((100vw - 1320px) / 2));
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
}

.ticker {
  display: flex;
  align-items: center;
  height: 80px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 32px;
  width: max-content;
  padding-left: 32px;
  animation: marquee 26s linear infinite;
}

.ticker span {
  font-size: 16px;
  font-weight: 650;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ticker i {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.section {
  width: var(--container);
  margin: 0 auto;
}

.section-intro {
  padding-top: clamp(110px, 13vw, 190px);
}

.section-kicker {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: start;
  width: 28%;
  min-width: 300px;
  margin-bottom: 92px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-kicker p {
  margin: 0;
}

.intro-content {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, .65fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.display-copy {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 6.2vw, 96px);
  font-weight: 520;
  letter-spacing: -.058em;
  line-height: .98;
}

.display-copy em,
.join-heading em {
  font-family: var(--serif);
  font-weight: 400;
}

.intro-detail {
  padding-bottom: 8px;
}

.intro-detail p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 16px;
}

.intro-detail .arrow-link {
  margin-top: 15px;
  padding-bottom: 6px;
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 300px;
  margin-top: clamp(100px, 12vw, 170px);
  padding: 52px clamp(28px, 5vw, 74px);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.manifesto::after {
  position: absolute;
  top: -100%;
  right: 18%;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.04), 0 0 0 140px rgba(255,255,255,.025);
  content: "";
}

.manifesto-quote {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 60px);
  font-style: italic;
  line-height: 1.08;
}

.manifesto-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  margin-left: 50px;
  background: var(--accent);
  border-radius: 50%;
}

.manifesto-mark img {
  width: 56px;
}

.focus-section {
  padding: clamp(120px, 14vw, 200px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(270px, 350px);
  gap: 80px;
  align-items: end;
  margin-bottom: 86px;
}

.section-heading h2,
.events-heading h2,
.join-heading h2,
.contact-copy h2 {
  font-size: clamp(55px, 7.2vw, 105px);
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 18px;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.focus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 520px;
  padding: 32px;
  border: 1px solid var(--ifhp-line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .4s var(--ease), transform .4s var(--ease);
}

.focus-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--ifhp-green);
  content: "";
}

.focus-card:hover {
  border-color: rgba(14, 113, 98, .46);
  box-shadow: 0 22px 54px rgba(14, 67, 58, .11);
  transform: translateY(-6px);
}

.focus-card:nth-child(2)::before {
  background: var(--accent);
}

.focus-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 4px;
  color: var(--ifhp-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.focus-number {
  color: var(--ifhp-green);
}

.focus-label {
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.focus-icon {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 66px 0 42px;
  border-radius: 6px;
  background: var(--ifhp-surface);
}

.focus-card:nth-child(2) .focus-icon {
  background: var(--accent);
}

.focus-card:nth-child(3) .focus-icon {
  background: var(--ifhp-pale-blue);
}

.focus-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--ifhp-text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.focus-card h3 {
  max-width: 330px;
  margin: 0 0 18px;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 540;
  letter-spacing: -.04em;
  line-height: 1;
}

.focus-card p {
  max-width: 350px;
  margin: 0;
  color: var(--ifhp-muted);
  font-size: 16px;
}

.focus-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--ifhp-line);
  color: var(--ifhp-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.focus-card-foot i {
  flex: 1;
  height: 1px;
  background: var(--ifhp-line);
}

.values-section {
  padding: clamp(90px, 10vw, 150px) 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.values-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, .55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 92px);
}

.values-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 520;
  letter-spacing: -.065em;
  line-height: .88;
}

.values-heading h2 em {
  color: var(--ifhp-green);
  font-family: var(--serif);
  font-weight: 400;
}

.values-heading > p {
  max-width: 370px;
  margin: 0 0 5px;
  color: var(--ifhp-muted);
  font-size: 18px;
}

.values-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px) 20px;
  align-items: start;
}

.value-story {
  grid-column: span 4;
  min-width: 0;
}

.value-story-humanity {
  margin-top: 0;
}

.value-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: clamp(10px, 1.5vw, 24px);
  border-radius: 50% 50% 7px 7px;
  background: color-mix(in srgb, var(--ifhp-pale-blue) 58%, var(--white));
  overflow: hidden;
  isolation: isolate;
}

.value-visual::before {
  position: absolute;
  z-index: -1;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(14, 113, 98, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255,255,255,.18), 0 0 0 68px rgba(255,255,255,.12);
  content: "";
}

.value-story-humanity .value-visual {
  background: #f1ddd2;
}

.value-story-joy .value-visual {
  background: color-mix(in srgb, var(--accent) 62%, var(--white));
}

.value-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .7s var(--ease);
}

.value-story:hover .value-visual img {
  transform: translateY(-8px) scale(1.025);
}

.value-copy {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--ifhp-line);
}

.value-copy > span {
  padding-top: 5px;
  color: var(--ifhp-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.value-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(29px, 2.8vw, 42px);
  font-weight: 540;
  letter-spacing: -.045em;
  line-height: 1;
}

.value-copy p {
  max-width: 340px;
  margin: 0;
  color: var(--ifhp-muted);
}

.events-section {
  position: relative;
  padding: clamp(88px, 9vw, 128px) 0;
  color: var(--white);
  background: var(--ifhp-green);
  overflow: hidden;
}

.events-orbit {
  position: absolute;
  top: -300px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255,255,255,.025), 0 0 0 144px rgba(255,255,255,.018);
}

.events-inner {
  position: relative;
}

.eyebrow-light {
  color: rgba(255,255,255,.7);
}

.events-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 40px 80px;
  align-items: end;
  margin-bottom: 62px;
}

.events-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.events-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5.5vw, 72px);
  letter-spacing: -.055em;
  line-height: .95;
}

.events-heading > p:last-child {
  max-width: 430px;
  margin: 0 0 4px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list-head {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 148px;
  gap: 0;
  padding: 0 24px 10px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.event-list-head span:nth-child(2) {
  padding-left: 28px;
}

.event-list-head span:last-child {
  text-align: center;
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 148px;
  align-items: center;
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 6px;
  color: var(--ifhp-text);
  background: #fff;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .35s var(--ease), transform .35s var(--ease);
}

.event-card:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(4, 53, 45, .18);
  transform: translateY(-3px);
}

.event-card-accent {
  background: #fff;
}

.event-date {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  width: 92px;
  height: 92px;
  padding: 13px;
  border-radius: 4px;
  background: var(--accent);
}

.event-date strong {
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1;
}

.event-date span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.event-copy {
  min-width: 0;
  padding: 0 28px;
}

.event-type {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ifhp-green);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.event-copy h3 {
  margin: 0 0 7px;
  font-size: clamp(23px, 2.3vw, 31px);
  font-weight: 560;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.event-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--ifhp-muted);
  font-size: 14px;
}

.event-button {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 148px;
  min-height: 50px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ifhp-green);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.event-button:hover {
  color: var(--ink);
  background: var(--accent);
  transform: translateX(3px);
}

.impact-section {
  padding: clamp(110px, 12vw, 180px) 0 clamp(120px, 13vw, 190px);
  border-bottom: 1px solid var(--ifhp-line);
  background: var(--white);
  overflow: hidden;
}

.impact-intro > .eyebrow {
  color: var(--ifhp-green);
}

.impact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .65fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: end;
}

.impact-intro h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 108px);
  font-weight: 520;
  letter-spacing: -.065em;
  line-height: .88;
}

.impact-intro-grid > p {
  max-width: 510px;
  margin: 0 0 5px;
  color: var(--ifhp-muted);
  font-size: 18px;
}

.impact-numbers {
  margin-top: clamp(90px, 10vw, 145px);
}

.impact-numbers > h3 {
  margin: 0 0 34px;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 540;
  letter-spacing: -.045em;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.impact-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 244px;
  padding: 25px;
  border: 1px solid var(--ifhp-line);
  background: var(--ifhp-surface);
  overflow: hidden;
}

.impact-stat::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--ifhp-green);
  content: "";
}

.impact-stat:nth-child(2)::before,
.impact-stat:nth-child(4)::before {
  background: var(--accent-strong);
}

.impact-stat-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: auto;
  color: var(--ifhp-green);
  background: var(--white);
  border-radius: 50%;
}

.impact-stat-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.impact-stat strong {
  display: flex;
  align-items: flex-end;
  min-height: 74px;
  margin-top: 34px;
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .94;
}

.impact-stat strong.impact-stat-word {
  font-size: clamp(29px, 3vw, 43px);
}

.impact-stat strong.impact-stat-wide {
  font-size: clamp(27px, 2.6vw, 39px);
}

.impact-stat > span {
  display: block;
  max-width: 210px;
  margin-top: 12px;
  color: var(--ifhp-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.testimonials {
  margin-top: clamp(110px, 12vw, 175px);
}

.testimonials-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.testimonials-heading .eyebrow {
  color: var(--ifhp-green);
}

.testimonials-heading h3 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 6.3vw, 92px);
  font-weight: 520;
  letter-spacing: -.062em;
  line-height: .91;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--ifhp-line);
  background: var(--paper);
  overflow: hidden;
}

.testimonial-card::after {
  position: absolute;
  right: 22px;
  bottom: -44px;
  color: rgba(14, 113, 98, .07);
  content: "”";
  font-family: var(--serif);
  font-size: 180px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-person {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 66px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ifhp-line);
}

.testimonial-avatar {
  position: relative;
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--ifhp-green);
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar::before {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  content: "";
}

.testimonial-avatar span {
  position: relative;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .06em;
}

.testimonial-person strong,
.testimonial-person > div:last-child > span {
  display: block;
}

.testimonial-person strong {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.testimonial-person > div:last-child > span {
  margin-top: 3px;
  color: var(--ifhp-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  color: var(--ifhp-text);
  font-size: 15px;
  line-height: 1.62;
}

.testimonial-card blockquote p {
  margin: 0 0 18px;
}

.testimonial-card blockquote p:last-child {
  margin-bottom: 0;
}

.testimonial-controls {
  display: none;
}

.join-section {
  padding: clamp(115px, 14vw, 200px) 0;
}

.join-heading {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  margin-bottom: 95px;
}

.join-heading h2 {
  font-size: clamp(60px, 8.2vw, 120px);
}

.join-heading em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  min-width: 0;
}

.join-card {
  display: flex;
  justify-content: space-between;
  min-width: 0;
  min-height: 430px;
  padding: clamp(34px, 5vw, 68px);
}

.join-card-dark {
  color: var(--white);
  background: var(--ink);
}

.join-card-light {
  color: var(--ink);
  background: var(--accent);
}

.join-card > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.join-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.join-card h3 {
  margin: auto 0 20px;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -.055em;
}

.join-card p {
  max-width: 420px;
  margin: 0;
  color: inherit;
  opacity: .72;
  font-size: 17px;
}

.round-link {
  align-self: flex-end;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-left: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
  transition: transform .4s var(--ease), color .3s ease, background .3s ease;
}

.round-link:hover {
  color: var(--ink);
  background: var(--coral);
  border-color: var(--coral);
  transform: rotate(45deg) scale(1.08);
}

.join-card-light .round-link:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.join-note {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 35px;
  align-items: center;
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.join-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 31px);
  font-style: italic;
}

.join-note p:last-child {
  text-align: right;
}

.join-note span {
  color: var(--coral);
  font-size: 24px;
}

.contact-section {
  padding: clamp(100px, 12vw, 170px) 0;
  color: var(--white);
  background: var(--ink);
}

.contact-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(70px, 11vw, 170px);
}

.contact-copy h2 {
  margin-bottom: 42px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 440px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
}

.phone-link {
  display: block;
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.phone-link span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.phone-link strong {
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 500;
  transition: color .3s ease;
}

.phone-link:hover strong {
  color: var(--accent);
}

.contact-form {
  padding-top: 46px;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label,
.event-dialog label {
  display: block;
  margin-bottom: 26px;
}

.contact-form label > span,
.event-dialog label > span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.event-dialog input,
.event-dialog textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.32);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  transition: border-color .25s ease;
}

.contact-form input,
.contact-form select,
.event-dialog input {
  height: 55px;
}

.contact-form textarea,
.event-dialog textarea {
  min-height: 120px;
  padding: 16px 0;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.38);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%);
  background-position: calc(100% - 16px) 25px, calc(100% - 11px) 25px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-form option {
  color: var(--ink);
}

.contact-no-ads {
  margin: 8px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.06);
  font-size: 13px;
}

.contact-no-ads strong {
  color: var(--accent);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
}

.form-footer p {
  max-width: 330px;
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: 11px;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  font-size: 14px;
}

.form-status.is-success {
  color: var(--accent);
}

.form-status.is-error {
  color: #ff9f8a;
}

.is-invalid {
  border-color: var(--coral) !important;
}

.site-footer {
  padding: 74px max(40px, calc((100vw - 1320px) / 2)) 28px;
  color: var(--ifhp-text);
  background: #e8f0ed;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 74px;
  border-bottom: 1px solid rgba(14, 113, 98, .22);
}

.footer-brand {
  width: min(286px, 48vw);
}

.footer-brand img {
  width: 100%;
  filter: none;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

.back-top span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(14, 113, 98, .32);
  border-radius: 50%;
  transition: color .3s ease, background .3s ease;
}

.back-top:hover span {
  color: var(--ifhp-text);
  background: var(--accent);
  border-color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr .7fr .7fr;
  gap: 60px;
  padding: 70px 0 80px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-label {
  margin-bottom: 14px;
  color: var(--ifhp-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  font-size: 14px;
}

.footer-grid a {
  transition: color .2s ease;
}

.footer-grid a:hover {
  color: var(--ifhp-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-cookie-button {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 14px;
  text-align: left;
}

.footer-cookie-button:hover {
  color: var(--ifhp-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(14, 113, 98, .22);
  color: var(--ifhp-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

/* Legal pages */
.legal-page {
  color: var(--ifhp-text);
  background: #fff;
}

.legal-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 610px;
  padding: calc(var(--header-height) + 90px) 0 92px;
  background: var(--ifhp-surface);
  overflow: hidden;
}

.legal-hero::after {
  position: absolute;
  top: -270px;
  right: -130px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(14, 113, 98, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(14, 113, 98, .035), 0 0 0 148px rgba(14, 113, 98, .022);
  content: "";
}

.legal-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(to right, var(--ifhp-line) 1px, transparent 1px), linear-gradient(to bottom, var(--ifhp-line) 1px, transparent 1px);
  background-size: calc(100% / 8) 112px;
  mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 530;
  letter-spacing: -.065em;
  line-height: .86;
}

.legal-hero-inner > p:last-child {
  max-width: 590px;
  margin: 38px 0 0;
  color: var(--ifhp-muted);
  font-size: clamp(18px, 1.6vw, 22px);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 840px);
  gap: clamp(70px, 11vw, 160px);
  width: var(--container);
  margin: 0 auto;
  padding: clamp(90px, 10vw, 145px) 0;
}

.legal-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  display: flex;
  flex-direction: column;
}

.legal-aside > span {
  margin-bottom: 22px;
  color: var(--ifhp-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-aside a {
  padding: 13px 0;
  border-top: 1px solid var(--ifhp-line);
  color: var(--ifhp-muted);
  font-size: 14px;
  transition: color .2s ease, padding-left .25s var(--ease);
}

.legal-aside a:last-child {
  border-bottom: 1px solid var(--ifhp-line);
}

.legal-aside a:hover {
  padding-left: 8px;
  color: var(--ifhp-green);
}

.legal-content {
  min-width: 0;
}

.legal-updated {
  margin: 0 0 32px;
  color: var(--ifhp-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-section {
  position: relative;
  padding: 64px 0;
  border-top: 1px solid var(--ifhp-line);
}

.legal-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.legal-index {
  display: block;
  margin-bottom: 24px;
  color: var(--ifhp-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.legal-section h2 {
  margin: 0 0 30px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 540;
  letter-spacing: -.045em;
  line-height: 1;
}

.legal-section h3 {
  margin: 34px 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.legal-section p,
.legal-section li,
.legal-section address {
  color: var(--ifhp-muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-section p {
  margin: 0 0 20px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong,
.legal-section address {
  color: var(--ifhp-text);
}

.legal-section address {
  margin: 26px 0;
  font-style: normal;
}

.legal-section a:not(.button) {
  color: var(--ifhp-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 38px 0 0;
  border-top: 1px solid var(--ifhp-line);
  border-bottom: 1px solid var(--ifhp-line);
}

.legal-facts > div {
  padding: 22px 18px 22px 0;
}

.legal-facts > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--ifhp-line);
}

.legal-facts dt {
  margin-bottom: 7px;
  color: var(--ifhp-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-facts dd {
  margin: 0;
  font-size: 14px;
}

.legal-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid var(--ifhp-line);
}

.legal-list li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border: 1px solid var(--ifhp-green);
  border-radius: 50%;
  content: "";
}

.privacy-table {
  margin: 32px 0;
  border: 1px solid var(--ifhp-line);
  border-radius: 6px;
  overflow: hidden;
}

.privacy-table-row {
  display: grid;
  grid-template-columns: 1fr 2.4fr .8fr;
}

.privacy-table-row + .privacy-table-row {
  border-top: 1px solid var(--ifhp-line);
}

.privacy-table-row span {
  min-width: 0;
  padding: 16px;
  color: var(--ifhp-muted);
  font-size: 14px;
}

.privacy-table-row span + span {
  border-left: 1px solid var(--ifhp-line);
}

.privacy-table-head {
  background: var(--ifhp-surface);
}

.privacy-table-head span {
  color: var(--ifhp-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.privacy-table code {
  color: var(--ifhp-text);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.inline-cookie-button {
  min-height: 50px;
  margin-top: 14px;
  padding: 0 20px;
  border: 1px solid var(--ifhp-green);
  border-radius: 4px;
  color: #fff;
  background: var(--ifhp-green);
  font-size: 14px;
  font-weight: 700;
  transition: color .25s ease, background .25s ease;
}

.inline-cookie-button:hover {
  color: var(--ifhp-green);
  background: transparent;
}

.legal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding: 34px;
  border-radius: 6px;
  background: var(--ifhp-surface);
}

.legal-cta p {
  margin: 0;
  font-size: 22px;
  font-weight: 560;
}

/* Consent management */
.consent-page-backdrop[hidden] {
  display: none !important;
}

.consent-page-backdrop {
  position: fixed;
  z-index: 399;
  inset: 0;
  background: rgba(8, 38, 31, .14);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  z-index: 400;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(390px, .72fr);
  gap: 24px;
  align-items: center;
  width: min(1240px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--ifhp-line);
  border-radius: 8px;
  color: var(--ifhp-text);
  background: #fff;
  box-shadow: 0 22px 70px rgba(17, 50, 43, .22);
}

.consent-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 6px;
  background: var(--accent);
}

.consent-mark img {
  width: 30px;
}

.consent-copy h2 {
  margin: 0 0 7px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.consent-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--ifhp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.consent-copy a {
  color: var(--ifhp-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.consent-action {
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid var(--ifhp-green);
  border-radius: 4px;
  color: var(--ifhp-green);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}

.consent-action:hover {
  color: #fff;
  background: var(--ifhp-green);
}

.consent-action-settings {
  grid-column: 1 / -1;
  min-height: 34px;
  border-color: transparent;
  color: var(--ifhp-muted);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-action-settings:hover {
  color: var(--ifhp-green);
  background: transparent;
}

.consent-dialog {
  width: min(680px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--ifhp-text);
  background: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.3);
  overflow: auto;
}

.consent-dialog::backdrop {
  background: rgba(6, 32, 27, .7);
  backdrop-filter: blur(5px);
}

.consent-dialog[open] {
  display: flex;
  flex-direction: column;
  animation: dialog-in .35s var(--ease) both;
}

.consent-dialog-head {
  position: relative;
  flex: 0 0 auto;
  padding: 34px 76px 30px 34px;
  color: #fff;
  background: var(--ifhp-green);
}

.consent-dialog-head .eyebrow {
  margin-bottom: 18px;
  color: rgba(255,255,255,.75);
}

.consent-dialog-head h2 {
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: 550;
  letter-spacing: -.045em;
  line-height: 1;
}

.consent-dialog-head p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

.consent-dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 24px;
}

.consent-dialog-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 10px 34px 4px;
  overflow: auto;
}

.consent-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--ifhp-line);
}

.consent-category h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.consent-category p {
  margin: 0;
  color: var(--ifhp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.consent-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.consent-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-switch-ui {
  position: relative;
  display: block;
  width: 50px;
  height: 28px;
  border: 1px solid var(--ifhp-line);
  border-radius: 999px;
  background: var(--ifhp-surface);
  transition: background .25s ease, border-color .25s ease;
}

.consent-switch-ui::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--ifhp-muted);
  border-radius: 50%;
  content: "";
  transition: transform .25s var(--ease), background .25s ease;
}

.consent-switch input:checked + .consent-switch-ui {
  border-color: var(--ifhp-green);
  background: var(--ifhp-green);
}

.consent-switch input:checked + .consent-switch-ui::after {
  background: #fff;
  transform: translateX(22px);
}

.consent-switch input:focus-visible + .consent-switch-ui {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.consent-switch input:disabled + .consent-switch-ui {
  opacity: .65;
}

.consent-dialog-note {
  flex: 0 0 auto;
  padding: 20px 34px;
  color: var(--ifhp-muted);
  background: var(--ifhp-surface);
  font-size: 12px;
  line-height: 1.55;
}

.consent-dialog-note a {
  color: var(--ifhp-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-dialog-actions {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 20px 34px 30px;
}

.consent-dialog-actions .consent-action {
  min-height: 50px;
}

.event-dialog {
  width: min(590px, calc(100vw - 36px));
  max-height: calc(100svh - 36px);
  padding: clamp(28px, 5vw, 58px);
  border: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0,0,0,.32);
}

.event-dialog::backdrop {
  background: rgba(5, 18, 14, .78);
  backdrop-filter: blur(8px);
}

.event-dialog[open] {
  animation: dialog-in .4s var(--ease) both;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.event-dialog h2 {
  margin: 0 0 30px;
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 520;
  letter-spacing: -.055em;
  line-height: .96;
}

.dialog-event {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 34px;
  padding: 17px 20px;
  background: var(--accent);
}

.dialog-event strong {
  font-size: 17px;
}

.dialog-event span {
  font-size: 12px;
}

.event-dialog label {
  margin-bottom: 20px;
}

.event-dialog input,
.event-dialog textarea {
  color: var(--ink);
  border-color: var(--line);
}

.event-dialog input::placeholder,
.event-dialog textarea::placeholder {
  color: rgba(16,38,31,.45);
}

.event-dialog input:focus,
.event-dialog textarea:focus {
  border-color: var(--ink);
}

.event-dialog .button {
  width: 100%;
}

.event-dialog .form-status.is-success {
  color: #2c6d22;
}

.event-dialog .form-status.is-error {
  color: #b13b25;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes enter-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

@keyframes enter-scale {
  from { opacity: 0; transform: scale(.88) rotate(-4deg); }
  to { opacity: 1; transform: none; }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 1041px) {
  .hero-figure,
  .hero-visual::before {
    top: -22%;
    right: 13%;
  }
}

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 48px, 980px);
  }

  .site-header {
    padding: 0 24px;
  }

  .brand {
    width: 180px;
  }

  .site-nav {
    gap: 22px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, .9fr);
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-visual {
    width: min(42vw, 500px);
  }

  .hero-foot {
    right: 24px;
    left: 24px;
  }

  .events-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: 32px 48px;
  }

  .event-list-head,
  .event-card {
    grid-template-columns: 104px minmax(0, 1fr) 132px;
  }

  .event-button {
    width: 132px;
  }

  .join-heading {
    grid-template-columns: 180px 1fr;
  }

  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    z-index: 2;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 7px;
    width: 46px;
    height: 46px;
    place-content: center;
    justify-self: end;
    background: var(--ink);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--white);
    transition: transform .3s var(--ease);
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding: 90px 24px 40px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .35s ease, transform .35s var(--ease);
  }

  .site-nav::before {
    margin-bottom: 28px;
    color: rgba(255,255,255,.45);
    content: "MENÜ";
    font-size: 11px;
    letter-spacing: .12em;
  }

  html[lang="en"] .site-nav::before {
    content: "MENU";
  }

  .site-nav > a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: clamp(29px, 7vw, 46px);
    font-weight: 500;
    letter-spacing: -.04em;
  }

  .site-nav > .mobile-contact-link {
    display: block;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .header-cta {
    display: none;
  }

  .header-tools {
    display: none;
  }

  .mobile-language-switch {
    display: block;
    width: 100%;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line-light);
  }

  .mobile-language-label {
    display: block;
    margin-bottom: 12px;
    color: rgba(255,255,255,.5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .mobile-language-switch > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-language-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px 13px;
    border: 1px solid rgba(255,255,255,.24);
    color: var(--white);
    background: rgba(255,255,255,.06);
    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0;
  }

  .mobile-language-link[aria-current="true"] {
    color: var(--ink);
    border-color: var(--accent);
    background: var(--accent);
  }

  .site-header.is-scrolled {
    height: 68px;
  }

  body.menu-open .site-header {
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  body.menu-open .brand img {
    filter: invert(1);
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 1040px;
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .hero h1 {
    font-size: clamp(60px, 14vw, 108px);
  }

  .hero-lead {
    max-width: 620px;
  }

  .hero-visual {
    justify-self: center;
    width: min(76vw, 520px);
    margin: 68px 0 0;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .intro-detail {
    max-width: 600px;
    margin-left: 16%;
  }

  .manifesto {
    min-height: 360px;
  }

  .manifesto-mark {
    width: 100px;
    height: 100px;
    margin-left: 25px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-heading > p {
    max-width: 560px;
  }

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

  .focus-card {
    min-height: 390px;
  }

  .focus-icon {
    margin: 48px 0 34px;
  }

  .values-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .values-heading > p {
    max-width: 570px;
  }

  .value-story {
    grid-column: span 6;
  }

  .value-story-humanity {
    margin-top: 0;
  }

  .value-story-joy {
    grid-column: 4 / span 6;
  }

  .events-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .event-list {
    max-width: none;
    margin: 0;
  }

  .impact-intro-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .impact-intro-grid > p {
    max-width: 720px;
  }

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

  .testimonials-heading {
    align-items: flex-end;
  }

  .testimonial-controls {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testimonial-controls > button {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--ifhp-green);
    color: var(--ifhp-green);
    background: transparent;
    font-size: 18px;
  }

  .testimonial-controls > button:disabled {
    cursor: default;
    opacity: .3;
  }

  .testimonial-dots {
    display: flex;
    gap: 6px;
  }

  .testimonial-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: var(--ifhp-line);
  }

  .testimonial-dots button[aria-current="true"] {
    background: var(--ifhp-green);
  }

  .testimonial-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .testimonial-card {
    flex: 0 0 min(84vw, 640px);
    scroll-snap-align: start;
  }

  .join-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 650px;
  }

  .contact-form {
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }

  .legal-hero {
    min-height: 520px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .legal-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-aside > span {
    grid-column: 1 / -1;
  }

  .legal-aside a:nth-last-child(2) {
    border-bottom: 1px solid var(--ifhp-line);
  }

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

  .consent-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 36px);
  }

  .brand {
    width: 150px;
  }

  .hero {
    min-height: 950px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: clamp(49px, 13.2vw, 66px);
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
  }

  .hero-visual {
    width: min(86vw, 420px);
    margin-top: 56px;
  }

  .hero-foot {
    right: 18px;
    left: 18px;
  }

  .hero-foot p:last-child {
    display: none;
  }

  .ticker {
    height: 66px;
  }

  .ticker span {
    font-size: 13px;
  }

  .section-kicker {
    grid-template-columns: 55px 1fr;
    min-width: 0;
    width: 100%;
    margin-bottom: 55px;
  }

  .display-copy {
    font-size: clamp(42px, 12.8vw, 62px);
  }

  .intro-detail {
    margin-left: 0;
  }

  .manifesto {
    grid-template-columns: 1fr;
    min-height: 410px;
    margin-top: 90px;
    padding: 35px 26px;
  }

  .manifesto-mark {
    justify-self: end;
    width: 80px;
    height: 80px;
    margin: 35px 0 0;
  }

  .manifesto-mark img {
    width: 36px;
  }

  .focus-section {
    padding: 105px 0;
  }

  .section-heading {
    margin-bottom: 55px;
  }

  .focus-card {
    min-height: 410px;
    padding: 24px;
  }

  .focus-card:hover {
    transform: translateY(-3px);
  }

  .focus-number {
    padding-top: 0;
  }

  .focus-icon {
    display: grid;
    width: 88px;
    height: 88px;
    margin: 42px 0 30px;
  }

  .values-section {
    padding: 90px 0;
  }

  .values-heading h2 {
    font-size: clamp(49px, 14vw, 72px);
  }

  .values-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 60px 0;
  }

  .value-story,
  .value-story-joy {
    grid-column: 1 / -1;
  }

  .value-story-humanity {
    margin-top: 0;
  }

  .value-copy {
    margin-top: 20px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(51px, 15vw, 78px);
  }

  .events-heading h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .event-list {
    margin-left: 0;
  }

  .impact-section {
    padding: 96px 0 110px;
  }

  .impact-intro h2 {
    font-size: clamp(50px, 14vw, 72px);
  }

  .impact-intro-grid > p {
    font-size: 16px;
  }

  .impact-numbers {
    margin-top: 78px;
  }

  .impact-numbers > h3 {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .impact-stat {
    min-height: 205px;
  }

  .impact-stat strong {
    display: block;
    min-height: 0;
    margin-top: 28px;
  }

  .testimonials {
    margin-top: 96px;
  }

  .testimonials-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .testimonials-heading h3 {
    font-size: clamp(44px, 12.5vw, 62px);
  }

  .testimonial-controls {
    justify-content: space-between;
    width: 100%;
  }

  .testimonial-card {
    flex-basis: 100%;
    padding: 24px;
  }

  .testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.58;
  }

  .event-list-head {
    display: none;
  }

  .event-card {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 0;
    padding: 20px;
  }

  .event-copy {
    padding: 0 0 18px 18px;
  }

  .event-type {
    margin-bottom: 7px;
  }

  .event-date {
    width: 68px;
    height: 76px;
    padding: 9px;
  }

  .event-date strong {
    font-size: 35px;
  }

  .event-copy h3 {
    font-size: 24px;
  }

  .event-button {
    grid-column: 2;
    width: calc(100% - 18px);
    margin-left: 18px;
  }

  .join-heading h2 {
    font-size: clamp(52px, 15vw, 78px);
  }

  .join-card {
    min-height: 390px;
    padding: 34px 26px;
  }

  .round-link {
    width: 58px;
    height: 58px;
    margin-left: 12px;
  }

  .join-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .join-note p:last-child {
    text-align: left;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .legal-hero {
    min-height: 480px;
    padding: 140px 0 70px;
  }

  .legal-hero h1 {
    font-size: clamp(54px, 15vw, 76px);
  }

  .legal-hero-inner > p:last-child {
    margin-top: 28px;
    font-size: 17px;
  }

  .legal-layout {
    gap: 54px;
    padding: 76px 0;
  }

  .legal-aside {
    grid-template-columns: 1fr;
  }

  .legal-aside a:nth-last-child(2) {
    border-bottom: 0;
  }

  .legal-section {
    padding: 48px 0;
  }

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

  .legal-section p,
  .legal-section li,
  .legal-section address {
    font-size: 16px;
  }

  .legal-facts {
    grid-template-columns: 1fr;
  }

  .legal-facts > div + div {
    padding-left: 0;
    border-top: 1px solid var(--ifhp-line);
    border-left: 0;
  }

  .privacy-table-row {
    grid-template-columns: 1fr;
  }

  .privacy-table-row span + span {
    border-top: 1px solid var(--ifhp-line);
    border-left: 0;
  }

  .privacy-table-head {
    display: none;
  }

  .legal-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-cta .button {
    width: 100%;
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 15px;
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    padding: 18px;
    overflow: auto;
  }

  .consent-mark {
    width: 46px;
    height: 46px;
  }

  .consent-copy h2 {
    font-size: 19px;
  }

  .consent-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .consent-action-settings {
    grid-column: auto;
  }

  .consent-dialog-head {
    padding: 28px 68px 26px 24px;
  }

  .consent-dialog-head h2 {
    font-size: 31px;
  }

  .consent-dialog-body {
    padding: 6px 24px 2px;
  }

  .consent-category {
    gap: 16px;
  }

  .consent-dialog-note {
    padding: 18px 24px;
  }

  .consent-dialog-actions {
    grid-template-columns: 1fr;
    padding: 18px 24px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
