@font-face {
  font-family: MuseoModerno;
  src: url(../fonts/museo-moderno-variable.woff2) format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url(../fonts/manrope-variable.woff2) format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --brand: #224395;
  --brand-deep: #173472;
  --brand-dark: #102a63;
  --brand-bright: #2f67d8;
  --brand-pale: #eaf0ff;
  --sun: #e8d01d;
  --sun-soft: #f7ed9c;
  --green: #409f36;
  --ink: #17213b;
  --slate: #566078;
  --muted: #7b8498;
  --line: #dce1eb;
  --paper: #f6f4ee;
  --white: #fff;
  --content: 1360px;
  --text: 760px;
  --display: "MuseoModerno", sans-serif;
  --body: "Manrope", sans-serif;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 22px 70px #17347224;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
:after,
:before {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizelegibility;
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
body:has(dialog[open]) {
  overflow: hidden;
}
button,
input {
  font: inherit;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  stroke-width: 1.85px;
  width: 1.15em;
  height: 1.15em;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.skip-link {
  z-index: 9999;
  background: var(--white);
  color: var(--brand);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.content-shell {
  width: min(calc(100% - 64px), var(--content));
  margin-inline: auto;
}
.section-pad {
  padding-block: clamp(88px, 9vw, 150px);
}
.eyebrow {
  color: var(--brand);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.2;
  display: flex;
}
.eyebrow > span {
  background: currentColor;
  width: 34px;
  height: 2px;
}
.eyebrow--light {
  color: #ffffffc7;
}
.section-heading {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
  margin-bottom: clamp(48px, 6vw, 82px);
  display: grid;
}
.section-heading h2 {
  max-width: 950px;
  font-family: var(--display);
  letter-spacing: -0.068em;
  margin: 0;
  font-size: clamp(2.9rem, 5.4vw, 6rem);
  font-weight: 650;
  line-height: 0.98;
}
.section-heading h2 em {
  color: var(--brand);
  font-weight: 260;
}
.section-heading > p {
  max-width: 450px;
  color: var(--slate);
  margin: 0 0 8px;
  font-size: 1.03rem;
}
.button {
  letter-spacing: 0.035em;
  text-transform: uppercase;
  min-height: 52px;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s ease,
    background 0.18s ease;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
}
.button:hover {
  transform: translateY(-3px);
}
.button--sun {
  background: var(--sun);
  color: var(--brand-dark);
  box-shadow: 0 14px 34px #e8d01d38;
}
.button--sun:hover {
  box-shadow: 0 18px 42px #e8d01d59;
}
.button--blue {
  background: var(--brand);
  color: var(--white);
}
.button--light {
  background: var(--white);
  color: var(--brand);
}
.button--ghost,
.button--outline {
  background: none;
  border: 1px solid;
}
.inline-link {
  color: var(--brand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  font-size: 0.76rem;
  font-weight: 800;
  display: inline-flex;
}
.reveal {
  opacity: 0;
  transition:
    opacity 0.72s ease,
    transform 0.72s var(--ease);
  transform: translateY(26px);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.site-header {
  z-index: 1000;
  pointer-events: none;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.header-inner {
  width: 100%;
  height: 112px;
  padding-inline: max(32px, calc((100vw - var(--content)) / 2));
  pointer-events: auto;
  transition:
    width 0.4s var(--ease),
    height 0.4s var(--ease),
    margin 0.4s var(--ease),
    padding 0.4s var(--ease),
    border-radius 0.4s var(--ease),
    box-shadow 0.4s ease;
  background: #fffffffa;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-inline: auto;
  display: grid;
}
.site-header.is-scrolled {
  padding-top: 12px;
}
.site-header.is-scrolled .header-inner {
  width: min(calc(100% - 32px), var(--content));
  border: 1px solid #2243951a;
  border-radius: 22px;
  height: 76px;
  padding-inline: 24px;
  box-shadow: 0 16px 42px #17347221;
}
.header-tools {
  justify-self: start;
  align-items: center;
  gap: 10px;
  display: flex;
}
.header-search,
.icon-button,
.menu-toggle {
  min-width: 46px;
  min-height: 46px;
  color: var(--brand);
  cursor: pointer;
  background: none;
  border-radius: 999px;
  place-items: center;
  display: inline-grid;
}
.menu-toggle {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 13px;
  padding-inline: 0 12px;
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-flex;
}
.menu-toggle__icon {
  gap: 7px;
  width: 28px;
  display: grid;
}
.menu-toggle__icon i {
  background: currentColor;
  width: 100%;
  height: 2px;
  display: block;
}
.menu-toggle__icon i:last-child {
  width: 65%;
}
.header-search {
  border: 1px solid #22439533;
}
.header-brand {
  justify-self: center;
}
.header-brand img {
  object-fit: contain;
  width: min(310px, 31vw);
  height: 64px;
  transition:
    height 0.36s var(--ease),
    width 0.36s var(--ease);
}
.site-header.is-scrolled .header-brand img {
  width: min(250px, 27vw);
  height: 47px;
}
.header-cta {
  min-height: 48px;
  color: var(--brand);
  letter-spacing: 0.065em;
  text-transform: uppercase;
  border: 1px solid #2243957a;
  border-radius: 999px;
  justify-self: end;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  font-size: 0.71rem;
  font-weight: 800;
  transition:
    background 0.18s,
    color 0.18s;
  display: inline-flex;
}
.header-cta:hover {
  background: var(--brand);
  color: var(--white);
}
.menu-panel {
  z-index: 1200;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0s 0.42s,
    opacity 0.26s;
  position: fixed;
  inset: 0;
}
.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.menu-panel__backdrop {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #0c19378c;
  position: absolute;
  inset: 0;
}
.menu-panel__drawer {
  background: var(--brand);
  width: min(520px, 92vw);
  height: 100%;
  color: var(--white);
  transition: transform 0.5s var(--ease);
  flex-direction: column;
  padding: 30px clamp(26px, 5vw, 58px);
  display: flex;
  position: relative;
  transform: translateX(-102%);
}
.menu-panel.is-open .menu-panel__drawer {
  transform: none;
}
.menu-panel__top {
  border-bottom: 1px solid #fff3;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  display: flex;
}
.menu-panel__top p {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
}
.menu-panel__top .icon-button {
  color: var(--white);
}
.menu-panel__nav {
  margin-block: auto;
  display: grid;
}
.menu-panel__nav a {
  border-bottom: 1px solid #ffffff21;
  grid-template-columns: 42px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 13px 0;
  display: grid;
}
.menu-panel__nav em {
  color: var(--sun);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
}
.menu-panel__nav span {
  font-family: var(--display);
  letter-spacing: -0.045em;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 480;
}
.menu-panel__footer {
  color: #ffffffb3;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  font-size: 0.76rem;
  display: flex;
}
.menu-panel__footer p {
  max-width: 250px;
  margin: 0;
}
.menu-panel__footer a {
  color: var(--sun);
  font-weight: 800;
}
.hero {
  background: var(--brand);
  min-height: 880px;
  color: var(--white);
  isolation: isolate;
  padding-top: 112px;
  position: relative;
  overflow: hidden;
}
.hero__background {
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      #224395fc 0,
      #224395f5 43%,
      #224395ad 74%,
      #224395d4
    ),
    url(../images/hero-background.webp) 100% / cover no-repeat;
  position: absolute;
  inset: 0;
}
.hero__content {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.86fr);
  align-items: center;
  min-height: 650px;
  display: grid;
  position: relative;
}
.hero__copy {
  z-index: 2;
  max-width: 730px;
  padding-block: 72px 100px;
  position: relative;
}
.hero h1 {
  font-family: var(--display);
  letter-spacing: -0.082em;
  margin-bottom: 30px;
  font-size: clamp(4rem, 6vw, 7.4rem);
  font-weight: 650;
  line-height: 0.9;
}
.hero h1 em {
  color: var(--sun);
  font-weight: 230;
}
.hero__lead {
  color: #ffffffc4;
  max-width: 650px;
  margin-bottom: 38px;
  font-size: clamp(1rem, 1.3vw, 1.17rem);
}
.hero__actions {
  flex-wrap: wrap;
  gap: 18px 28px;
  display: flex;
}
.hero__secondary {
  color: #ffffffe6;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
}
.hero__secondary svg {
  color: var(--sun);
}
.hero__portrait {
  z-index: 1;
  width: min(820px, 58vw);
  height: 710px;
  position: absolute;
  right: -6%;
}
.hero__portrait img {
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(-24px 22px 48px #091a4347);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -2px;
  right: 0;
}
.hero__rail-wrap {
  z-index: 4;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #102a63eb;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.journey-strip__inner {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding-block: 34px;
  display: grid;
}
.journey-strip__inner > a {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1px 14px;
  display: grid;
}
.journey-strip__inner > a > span {
  color: var(--brand);
  font-family: var(--display);
  grid-row: span 2;
  font-size: 1.8rem;
  font-weight: 760;
}
.journey-strip__inner > svg {
  color: var(--sun);
}
.editorial-intro {
  background: var(--brand);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-orbit {
  border: 1px solid #ffffff1f;
  border-radius: 50%;
  width: 700px;
  height: 700px;
  position: absolute;
  top: -280px;
  right: -180px;
  box-shadow:
    0 0 0 90px #ffffff06,
    0 0 0 180px #ffffff05;
}
.about-grid {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 120px);
  display: grid;
  position: relative;
}
.about-portrait {
  margin: 0;
  position: relative;
}
.about-portrait:before {
  z-index: 0;
  content: "";
  border-radius: 28px;
  height: 74%;
  position: absolute;
  bottom: -18px;
}
.about-portrait img {
  z-index: 1;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.92) contrast(1.02);
  border-radius: 30px;
  width: 100%;
  position: relative;
}
.about-portrait figcaption {
  z-index: 2;
  background: var(--white);
  min-width: 290px;
  color: var(--ink);
  box-shadow: var(--shadow);
  border-radius: 18px;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  display: flex;
  position: absolute;
  bottom: 42px;
  right: -28px;
}
.about-portrait figcaption > i {
  color: var(--brand);
}
.about-portrait figcaption span {
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.3;
  display: grid;
}
.about-portrait figcaption small {
  color: var(--brand);
  font-family: var(--body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 800;
}
.editorial-intro h2 {
  max-width: 820px;
  font-family: var(--display);
  letter-spacing: -0.075em;
  margin-bottom: 32px;
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 650;
  line-height: 0.98;
}
.editorial-intro h2 em {
  color: var(--sun);
  font-weight: 250;
}
.about-facts {
  background: #ffffff2e;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 38px 0;
}
.about-facts > div {
  background: var(--brand);
  padding: 22px 18px;
}
.about-facts span {
  color: var(--sun);
  margin-bottom: 10px;
  font-size: 0.64rem;
  font-weight: 800;
  display: block;
}
.about-facts strong {
  font-family: var(--display);
  margin-bottom: 6px;
  font-size: 1rem;
  display: block;
}
.about-facts p {
  color: #fff9;
  margin: 0;
  font-size: 0.74rem;
}
.commitments {
  background: var(--white);
}
.flag-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  min-height: 395px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    min-height 0.42s var(--ease),
    transform 0.3s var(--ease),
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.3s ease;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.flag-card:before {
  transform-origin: 0;
  background: var(--brand);
  content: "";
  height: 5px;
  transition: transform 0.36s var(--ease);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0.25);
}
.flag-card:after {
  content: "";
  border: 24px solid #22439512;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: -62px;
  right: -56px;
}
.flag-card.is-active,
.flag-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  border-color: #2243957a;
  transform: translateY(-8px);
}
.flag-card.is-active:before,
.flag-card:hover:before {
  transform: scaleX(1);
}
.flag-card.is-active {
  background: var(--brand);
  color: var(--white);
}
.flag-card__number {
  color: var(--brand);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
}
.flag-card.is-active .flag-card__number {
  color: var(--sun);
}
.flag-card__icon {
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: 50%;
  place-items: center;
  margin: 42px 0 28px;
  display: grid;
}
.flag-card.is-active .flag-card__icon {
  color: var(--white);
  background: #ffffff21;
}
.flag-card h3 {
  max-width: 290px;
  font-family: var(--display);
  letter-spacing: -0.05em;
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 650;
}
.flag-card p {
  margin-bottom: 28px;
  font-size: 0.83rem;
}
.flag-card.is-active p {
  color: #ffffffb3;
}
.flag-card__action {
  border-top: 1px solid var(--line);
  width: 100%;
  color: var(--brand);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.66rem;
  font-weight: 800;
  display: flex;
}
.flag-card.is-active .flag-card__action {
  color: var(--sun);
  border-color: #ffffff38;
}
.territory {
  background: var(--paper);
}
.territory-journal {
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 18px;
  display: grid;
}
.agenda-preview,
.field-album {
  min-width: 0;
}
.field-album__cover {
  background: var(--brand);
  width: 100%;
  height: 580px;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  border-radius: 28px;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}
.field-album__cover:after {
  content: "";
  background: linear-gradient(#17347208 45%, #102a63e0);
  position: absolute;
  inset: 0;
}
.field-album__cover > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.72s var(--ease);
}
.field-album__cover:hover > img {
  transform: scale(1.035);
}
.album-caption,
.album-index,
.field-album__cover > svg {
  z-index: 2;
  position: absolute;
}
.album-index {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #22439566;
  border: 1px solid #ffffff59;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.65rem;
  font-weight: 800;
  top: 24px;
  left: 24px;
}
.album-caption {
  display: grid;
  bottom: 28px;
  left: 28px;
  right: 84px;
}
.album-caption small {
  color: var(--sun);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 800;
}
.album-caption strong {
  max-width: 560px;
  font-family: var(--display);
  letter-spacing: -0.045em;
  margin-top: 5px;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}
.field-album__cover > svg {
  bottom: 34px;
  right: 28px;
}
.field-album__thumbs {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
  display: grid;
}
.field-album__thumbs button {
  background: var(--brand);
  height: 114px;
  color: var(--white);
  cursor: pointer;
  border-radius: 14px;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.field-album__thumbs img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.field-album__thumbs button:after {
  content: "";
  background: linear-gradient(#0000 35%, #102a63d1);
  position: absolute;
  inset: 0;
}
.field-album__thumbs span {
  z-index: 2;
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 800;
  position: absolute;
  bottom: 10px;
  left: 12px;
}
.agenda-preview {
  background: var(--white);
  border-radius: 28px;
  flex-direction: column;
  min-height: 704px;
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  box-shadow: 0 16px 50px #17347214;
}
.agenda-preview__head {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 24px;
  display: flex;
}
.agenda-preview__head small {
  color: var(--brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 800;
}
.agenda-preview__head h3 {
  font-family: var(--display);
  letter-spacing: -0.05em;
  margin: 4px 0 0;
  font-size: 2rem;
}
.agenda-preview__head a {
  color: var(--brand);
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  display: inline-flex;
}
.agenda-card {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 23px 6px;
  display: grid;
  position: relative;
}
.agenda-card time {
  background: var(--brand-pale);
  width: 64px;
  height: 68px;
  color: var(--brand);
  text-align: center;
  border-radius: 14px;
  place-content: center;
  display: grid;
}
.agenda-card time strong {
  font-family: var(--display);
  letter-spacing: -0.07em;
  font-size: 1.9rem;
  line-height: 0.8;
}
.agenda-card time span,
.agenda-card > div > span {
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 800;
}
.agenda-card h4 {
  font-family: var(--display);
  letter-spacing: -0.035em;
  margin: 4px 0 3px;
  font-size: 1.08rem;
  line-height: 1.14;
}
.agenda-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.72rem;
}
.agenda-card > svg {
  color: var(--brand);
}
.video-section {
  background: var(--white);
}
.video-grid {
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 14px;
  display: grid;
}
.video-card {
  background: var(--brand);
  min-width: 0;
  height: 500px;
  color: var(--white);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.video-card > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.72s var(--ease);
}
.video-card--feature > img {
  object-position: 58% center;
}
.video-card:not(.video-card--feature) > img {
  object-position: 61% center;
}
.video-card:hover > img {
  transform: scale(1.04);
}
.video-card__overlay {
  background: linear-gradient(#102a6308 28%, #102a63f0);
  position: absolute;
  inset: 0;
}
.video-card__content {
  z-index: 2;
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
}
.video-card__content > span {
  color: var(--sun);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 800;
}
.video-card h3 {
  font-family: var(--display);
  letter-spacing: -0.055em;
  margin: 8px 0 10px;
  font-size: clamp(1.55rem, 2.3vw, 2.6rem);
  font-weight: 590;
  line-height: 1;
}
.video-card p {
  color: #ffffffa8;
  margin: 0 0 22px;
  font-size: 0.77rem;
}
.video-card button {
  background: var(--sun);
  min-height: 44px;
  color: var(--brand-dark);
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
}
.video-card--graphic {
  background: linear-gradient(155deg, var(--brand-bright), var(--brand));
}
.video-card--graphic:after,
.video-card--graphic:before {
  content: "";
  border: 35px solid #ffffff14;
  border-radius: 50%;
  position: absolute;
}
.video-card--graphic:before {
  width: 230px;
  height: 230px;
  top: -85px;
  right: -90px;
}
.video-card--graphic:after {
  width: 300px;
  height: 300px;
  bottom: -115px;
  left: -100px;
}
.video-card__mark {
  color: #ffffff21;
  font-family: var(--display);
  font-size: 9rem;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  top: 35px;
  left: 30px;
}
.instagram-section {
  background: var(--paper);
}
.instagram-header {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 38px;
  margin-bottom: 54px;
  display: grid;
}
.instagram-header h2 {
  font-family: var(--display);
  letter-spacing: -0.07em;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 0.98;
}
.instagram-header h2 em {
  color: var(--brand);
  font-weight: 250;
}
.instagram-profile {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-width: 300px;
  padding: 12px 16px;
  display: grid;
}
.instagram-profile__mark {
  background: var(--brand);
  width: 42px;
  height: 42px;
  color: var(--white);
  border-radius: 50%;
  place-items: center;
  display: grid;
}
.instagram-profile > span:nth-child(2) {
  display: grid;
}
.instagram-profile strong {
  color: var(--brand);
  font-size: 0.77rem;
}
.instagram-profile small {
  color: var(--muted);
  font-size: 0.65rem;
}
.instagram-grid {
  grid-auto-flow: dense;
  grid-template-rows: repeat(2, minmax(245px, 310px));
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  display: grid;
}
.insta-card {
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.insta-card--tall {
  grid-row: span 2;
}
.insta-card--wide {
  grid-column: span 2;
}
.insta-card > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
  position: absolute;
  inset: 0;
}
.insta-card--portrait img,
.insta-card--tall img {
  object-position: 56% 25%;
}
.insta-card--wide img {
  object-position: right center;
}
.insta-card:hover > img {
  transform: scale(1.05);
}
.insta-card:after {
  content: "";
  background: linear-gradient(#0000 36%, #102a63e6);
  position: absolute;
  inset: 0;
}
.insta-card__type {
  z-index: 2;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #224395a3;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.6rem;
  font-weight: 800;
  position: absolute;
  top: 14px;
  left: 14px;
}
.insta-card__caption {
  z-index: 2;
  display: grid;
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
}
.insta-card__caption strong {
  font-family: var(--display);
  letter-spacing: -0.03em;
  font-size: 1.06rem;
}
.insta-card__caption small {
  color: #ffffffa6;
  font-size: 0.65rem;
}
.insta-card--quote {
  background: var(--brand);
  place-items: center;
  padding: 28px;
  display: grid;
}
.insta-card--quote:after {
  background: radial-gradient(circle at 100% 0, #ffffff26, #0000 45%);
}
.insta-card--quote blockquote,
.insta-card--quote small {
  z-index: 2;
  position: relative;
}
.insta-card--quote blockquote {
  font-family: var(--display);
  letter-spacing: -0.045em;
  text-align: center;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  font-weight: 320;
  line-height: 1.08;
}
.insta-card--quote small {
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 800;
  position: absolute;
  bottom: 18px;
}
.insta-card--blue {
  background: linear-gradient(145deg, var(--brand-bright), var(--brand));
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 26px;
  display: flex;
}
.insta-card--blue:after {
  opacity: 0;
}
.insta-card__number {
  color: var(--sun);
  font-family: var(--display);
  letter-spacing: -0.08em;
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  font-weight: 750;
  line-height: 0.9;
}
.insta-card__number span {
  font-size: 0.34em;
}
.insta-card--blue strong {
  font-family: var(--display);
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.15;
}
.insta-card--blue small {
  color: #ffffffb8;
  margin-top: 12px;
}
.timeline {
  background: var(--brand);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.timeline__texture {
  border: 70px solid #ffffff0b;
  border-radius: 50%;
  width: 620px;
  height: 620px;
  position: absolute;
  top: -220px;
  right: -180px;
}
.timeline__header {
  grid-template-columns: 1.25fr 0.45fr;
  gap: 80px;
  margin-bottom: 70px;
}
.timeline__header h2 {
  max-width: 980px;
  font-family: var(--display);
  letter-spacing: -0.07em;
  font-size: clamp(2.9rem, 5.4vw, 6rem);
  line-height: 0.98;
}
.timeline__header h2 em {
  color: var(--sun);
  font-weight: 250;
}
.timeline__header > p {
  color: #ffffffa6;
  margin: 0;
}
.timeline__items {
  position: relative;
}
.timeline__items:before {
  content: "";
  background: #fff3;
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 116px;
}
.timeline-item {
  width: 100%;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition:
    padding 0.3s var(--ease),
    background 0.22s ease;
  background: none;
  border-top: 1px solid #ffffff2b;
  grid-template-columns: 90px 32px 1fr auto;
  align-items: center;
  gap: 10px 22px;
  padding: 28px 24px 28px 0;
  display: grid;
  position: relative;
}
.timeline-item:hover {
  background: #ffffff14;
  padding-left: 22px;
  padding-right: 34px;
}
.timeline-item__year {
  color: var(--sun);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
}
.timeline-item__dot {
  z-index: 2;
  border: 3px solid var(--brand);
  background: var(--sun);
  width: 13px;
  height: 13px;
  box-shadow: 0 0 0 1px var(--sun);
  border-radius: 50%;
  position: relative;
}
.timeline-item > span:nth-child(3) {
  grid-template-columns: minmax(240px, 0.55fr) 1fr;
  align-items: center;
  gap: 3px 40px;
  display: grid;
}
.timeline-item small {
  color: #ffffff8c;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  grid-column: 1;
  font-size: 0.62rem;
  font-weight: 800;
}
.timeline-item strong {
  font-family: var(--display);
  letter-spacing: -0.04em;
  grid-column: 1;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.08;
}
.timeline-item p {
  color: #fff9;
  grid-area: 1/2/3;
  margin: 0;
  font-size: 0.82rem;
}
.timeline-item > svg {
  color: var(--sun);
}
.journal {
  background: var(--white);
}
.news-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.news-card {
  border: 1px solid var(--line);
  background: var(--paper);
  transition:
    transform 0.26s var(--ease),
    box-shadow 0.26s ease;
  border-radius: 22px;
  grid-template-rows: 240px 1fr;
  display: grid;
  overflow: hidden;
}
.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.news-card--feature {
  grid-column: 1/-1;
  grid-template-rows: 540px;
  grid-template-columns: 1.08fr 0.92fr;
  display: grid;
}
.news-card__media img {
  transition: transform 0.65s var(--ease);
}
.news-card--feature .news-card__media img {
  object-position: 58% center;
}
.news-card__body > span {
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 800;
}
.news-card h3 {
  font-family: var(--display);
  letter-spacing: -0.052em;
  margin: 12px 0 16px;
  font-size: clamp(1.35rem, 2.1vw, 2.35rem);
  line-height: 1.04;
}
.news-card:not(.news-card--feature) h3 {
  font-size: 1.45rem;
}
.news-card p {
  color: var(--slate);
  font-size: 0.83rem;
}
.news-card a {
  border-top: 1px solid var(--line);
  color: var(--brand);
  text-transform: uppercase;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
}
.lead-section {
  background: var(--brand);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.lead-section__rings {
  border: 70px solid #ffffff0a;
  border-radius: 50%;
  width: 700px;
  height: 700px;
  position: absolute;
  bottom: -270px;
  right: -230px;
  box-shadow: 0 0 0 90px #ffffff06;
}
.lead-section__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 0.78fr);
  align-items: center;
  gap: clamp(56px, 9vw, 130px);
  display: grid;
  position: relative;
}
.lead-section__story h2 {
  max-width: 760px;
  font-family: var(--display);
  letter-spacing: -0.075em;
  margin-bottom: 25px;
  font-size: clamp(3rem, 5vw, 5.7rem);
  line-height: 0.98;
}
.lead-section__story h2 em {
  color: var(--sun);
  font-weight: 250;
}
.lead-section__story > p:not(.eyebrow) {
  color: #ffffffb3;
  max-width: 620px;
}
.campaign-flag {
  perspective: 700px;
  width: min(500px, 85%);
  height: 230px;
  margin: 48px 0 36px 24px;
  position: relative;
}
.campaign-flag__pole {
  z-index: 4;
  transform-origin: bottom;
  width: 7px;
  transition: transform 0.65s var(--ease);
  background: linear-gradient(90deg, #dce1eb, #fff 50%, #afb7c8);
  border-radius: 999px;
  position: absolute;
  top: -20px;
  bottom: -30px;
  left: 0;
  transform: scaleY(0);
}
.campaign-flag__cloth {
  transform-origin: 0;
  background: var(--white);
  width: calc(100% - 7px);
  height: 190px;
  transition: transform 0.9s 0.25s var(--ease);
  border-radius: 0 20px 20px 0;
  position: absolute;
  top: 0;
  left: 7px;
  overflow: hidden;
  transform: rotateY(-78deg) scaleX(0.1);
  box-shadow: 0 25px 50px #0b1f4e40;
}
.campaign-flag__cloth > span {
  z-index: 2;
  width: 33.333%;
  height: 12px;
  transition: transform 0.5s var(--ease);
  position: absolute;
  bottom: 0;
  transform: translateY(20px);
}
.campaign-flag__cloth > span:first-child {
  background: var(--brand);
  transition-delay: 0.65s;
  left: 0;
}
.campaign-flag__cloth > span:nth-child(2) {
  background: var(--sun);
  transition-delay: 0.8s;
  left: 33.333%;
}
.campaign-flag__cloth > span:nth-child(3) {
  background: var(--green);
  transition-delay: 0.95s;
  right: 0;
}
.campaign-flag__cloth img {
  z-index: 3;
  width: 78%;
  max-height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lead-section.is-animated .campaign-flag__pole {
  transform: scaleY(1);
}
.lead-section.is-animated .campaign-flag__cloth {
  animation: flag-breathe 4.6s ease-in-out 1.3s infinite;
  transform: rotateY(0) scaleX(1);
}
.lead-section.is-animated .campaign-flag__cloth > span {
  transform: none;
}
.impact-numbers {
  background: #ffffff2e;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 670px;
  display: grid;
}
.impact-numbers > div {
  background: var(--brand);
  padding: 22px;
}
.impact-numbers strong {
  color: var(--sun);
  font-family: var(--display);
  letter-spacing: -0.07em;
  font-size: clamp(1.8rem, 3.3vw, 3.4rem);
  line-height: 1;
  display: block;
}
.impact-numbers span {
  color: #ffffff9e;
  margin-top: 5px;
  font-size: 0.69rem;
  display: block;
}
.lead-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 30px;
  gap: 22px;
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  box-shadow: 0 28px 80px #0b1f4e42;
}
.lead-form__head small {
  color: var(--brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 800;
}
.lead-form__head h3 {
  font-family: var(--display);
  letter-spacing: -0.05em;
  margin: 4px 0 0;
  font-size: 2rem;
}
.form-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-grid,
.lead-form label:not(.checkbox-field),
.lead-form label:not(.checkbox-field) > span {
  display: grid;
}
.interest-field legend,
.lead-form label > span {
  color: var(--slate);
  margin-bottom: 7px;
  font-size: 0.67rem;
  font-weight: 800;
}
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form input[type="text"] {
  padding: 0 14px;
  font-size: 0.78rem;
}
.interest-field {
  border: 0;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  display: grid;
}
.interest-field legend {
  grid-column: 1/-1;
}
.interest-field label > input {
  opacity: 0;
  position: absolute;
}
.interest-field label > span {
  border: 1px solid var(--line);
  background: var(--paper);
  min-height: 42px;
  color: var(--slate);
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  margin: 0;
  padding: 8px;
}
.interest-field input:checked + span {
  border-color: var(--brand);
  background: var(--brand-pale);
  color: var(--brand);
}
.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
  display: grid;
}
.checkbox-field input {
  accent-color: var(--brand);
  margin-top: 4px;
}
.checkbox-field > span {
  margin: 0;
  font-weight: 500;
}
.checkbox-field a {
  color: var(--brand);
  text-decoration: underline;
}
.lead-form .button {
  width: 100%;
}
.form-message {
  color: var(--brand);
  margin: 0;
  font-size: 0.75rem;
  font-weight: 750;
}
.site-footer {
  background: var(--brand-deep);
  color: var(--white);
}
.site-footer__top {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  padding-block: 75px;
  display: grid;
}
.site-footer__brand img {
  object-fit: contain;
  object-position: left center;
  width: 230px;
  height: 100px;
}
.site-footer__brand p {
  color: #ffffff9e;
  max-width: 390px;
  font-size: 0.8rem;
}
.site-footer__nav {
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  display: grid;
}
.site-footer__nav > div {
  align-content: start;
  gap: 10px;
  display: grid;
}
.site-footer__nav strong {
  color: var(--sun);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 0.68rem;
}
.site-footer__nav a,
.site-footer__nav button {
  color: #ffffffad;
  cursor: pointer;
  background: none;
  width: fit-content;
  padding: 0;
  font-size: 0.78rem;
}
.site-footer__bottom {
  border-top: 1px solid #ffffff24;
  justify-content: space-between;
  align-items: center;
  min-height: 96px;
  display: flex;
}
.site-footer__bottom p {
  color: #ffffff80;
  margin: 0;
  font-size: 0.65rem;
}
dialog {
  border: 0;
  padding: 0;
}
dialog::backdrop {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #0c1937c2;
}
.modal-close {
  z-index: 5;
  color: var(--white);
  background: #ffffff1f;
  position: absolute;
  top: 18px;
  right: 18px;
}
.video-modal {
  background: var(--brand);
  width: min(900px, 100% - 32px);
  color: var(--white);
  border-radius: 26px;
}
.video-modal__stage {
  text-align: center;
  place-content: center;
  min-height: 540px;
  padding: 40px;
  display: grid;
}
.play-large {
  background: var(--sun);
  width: 80px;
  height: 80px;
  color: var(--brand-dark);
  border-radius: 50%;
  place-items: center;
  margin: 0 auto 25px;
  display: grid;
}
.video-modal__stage p {
  color: var(--sun);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 0.68rem;
  font-weight: 800;
}
.video-modal__stage h2 {
  max-width: 680px;
  font-family: var(--display);
  letter-spacing: -0.06em;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}
.video-modal__stage small {
  color: #ffffff9e;
}
.timeline-modal {
  background: var(--white);
  border-radius: 28px;
  width: min(1160px, 100% - 32px);
  max-height: calc(100vh - 36px);
  overflow: hidden auto;
}
.timeline-modal .modal-close {
  background: var(--brand);
}
.timeline-modal__layout {
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 680px;
  display: grid;
}
.timeline-modal figure {
  background: var(--brand);
  min-height: 560px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.timeline-modal figure:after {
  content: "";
  background: linear-gradient(#0000 45%, #102a63db);
  position: absolute;
  inset: 0;
}
.timeline-modal figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.timeline-modal figcaption {
  z-index: 2;
  color: #ffffffbf;
  font-size: 0.7rem;
  position: absolute;
  bottom: 24px;
  left: 26px;
  right: 26px;
}
.timeline-modal__content {
  flex-direction: column;
  padding: clamp(38px, 5vw, 70px);
  display: flex;
}
.timeline-modal__meta {
  align-items: center;
  gap: 14px;
  display: flex;
}
.timeline-modal__meta span {
  color: var(--brand);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
}
.timeline-modal__meta small {
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
}
.timeline-modal h2 {
  font-family: var(--display);
  letter-spacing: -0.07em;
  margin: 18px 0 22px;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 0.96;
}
.timeline-modal__summary {
  color: var(--slate);
  font-size: 1.02rem;
}
.timeline-modal__facts {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
  display: grid;
}
.timeline-modal__facts span {
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: 10px;
  padding: 14px;
  font-size: 0.72rem;
  font-weight: 750;
}
.timeline-modal blockquote {
  border-left: 3px solid var(--sun);
  color: var(--brand);
  font-family: var(--display);
  letter-spacing: -0.035em;
  margin: 18px 0 32px;
  padding-left: 20px;
  font-size: 1.25rem;
  font-weight: 430;
}
.timeline-modal .inline-link {
  cursor: pointer;
  background: none;
  width: fit-content;
  margin-top: auto;
}
.cookie-modal,
.search-modal {
  background: var(--white);
  border-radius: 26px;
  width: min(760px, 100% - 32px);
}
.cookie-modal form,
.search-modal__inner {
  padding: clamp(28px, 5vw, 52px);
}
.cookie-modal__head,
.search-modal__head {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.cookie-modal__head span,
.search-modal__head > span {
  color: var(--brand);
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 800;
}
.cookie-modal h2,
.search-modal h2 {
  font-family: var(--display);
  letter-spacing: -0.06em;
  margin: 25px 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}
.search-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 10px 18px;
  display: grid;
}
.search-form input {
  border: 0;
  outline: 0;
  min-width: 0;
  height: 44px;
}
.search-results {
  margin-top: 24px;
}
.search-results__hint {
  color: var(--muted);
  font-size: 0.7rem;
}
.search-results > div {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}
.search-results button {
  background: var(--brand-pale);
  color: var(--brand);
  cursor: pointer;
  border-radius: 999px;
  padding: 9px 13px;
}
.gallery-modal {
  background: var(--brand-deep);
  width: min(1180px, 100% - 32px);
  max-height: calc(100vh - 30px);
  color: var(--white);
  border-radius: 26px;
  overflow: visible;
}
.gallery-modal figure {
  grid-template-rows: minmax(0, 1fr) auto;
  height: min(82vh, 850px);
  margin: 0;
  display: grid;
}
.gallery-modal figure img {
  object-fit: contain;
  border-radius: 26px 26px 0 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.gallery-modal figcaption {
  color: #ffffffb8;
  text-align: center;
  padding: 20px 80px;
}
.gallery-modal__nav {
  z-index: 4;
  background: var(--white);
  width: 50px;
  height: 50px;
  color: var(--brand);
  cursor: pointer;
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: absolute;
  top: 50%;
}
.gallery-modal__nav--prev {
  left: 18px;
}
.gallery-modal__nav--next {
  right: 18px;
}
.floating-tools {
  z-index: 900;
  gap: 9px;
  display: grid;
  position: fixed;
  bottom: 22px;
  right: 22px;
}
.floating-button {
  border-radius: 50%;
  place-items: center;
  width: 50px;
  height: 50px;
  display: grid;
  box-shadow: 0 12px 32px #17347233;
}
.floating-button--whatsapp {
  color: var(--white);
  background: #19b95d;
}
.floating-button--top {
  visibility: hidden;
  background: var(--brand-deep);
  color: var(--white);
  opacity: 0;
  cursor: pointer;
  transition: all 0.22s;
  transform: translateY(10px);
}
.floating-button--top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.cookie-banner {
  z-index: 1500;
  background: var(--white);
  max-width: 980px;
  box-shadow: var(--shadow);
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
  padding: 20px 22px;
  display: flex;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner p {
  color: var(--slate);
  margin: 3px 0 0;
  font-size: 0.75rem;
}
.cookie-banner__actions,
.cookie-modal__actions {
  align-items: center;
  gap: 8px;
  display: flex;
}
.cookie-banner .button {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.62rem;
}
.cookie-modal form > label {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  display: flex;
}
.cookie-modal form > label span {
  display: grid;
}
.cookie-modal form > label small {
  color: var(--muted);
}
.cookie-modal input {
  accent-color: var(--brand);
}
@keyframes detail-in {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes flag-breathe {
  0%,
  to {
    transform: rotateY(0) skewY(0);
  }
  50% {
    transform: rotateY(-3deg) skewY(0.6deg);
  }
}
@media (width <= 1180px) {
  .content-shell {
    width: min(calc(100% - 42px), var(--content));
  }
  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  }
  .hero__portrait {
    width: 64vw;
    right: -11%;
  }
  .hero h1 {
    font-size: clamp(3.7rem, 7vw, 6.2rem);
  }
  .flag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flag-card {
    min-height: 340px;
  }
  .flag-card__icon {
    margin-block: 30px 20px;
  }
  .territory-journal {
    grid-template-columns: 1fr;
  }
  .field-album__cover {
    height: 620px;
  }
  .agenda-preview {
    min-height: auto;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-card--feature {
    grid-column: 1/-1;
    height: 580px;
  }
  .timeline__header {
    grid-template-columns: 1fr 0.42fr;
  }
  .lead-section__grid {
    grid-template-columns: 1fr;
  }
  .lead-section__story {
    max-width: 850px;
  }
  .lead-form {
    max-width: 820px;
  }
}
@media (width <= 900px) {
  .header-inner {
    height: 94px;
    padding-inline: 22px;
  }
  .site-header.is-scrolled .header-inner {
    width: calc(100% - 20px);
    height: 68px;
  }
  .header-brand img {
    width: min(260px, 39vw);
    height: 56px;
  }
  .header-cta {
    min-width: 48px;
    padding: 0 14px;
  }
  .header-cta span,
  .menu-toggle > span:last-child {
    display: none;
  }
  .section-heading,
  .timeline__header {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .section-heading > p,
  .timeline__header > p {
    max-width: 650px;
  }
  .hero {
    min-height: 960px;
    padding-top: 94px;
  }
  .hero__content {
    min-height: 820px;
    display: block;
  }
  .hero__copy {
    max-width: 650px;
    padding-top: 70px;
  }
  .hero__portrait {
    width: 78vw;
    height: 570px;
    right: -11%;
  }
  .journey-strip__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .journey-strip__inner > svg {
    display: none;
  }
  .journey-strip__inner > a {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }
  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 44px;
  }
  .about-facts {
    grid-template-columns: 1fr;
  }
  .about-portrait figcaption {
    min-width: 240px;
    right: -18px;
  }
  .instagram-header {
    grid-template-columns: 1fr;
  }
  .instagram-profile {
    width: fit-content;
  }
  .instagram-grid {
    grid-template-rows: repeat(3, 280px);
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-item > span:nth-child(3) {
    grid-template-columns: 1fr;
  }
  .timeline-item p {
    grid-area: auto/1;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-card--feature {
    grid-template-rows: 430px auto;
    grid-template-columns: 1fr;
  }
  .site-footer__top {
    gap: 45px;
  }
  .site-footer__top,
  .timeline-modal__layout {
    grid-template-columns: 1fr;
  }
  .timeline-modal figure {
    min-height: 360px;
    max-height: 420px;
  }
}
@media (width <= 640px) {
  .content-shell {
    width: min(calc(100% - 30px), var(--content));
  }
  .section-pad {
    padding-block: 78px;
  }
  .section-heading h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }
  .header-inner {
    grid-template-columns: 52px 1fr 52px;
    height: 82px;
    padding-inline: 15px;
  }
  .site-header.is-scrolled {
    padding-top: 8px;
  }
  .site-header.is-scrolled .header-inner {
    border-radius: 18px;
    height: 62px;
    padding-inline: 9px;
  }
  .header-tools {
    gap: 0;
  }
  .header-search {
    display: none;
  }
  .header-brand img,
  .site-header.is-scrolled .header-brand img {
    width: min(225px, 60vw);
    height: 48px;
  }
  .header-cta {
    justify-content: center;
    min-width: 46px;
    height: 46px;
  }
  .header-cta,
  .menu-toggle {
    width: 46px;
    padding: 0;
  }
  .menu-toggle__icon {
    width: 24px;
  }
  .menu-panel__footer {
    display: grid;
  }
  .hero {
    min-height: 920px;
    padding-top: 82px;
  }
  .hero__background {
    background:
      linear-gradient(#224395, #224395f7 62%, #224395d4),
      url(../images/hero-background.webp) 50% / cover no-repeat;
  }
  .hero__content {
    min-height: 820px;
  }
  .hero__copy {
    padding-top: 52px;
  }
  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 4.8rem);
  }
  .hero__lead {
    font-size: 0.92rem;
  }
  .hero__portrait {
    width: 112vw;
    height: 440px;
    right: -22%;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait {
    width: calc(100% - 14px);
  }
  .about-portrait img {
    aspect-ratio: 0.92;
  }
  .about-portrait figcaption {
    min-width: 245px;
    padding: 14px 16px;
    bottom: 20px;
    right: -12px;
  }
  .editorial-intro h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .flag-grid {
    grid-template-columns: 1fr;
  }
  .flag-card {
    min-height: 315px;
  }
  .field-album__cover {
    height: 490px;
  }
  .field-album__thumbs {
    grid-template-columns: repeat(3, 160px);
    overflow-x: auto;
  }
  .agenda-preview {
    padding: 18px;
  }
  .agenda-preview__head {
    align-items: start;
  }
  .agenda-preview__head a {
    background: var(--brand-pale);
    border-radius: 50%;
    justify-content: center;
    width: 44px;
    height: 44px;
  }
  .agenda-preview__head a:not(svg) {
    font-size: 0;
  }
  .agenda-preview__head a svg {
    font-size: 1rem;
  }
  .agenda-card {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }
  .agenda-card > svg {
    display: none;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-card,
  .video-card--feature {
    grid-column: auto;
    height: 460px;
  }
  .instagram-grid {
    scroll-snap-type: x mandatory;
    display: flex;
    overflow-x: auto;
  }
  .insta-card,
  .insta-card--tall,
  .insta-card--wide {
    scroll-snap-align: start;
    min-width: 82vw;
    height: 480px;
  }
  .timeline__header {
    margin-bottom: 44px;
  }
  .timeline__header h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .timeline__items:before {
    left: 10px;
  }
  .timeline-item {
    grid-template-columns: 28px 1fr auto;
    padding-block: 25px;
  }
  .timeline-item__year {
    grid-column: 2;
    font-size: 0.8rem;
  }
  .timeline-item__dot {
    grid-area: 1/1/3;
  }
  .timeline-item > span:nth-child(3) {
    grid-column: 2;
  }
  .timeline-item > svg {
    grid-area: 1/3/3;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card--feature {
    grid-template-rows: 350px auto;
  }
  .campaign-flag {
    width: calc(100% - 20px);
    height: 180px;
    margin-left: 10px;
  }
  .campaign-flag__cloth {
    height: 145px;
  }
  .form-grid,
  .impact-numbers,
  .interest-field {
    grid-template-columns: 1fr;
  }
  .lead-form {
    padding: 24px 18px;
  }
  .site-footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__bottom {
    align-items: flex-start;
    gap: 25px;
    padding-block: 24px;
  }
  .timeline-modal__content {
    padding: 34px 22px;
  }
  .timeline-modal__facts {
    grid-template-columns: 1fr;
  }
  .search-form {
    grid-template-columns: auto 1fr;
  }
  .search-form .button {
    grid-column: 1/-1;
  }
  .cookie-banner {
    display: grid;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
  }
  .floating-tools {
    bottom: 14px;
    right: 14px;
  }
}
.header-brand > img {
  object-fit: contain;
}
.hero__portrait:after,
.hero__portrait:before {
  clip-path: polygon(
    12% 7%,
    31% 1%,
    52% 4%,
    73% 0,
    92% 13%,
    97% 34%,
    93% 53%,
    100% 78%,
    87% 96%,
    62% 94%,
    38% 100%,
    12% 92%,
    7% 70%,
    1% 47%
  );
  animation: magazine-cut-drift 8s ease-in-out infinite;
}
.hero__portrait:after {
  background: #294b9d;
  inset: 9.2% 7.3% 1.4% 19.2%;
}
@keyframes magazine-cut-drift {
  0%,
  to {
    translate: 0;
  }
  50% {
    translate: -5px -3px;
  }
}
.journey-strip__grid > a {
  --journey-accent: var(--brand);
}
.journey-strip__grid > a:nth-child(n) .journey-strip__icon,
.journey-strip__icon {
  place-items: center;
  display: grid;
}
.journey-strip__grid strong {
  font-size: 0.84rem;
  line-height: 1.05;
}
.about-portrait:after,
.about-portrait:before {
  content: "";
  pointer-events: none;
  position: absolute;
}
.about-portrait:after {
  clip-path: polygon(22% 0, 100% 9%, 84% 100%, 0 76%);
  background: var(--green);
  width: 42%;
  height: 38%;
  bottom: 98px;
}
.about-portrait figcaption.about-portrait__statement,
.about-portrait__statement {
  align-items: start;
}
.about-portrait__statement blockquote {
  font-size: clamp(1.05rem, 1.45vw, 1.42rem);
  line-height: 1.25;
}
.about-portrait__statement > span {
  color: #ffffffbd;
  font-size: 0.72rem;
  display: grid;
}
.about-portrait__statement small {
  color: var(--sun) !important;
  font-size: 0.55rem !important;
}
.about-facts {
  margin: 30px 0;
}
.timeline__hint {
  border: 1px solid #ffffff29;
  border-left: 4px solid var(--sun);
  background: #ffffff0f;
  border-radius: 14px;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  max-width: 390px;
  padding: 16px 18px;
  display: grid;
}
.timeline__hint > svg {
  color: var(--sun);
}
.timeline__hint p,
.timeline__hint span,
.timeline__hint strong {
  margin: 0;
  display: block;
}
.timeline__hint strong {
  color: var(--white);
  font-size: 0.76rem;
}
.timeline__hint span {
  color: #ffffff9e;
  margin-top: 3px;
  font-size: 0.69rem;
}
.flag-grid {
  display: grid;
}
.flag-accordion {
  --flag-accent: var(--brand);
  border: 1px solid var(--line);
  border-left: 5px solid var(--flag-accent);
  background: var(--paper);
  border-radius: 18px;
  transition:
    border-color 0.2s,
    box-shadow 0.24s,
    background 0.2s;
  overflow: hidden;
}
.flag-accordion--women {
  --flag-accent: #c34a82;
}
.flag-accordion--communication {
  --flag-accent: var(--brand-bright);
}
.flag-accordion--values {
  --flag-accent: var(--green);
}
.flag-accordion--development {
  --flag-accent: var(--sun);
}
.flag-accordion.is-active {
  border-color: #22439547;
  border-left-color: var(--flag-accent);
  background: var(--white);
  grid-column: 1/-1;
  box-shadow: 0 18px 48px #2243951a;
}
.flag-accordion .flag-card {
  width: 100%;
  min-height: 162px;
  color: var(--ink);
  box-shadow: none;
  background: none;
  border: 0;
  border-radius: 0;
  grid-template-rows: 1fr;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 23px 24px;
  display: grid;
  overflow: visible;
  transform: none;
}
.flag-accordion .flag-card:after,
.flag-accordion .flag-card:before {
  display: none;
}
.flag-accordion .flag-card.is-active,
.flag-accordion .flag-card:hover {
  background: color-mix(in srgb, var(--flag-accent) 5%, var(--white));
  color: var(--ink);
  box-shadow: none;
  transform: none;
}
.flag-accordion .flag-card.is-active .flag-card__icon,
.flag-accordion .flag-card__icon {
  width: 48px;
  height: 48px;
  color: var(--flag-accent);
  background: none;
  border-radius: 0;
  place-items: center;
  margin: 0;
  display: grid;
}
.flag-card__copy {
  gap: 4px;
  display: grid;
}
.flag-accordion .flag-card.is-active .flag-card__number,
.flag-accordion .flag-card__number {
  color: var(--flag-accent);
  font-size: 0.64rem;
  position: static;
}
.flag-accordion .flag-card h3 {
  grid-column: auto;
  max-width: none;
  font-size: clamp(1.25rem, 1.75vw, 1.72rem);
}
.flag-accordion .flag-card p,
.flag-accordion .flag-card.is-active p {
  color: var(--slate);
  grid-column: auto;
  margin: 0;
  font-size: 0.78rem;
}
.flag-accordion .flag-card.is-active .flag-card__action,
.flag-accordion .flag-card__action {
  background: var(--white);
  width: auto;
  min-height: 42px;
  color: var(--brand);
  white-space: nowrap;
  border: 1px solid #22439529;
  border-radius: 999px;
  grid-column: auto;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0 15px;
  display: inline-flex;
}
.flag-accordion .flag-card.is-active .flag-card__action,
.flag-accordion .flag-card:hover .flag-card__action {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}
.flag-accordion__panel:not([hidden]) {
  border-top: 1px solid var(--line);
  animation: detail-in 0.42s var(--ease) both;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  display: grid;
}
.flag-accordion__context {
  padding: clamp(28px, 4vw, 48px);
}
.flag-accordion__context > small,
.flag-plan > span {
  color: var(--brand);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 800;
}
.flag-accordion__context > p {
  max-width: 760px;
  color: var(--slate);
  margin: 12px 0 24px;
  font-size: 0.94rem;
}
.flag-accordion__pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  display: grid;
}
.flag-accordion__pillars span {
  border: 1px solid var(--line);
  min-height: 58px;
  color: var(--brand);
  border-radius: 12px;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  font-size: 0.72rem;
  font-weight: 750;
  display: flex;
}
.flag-plan {
  border-left: 1px solid var(--line);
  background: var(--brand-pale);
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
}
.flag-plan h4 {
  font-family: var(--display);
  letter-spacing: -0.045em;
  margin: 8px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1;
}
.flag-plan p {
  color: var(--slate);
  margin: 0 0 22px;
  font-size: 0.78rem;
}
.flag-plan a {
  min-height: 42px;
  color: var(--brand);
  text-transform: uppercase;
  border: 1px solid #2243952e;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  font-size: 0.66rem;
  font-weight: 800;
  display: inline-flex;
}
.flag-plan a + a {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
  margin-top: 8px;
}
.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.news-card,
.news-card.news-card--feature {
  border: 0;
  border-top: 5px solid var(--brand);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: #f4f5f8;
  grid-column: auto;
  grid-template-rows: 270px 1fr;
  grid-template-columns: 1fr;
  padding: 0;
  display: grid;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #2243951f;
}
.news-card:nth-child(2) {
  border-top-color: var(--sun);
}
.news-card:nth-child(3) {
  border-top-color: var(--green);
}
.news-card:nth-child(4) {
  border-top-color: var(--brand-bright);
}
.news-card__media {
  display: block;
}
.news-card__body {
  flex-direction: column;
  padding: 28px 30px 24px;
  display: flex;
}
.news-card__category {
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 800;
}
.news-card__title {
  font-family: var(--display);
  letter-spacing: -0.05em;
  margin: 10px 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.04;
  display: block;
}
.news-card__description {
  color: var(--slate);
  font-size: 0.8rem;
  line-height: 1.5;
  display: block;
}
.news-card__description,
.news-card__footer {
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
}
.news-card__footer {
  border-top: 1px solid var(--line);
  color: inherit;
  font-size: inherit;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 18px;
  display: grid;
}
.news-card__author {
  align-items: center;
  gap: 9px;
  display: flex;
}
.news-card__author > img {
  object-fit: cover;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}
.news-card__author b,
.news-card__author small,
.news-card__author > span {
  display: block;
}
.news-card__author b {
  color: var(--ink);
  font-size: 0.68rem;
}
.news-card__author small {
  color: var(--muted);
  font-size: 0.58rem;
}
.news-card__meta {
  color: var(--muted);
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.6rem;
  display: flex;
}
.news-card__meta > span {
  align-items: center;
  gap: 5px;
  display: inline-flex;
}
.news-card__meta svg {
  width: 14px;
  height: 14px;
}
.news-card__footer > svg {
  color: var(--brand);
}
.clipping-card__body p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}
.floating-button--whatsapp > img,
.site-footer__social a img {
  width: 21px;
  height: 21px;
}
.instagram-profile__mark img,
.social-modal__profile > span img {
  filter: brightness(0) invert();
  width: 21px;
  height: 21px;
}
.site-footer__social a img {
  color: currentColor;
  filter: brightness(0) invert();
}
.site-footer__social a:hover img {
  filter: brightness(0) saturate() invert(15%) sepia(36%) saturate(2290%)
    hue-rotate(188deg) brightness(89%) contrast(99%);
}
.site-footer__bottom {
  min-height: 108px;
}
.site-footer__credit a {
  color: var(--sun);
  text-underline-offset: 3px;
  text-decoration: underline;
}
.floating-button--whatsapp > img {
  color: var(--white);
  filter: brightness(0) invert();
}
@media (width <= 1180px) {
  .header-brand {
    width: min(330px, 33vw);
  }
  .journey-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lead-section__grid {
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  }
  .interest-field {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 900px) {
  .hero__copy {
    min-height: auto;
  }
  .about-grid,
  .lead-section__grid {
    grid-template-columns: 1fr;
  }
  .about-portrait {
    width: min(620px, 100%);
    margin-inline: auto;
  }
  .flag-accordion__panel:not([hidden]),
  .timeline__header {
    grid-template-columns: 1fr;
  }
  .flag-plan {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .lead-section__story {
    max-width: none;
  }
}
@media (width <= 760px) {
  .header-brand,
  .site-header.is-scrolled .header-brand {
    width: min(230px, 52vw);
    height: 52px;
  }
  .hero__portrait:after,
  .hero__portrait:before {
    animation: none;
  }
  .flag-grid,
  .journey-strip__grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .journey-strip__grid > a {
    min-height: 86px;
  }
  .about-portrait__media {
    height: 520px;
  }
  .about-portrait figcaption.about-portrait__statement,
  .about-portrait__statement {
    width: calc(100% - 18px);
    margin-left: 18px;
    padding: 22px;
  }
  .about-facts {
    grid-template-columns: 1fr;
  }
  .flag-accordion .flag-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    min-height: 178px;
    padding: 20px 17px;
  }
  .flag-accordion .flag-card__icon {
    width: 38px;
    height: 38px;
  }
  .flag-accordion .flag-card.is-active .flag-card__action,
  .flag-accordion .flag-card__action {
    grid-column: 2;
    justify-self: start;
  }
  .flag-accordion__pillars {
    grid-template-columns: 1fr;
  }
  .news-card,
  .news-card.news-card--feature {
    grid-template-rows: 230px 1fr;
  }
  .news-card__footer {
    grid-template-columns: 1fr auto;
  }
  .news-card__meta {
    display: none;
  }
  .form-grid,
  .interest-field {
    grid-template-columns: 1fr;
  }
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px;
  }
}
@keyframes header-office-type {
  0%,
  8% {
    width: 0;
  }
  28%,
  78% {
    width: 132px;
  }
  92%,
  to {
    width: 0;
  }
}
.hero__copy {
  min-height: 706px;
}
@keyframes hero-angular-frame {
  0%,
  to {
    translate: 0;
  }
  50% {
    translate: -5px -4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__portrait:after,
  .hero__portrait:before {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
  *,
  :after,
  :before {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
  }
  .campaign-flag__cloth,
  .campaign-flag__cloth > span,
  .campaign-flag__pole,
  .reveal {
    transform: none;
  }
}
.section-heading h2 {
  font-size: clamp(2.55rem, 4.35vw, 4.85rem);
  line-height: 1;
}
.header-brand {
  width: min(310px, 31vw);
  height: 64px;
}
.header-brand > img {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__content {
  min-height: 726px;
}
.hero__actions {
  align-items: center;
  gap: 20px 30px;
}
.hero__secondary {
  color: #ffffffdb;
  letter-spacing: 0.025em;
  background: none;
  border-bottom: 1px solid #ffffff80;
  gap: 8px;
  min-height: 38px;
  padding: 0 2px 4px;
  font-size: 0.72rem;
}
.hero__secondary:hover {
  border-color: var(--sun);
  color: var(--white);
}
.hero__portrait:before {
  transform-origin: bottom;
  filter: drop-shadow(8px 12px 22px #102a633d);
  inset: 0;
  transform: translate(11px, 7px) scale(1.022) rotate(-0.45deg);
  -webkit-mask: url(../images/keliana-hero-cutout.webp) bottom/contain no-repeat;
  mask: url(../images/keliana-hero-cutout.webp) bottom/contain no-repeat;
}
.journey-strip__inner > a {
  transition:
    background 0.18s ease,
    transform 0.22s var(--ease);
  border-radius: 12px;
  padding: 10px 12px;
}
.journey-strip__inner > a:hover {
  background: var(--brand-pale);
  transform: translateY(-2px);
}
.about-grid {
  grid-template-columns: minmax(370px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}
.about-portrait:before {
  width: 72%;
  height: 620px;
  top: 38px;
  bottom: auto;
  right: -18px;
}
.about-portrait__media {
  z-index: 1;
  background: linear-gradient(145deg, #777b78, #b5b7b0);
  border-radius: 30px;
  position: relative;
}
.about-portrait__media > img {
  aspect-ratio: auto;
  object-fit: fill;
  object-position: initial;
  border-radius: 0;
  width: auto;
  max-width: none;
  height: 78%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.about-portrait figcaption {
  bottom: 24px;
  right: 18px;
}
.about-portrait blockquote {
  border-left: 3px solid var(--sun);
  color: #ffffffdb;
  font-family: var(--display);
  letter-spacing: -0.035em;
  margin: 36px 0 0;
  padding: 6px 8px 6px 26px;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  font-weight: 360;
  line-height: 1.35;
  position: relative;
}
.editorial-intro h2 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 4.2vw, 4.45rem);
  line-height: 1;
}
.about-copy {
  gap: 15px;
  max-width: 760px;
  display: grid;
}
.timeline {
  background: var(--brand-deep);
}
.timeline__layout {
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
  align-items: start;
  gap: clamp(52px, 8vw, 120px);
  display: grid;
}
.timeline__header {
  margin: 0;
  display: block;
  position: sticky;
  top: 118px;
}
.timeline__header h2 {
  margin-bottom: 28px;
  font-size: clamp(2.45rem, 3.8vw, 4.2rem);
  line-height: 1;
}
.timeline__header > p {
  max-width: 390px;
}
.timeline__items:before {
  left: 98px;
}
.timeline-item {
  grid-template-columns: 74px 28px 112px minmax(0, 1fr) auto;
  gap: 14px 18px;
  padding: 20px 22px 20px 0;
}
.timeline-item__dot {
  justify-self: center;
}
.timeline-item__thumb {
  background: #ffffff14;
  border-radius: 12px;
  width: 112px;
  height: 82px;
  overflow: hidden;
}
.timeline-item__thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.timeline-item:nth-child(3) .timeline-item__thumb img {
  transform: rotate(-90deg) scale(1.55);
}
.timeline-item:nth-child(4) .timeline-item__thumb img {
  object-position: center 20%;
}
.timeline-item__copy {
  align-content: center;
  gap: 2px;
}
.timeline-item__copy p,
.timeline-item__copy small,
.timeline-item__copy strong {
  grid-area: auto;
}
.timeline-item__copy p {
  margin-top: 3px;
}
.instagram-header h2 {
  font-size: clamp(2.55rem, 4.25vw, 4.7rem);
}
.site-footer__nav {
  gap: 14px;
}
.site-footer__nav > .footer-nav__group {
  min-height: 280px;
  transition:
    transform 0.22s var(--ease),
    background 0.22s ease,
    border-color 0.22s ease;
  background: #ffffff0b;
  border: 1px solid #ffffff24;
  border-radius: 18px;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  display: flex;
}
.site-footer__nav > .footer-nav__group:hover {
  background: #ffffff12;
  border-color: #e8d01d66;
  transform: translateY(-4px);
}
.footer-nav__title {
  color: var(--sun);
  border-bottom: 1px solid #ffffff21;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 15px;
  display: flex;
}
.footer-nav__title strong {
  margin: 0;
}
.site-footer__nav .footer-nav__group > a,
.site-footer__nav .footer-nav__group > button {
  color: #ffffffb3;
  width: 100%;
  min-height: 44px;
  transition:
    color 0.18s ease,
    padding 0.22s var(--ease);
  border-bottom: 1px solid #ffffff17;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.site-footer__nav .footer-nav__group > a:hover,
.site-footer__nav .footer-nav__group > button:hover {
  color: var(--sun);
  padding-left: 6px;
}
.site-footer__nav .footer-nav__group > a svg,
.site-footer__nav .footer-nav__group > button svg {
  width: 15px;
  height: 15px;
}
@keyframes logo-flag-wave {
  0%,
  to {
    filter: none;
    transform: translateY(0) rotate(0);
  }
  45% {
    filter: drop-shadow(0 3px 3px #e8d01d38);
    transform: translateY(-1.5px) rotate(-0.8deg);
  }
  60% {
    transform: translateY(0.5px) rotate(0.45deg);
  }
}
@keyframes logo-number-focus {
  0%,
  25%,
  8%,
  to {
    filter: none;
    transform: scale(1);
  }
  14% {
    filter: brightness(1.12) drop-shadow(0 2px 3px #22439538);
    transform: scale(1.1);
  }
  19% {
    filter: brightness(1.06);
    transform: scale(1.035);
  }
}
@media (width <= 1180px) {
  .hero__portrait {
    width: min(980px, 76vw);
    right: -17%;
  }
  .timeline__layout {
    grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1.52fr);
    gap: 46px;
  }
  .timeline-item {
    grid-template-columns: 66px 26px 94px minmax(0, 1fr) auto;
  }
  .timeline__items:before {
    left: 87px;
  }
  .timeline-item__thumb {
    width: 94px;
    height: 72px;
  }
}
@media (width <= 900px) {
  .header-brand,
  .site-header.is-scrolled .header-brand {
    width: min(260px, 39vw);
    height: 56px;
  }
  .hero {
    min-height: 1000px;
  }
  .hero__copy {
    padding-bottom: 190px;
  }
  .hero__portrait {
    width: 92vw;
    height: 620px;
    right: -19%;
  }
  .about-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  }
  .about-portrait__media {
    height: 560px;
  }
  .about-portrait:before {
    height: 530px;
  }
  .timeline__layout {
    grid-template-columns: 1fr;
  }
  .timeline__header {
    max-width: 720px;
    margin-bottom: 18px;
    position: relative;
    top: auto;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
  }
}
@media (width <= 640px) {
  .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }
  .header-brand,
  .site-header.is-scrolled .header-brand {
    width: min(225px, 60vw);
    height: 48px;
  }
  .hero {
    min-height: 960px;
  }
  .hero h1 {
    font-size: clamp(3.05rem, 14.2vw, 4.25rem);
  }
  .hero__copy {
    padding-top: 46px;
    padding-bottom: 190px;
  }
  .hero__portrait {
    width: 126vw;
    height: 500px;
    right: -28%;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait__media {
    height: 540px;
  }
  .about-portrait:before {
    height: 510px;
  }
  .about-portrait blockquote {
    margin-top: 30px;
  }
  .editorial-intro h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.45rem);
  }
  .timeline__header h2 {
    font-size: clamp(2.3rem, 11vw, 3.35rem);
  }
  .timeline__items:before {
    left: 10px;
  }
  .timeline-item {
    grid-template-columns: 24px 80px minmax(0, 1fr) auto;
    gap: 10px 12px;
    padding: 18px 0;
  }
  .timeline-item__dot {
    grid-area: 1/1/3;
  }
  .timeline-item__year {
    grid-area: 1/2;
  }
  .timeline-item__thumb {
    grid-area: 2/2;
    width: 80px;
    height: 64px;
  }
  .timeline-item__copy {
    grid-area: 1/3/3;
  }
  .timeline-item > svg {
    grid-area: 1/4/3;
  }
  .site-footer__nav {
    grid-template-columns: 1fr;
  }
  .site-footer__nav > .footer-nav__group {
    min-height: auto;
  }
}
.hero__content {
  grid-template-columns: minmax(0, 1.13fr) minmax(390px, 0.67fr);
}
.hero h1 {
  font-size: clamp(3.45rem, 4.55vw, 5.35rem);
  line-height: 0.94;
}
.hero h1 > span {
  white-space: nowrap;
}
.hero__portrait {
  width: min(1120px, 72vw);
  height: 820px;
  right: -18%;
}
.hero__portrait:before {
  z-index: -1;
  opacity: 0.68;
  content: "";
  filter: none;
  background: linear-gradient(145deg, #ffffff1f, #2f67d833);
  border-radius: 42% 58% 34% 66%/56% 34% 66% 44%;
  animation: hero-shape-drift 8s ease-in-out infinite;
  inset: 13% 8% 4% 17%;
  transform: rotate(-3deg);
}
@keyframes hero-shape-drift {
  0%,
  to {
    transform: translateZ(0) rotate(-3deg);
  }
  50% {
    transform: translate3d(-12px, -9px, 0) rotate(1deg);
  }
}
.about-portrait blockquote {
  color: var(--white);
  background: #ffffff13;
  border-left-width: 5px;
  border-radius: 0 20px 20px 0;
  margin-top: 28px;
  padding: 24px 28px 24px 34px;
  font-style: italic;
  box-shadow: inset 0 0 0 1px #ffffff14;
}
.about-facts > div {
  border-radius: 16px;
  min-height: 150px;
  padding: 22px;
}
.about-facts > div:first-child {
  background: var(--brand-bright);
}
.about-facts > div:nth-child(2) {
  background: var(--sun);
  color: var(--brand-dark);
}
.about-facts > div:nth-child(2) p,
.about-facts > div:nth-child(2) span {
  color: #102a63b8;
}
.about-facts > div:nth-child(3) {
  background: var(--green);
}
.timeline.section-pad {
  padding-block: clamp(78px, 7vw, 112px);
}
.timeline__layout {
  display: block;
}
.timeline__header {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.35fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 44px;
  display: grid;
  position: relative;
  top: auto;
}
.timeline__header h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.45rem, 3.75vw, 4.1rem);
}
.timeline__header > p {
  max-width: 310px;
  margin: 0 0 7px;
}
.timeline__items {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding-top: 26px;
  display: grid;
}
.timeline__items:before {
  width: auto;
  height: 1px;
  inset: 8px 9% auto;
}
.timeline-item {
  background: #ffffff0b;
  border: 1px solid #ffffff24;
  border-radius: 18px;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
  min-height: 300px;
  padding: 20px;
  display: flex;
}
.timeline-item:last-child {
  border-bottom: 1px solid #ffffff24;
}
.timeline-item:hover {
  background: #ffffff17;
  border-color: #e8d01d8c;
  padding: 20px;
  transform: translateY(-6px);
}
.timeline-item__dot {
  border-color: var(--brand-deep);
  position: absolute;
  top: -25px;
  left: calc(50% - 7px);
}
.timeline-item__year {
  font-size: 0.82rem;
}
.timeline-item__thumb {
  border-radius: 13px;
  width: 100%;
  height: 126px;
  display: block;
}
.timeline-item__copy {
  gap: 5px;
  display: grid;
}
.timeline-item__copy small,
.timeline-item__copy strong {
  grid-area: auto;
}
.timeline-item__copy strong {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
}
.timeline-item > svg {
  position: absolute;
  bottom: 18px;
  right: 18px;
}
.video-card {
  text-align: left;
  cursor: pointer;
  width: 100%;
  padding: 0;
}
.video-card__play {
  background: var(--sun);
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  color: var(--brand-dark) !important;
  letter-spacing: 0.045em !important;
  font-size: 0.67rem !important;
}
.video-card__play svg {
  width: 17px;
  height: 17px;
}
.insta-card__type {
  align-items: center;
  gap: 7px;
  display: inline-flex;
}
.insta-card__type svg {
  width: 15px;
  height: 15px;
}
.news-card__body > button {
  border-top: 1px solid var(--line);
  color: var(--brand);
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 20px 0 0;
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
}
.media-monitor {
  background: var(--brand-pale);
  position: relative;
  overflow: hidden;
}
.media-monitor:before {
  content: "";
  border: 74px solid #2243950e;
  border-radius: 50%;
  width: 660px;
  height: 660px;
  position: absolute;
  top: -280px;
  right: -230px;
}
.media-monitor__head {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: 54px;
  display: grid;
  position: relative;
}
.media-monitor__head h2 {
  max-width: 850px;
  font-family: var(--display);
  letter-spacing: -0.065em;
  margin: 0;
  font-size: clamp(2.55rem, 4.2vw, 4.65rem);
  font-weight: 650;
  line-height: 1;
}
.media-monitor__head h2 em {
  color: var(--brand);
  font-weight: 250;
}
.media-monitor__head > div:last-child > p {
  color: var(--slate);
  margin: 0 0 18px;
}
.media-monitor__head > div:last-child > span {
  color: var(--brand);
  letter-spacing: 0.055em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
}
.media-monitor__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  display: grid;
  position: relative;
}
.clipping-card {
  background: var(--white);
  transition:
    transform 0.26s var(--ease),
    box-shadow 0.26s ease;
  border: 1px solid #22439526;
  border-radius: 22px;
  grid-template-rows: 230px 1fr;
  display: grid;
  overflow: hidden;
}
.clipping-card--feature {
  grid-column: 1/-1;
  grid-template-rows: 430px;
  grid-template-columns: 1.08fr 0.92fr;
}
.clipping-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.clipping-card__media {
  position: relative;
  overflow: hidden;
}
.clipping-card__media > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.65s var(--ease);
}
.clipping-card--feature .clipping-card__media > img {
  object-position: 58% center;
}
.clipping-card:hover .clipping-card__media > img {
  transform: scale(1.035);
}
.source-badge {
  z-index: 2;
  background: var(--brand-deep);
  min-width: 106px;
  filter: grayscale();
  border: 1px solid #ffffff59;
  border-radius: 11px;
  padding: 10px 14px;
  line-height: 1;
  transition:
    filter 0.22s,
    background 0.22s,
    color 0.22s;
  display: grid;
  position: absolute;
  top: 18px;
  left: 18px;
  box-shadow: 0 10px 25px #102a6333;
}
.source-badge b {
  font-family: var(--display);
  font-size: 0.95rem;
}
.source-badge small {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
  font-size: 0.55rem;
}
.clipping-card:hover .source-badge {
  border-color: var(--sun);
  filter: none;
}
.clipping-card__body {
  flex-direction: column;
  padding: clamp(23px, 3vw, 42px);
  display: flex;
}
.clipping-card__body > span {
  color: var(--brand);
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 800;
}
.clipping-card h3 {
  font-family: var(--display);
  letter-spacing: -0.052em;
  margin: 12px 0 14px;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  line-height: 1.05;
}
.clipping-card:not(.clipping-card--feature) h3 {
  font-size: 1.38rem;
}
.clipping-card__body p {
  color: var(--slate);
  font-size: 0.8rem;
}
.clipping-card__body > strong {
  border-top: 1px solid var(--line);
  color: var(--brand);
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.68rem;
  display: inline-flex;
}
.lead-form {
  gap: 18px;
}
.interest-field {
  order: 0;
  gap: 10px;
}
.interest-field legend {
  margin-bottom: 2px;
}
.interest-field label > span {
  background: var(--white);
  text-align: left;
  border-width: 1px 1px 1px 4px;
  transition:
    transform 0.18s,
    background 0.18s,
    border-color 0.18s,
    color 0.18s;
  display: flex;
}
.interest-field label > span svg {
  flex: none;
  width: 20px;
  height: 20px;
}
.interest-field label > span b {
  font-size: 0.69rem;
}
.interest-field--women > span {
  border-left-color: #cd5b92 !important;
}
.interest-field--communication > span {
  border-left-color: var(--brand-bright) !important;
}
.interest-field--values > span {
  border-left-color: var(--green) !important;
}
.interest-field--development > span {
  border-left-color: var(--sun) !important;
}
.interest-field input:checked + span {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px #2243952e;
  border-color: var(--brand) !important;
}
.interest-field--women input:checked + span {
  background: #b93e79;
  border-color: #b93e79 !important;
}
.interest-field--communication input:checked + span {
  background: var(--brand-bright);
  border-color: var(--brand-bright) !important;
}
.interest-field--values input:checked + span {
  background: var(--green);
  border-color: var(--green) !important;
}
.interest-field--development input:checked + span {
  background: var(--sun);
  color: var(--brand-dark);
  border-color: var(--sun) !important;
}
.message-field {
  display: grid;
}
.lead-form textarea {
  resize: vertical;
  border: 1px solid var(--line);
  background: var(--paper);
  width: 100%;
  min-height: 92px;
  color: var(--ink);
  font: inherit;
  border-radius: 10px;
  outline: 0;
  padding: 13px 14px;
  font-size: 0.78rem;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--brand-bright);
  box-shadow: 0 0 0 3px #2f67d81a;
}
.checkbox-field input {
  appearance: none;
  border: 2px solid var(--brand);
  background: var(--white);
  cursor: pointer;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
}
.checkbox-field input:checked {
  background-color: var(--brand);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.4' d='m5 10 3 3 7-7'/%3E%3C/svg%3E");
  background-position: 50%;
  background-size: 16px;
}
.social-modal {
  border-radius: 28px;
  width: min(1120px, 100% - 32px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: var(--brand);
  color: var(--white);
  overflow: hidden;
}
.social-modal__layout {
  z-index: 2;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 670px;
  display: grid;
  position: relative;
}
.social-modal figure {
  background: var(--brand-deep);
  min-height: 670px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.social-modal figure > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.social-modal figure figcaption {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #102a63c7;
  border: 1px solid #ffffff38;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  display: flex;
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
}
.social-modal figure figcaption span {
  color: var(--sun);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.69rem;
  font-weight: 800;
}
.social-modal figure figcaption small {
  color: #ffffffad;
}
.social-modal__content {
  flex-direction: column;
  padding: clamp(42px, 6vw, 78px);
  display: flex;
}
.social-modal__profile {
  align-items: center;
  gap: 12px;
  margin-bottom: auto;
  display: flex;
}
.social-modal__profile > span {
  background: var(--sun);
  width: 44px;
  height: 44px;
  color: var(--brand-dark);
  border-radius: 50%;
  place-items: center;
  display: grid;
}
.social-modal__profile > div {
  display: grid;
}
.social-modal__content > p:not(.eyebrow),
.social-modal__profile small {
  color: #ffffffad;
}
.social-modal__content .eyebrow {
  margin-top: 48px;
  margin-bottom: 15px;
}
.social-modal h2 {
  font-family: var(--display);
  letter-spacing: -0.07em;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.15rem);
  line-height: 0.98;
}
.social-modal__meta {
  background: #ffffff29;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 28px 0;
  display: grid;
}
.social-modal__meta > div {
  background: var(--brand);
  gap: 3px;
  padding: 15px;
  display: grid;
}
.social-modal__meta small {
  color: #ffffff8f;
  text-transform: uppercase;
  font-size: 0.58rem;
}
.social-modal__meta strong {
  font-size: 0.74rem;
}
.social-modal .button {
  width: fit-content;
}
.social-modal__shape {
  z-index: 1;
  border: 55px solid #ffffff0d;
  border-radius: 50%;
  position: absolute;
}
.social-modal__shape--one {
  width: 480px;
  height: 480px;
  top: -170px;
  right: -150px;
}
.social-modal__shape--two {
  border-color: #e8d01d1f;
  width: 240px;
  height: 240px;
  bottom: -90px;
  right: 26%;
}
.floating-button--top {
  background: var(--sun);
  color: var(--brand-dark);
}
.floating-button--whatsapp {
  position: relative;
}
.floating-button__label {
  background: var(--brand-dark);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 0.62rem;
  font-weight: 800;
  transition:
    transform 0.18s,
    opacity 0.18s;
  position: absolute;
  right: 60px;
  transform: translateX(6px);
}
.floating-button--whatsapp:hover .floating-button__label {
  opacity: 1;
  transform: none;
}
@media (width <= 1180px) {
  .hero__content {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  }
  .hero__portrait {
    width: min(1060px, 78vw);
    right: -23%;
  }
  .timeline-item {
    min-height: 285px;
  }
  .timeline-item__thumb {
    width: 100%;
    height: 110px;
  }
}
@media (width <= 900px) {
  .hero__portrait {
    width: 96vw;
    height: 640px;
    right: -24%;
  }
  .timeline__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline__items {
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    grid-template-columns: none;
    grid-auto-columns: minmax(230px, 68vw);
    grid-auto-flow: column;
    padding: 28px 4px 18px;
    overflow-x: auto;
  }
  .timeline__items:before {
    left: 120px;
    right: 120px;
  }
  .timeline-item {
    scroll-snap-align: start;
  }
  .media-monitor__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .social-modal__layout {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
@media (width <= 760px) {
  .hero h1 {
    font-size: clamp(2.85rem, 12.3vw, 4rem);
  }
  .hero h1 > span {
    white-space: normal;
  }
  .about-facts {
    grid-template-columns: 1fr;
  }
  .about-facts > div {
    min-height: auto;
  }
  .media-monitor__grid {
    grid-template-columns: 1fr;
  }
  .clipping-card,
  .clipping-card--feature {
    grid-column: auto;
    grid-template-rows: 240px 1fr;
    grid-template-columns: 1fr;
  }
  .social-modal {
    overflow: auto;
  }
  .social-modal__layout {
    grid-template-columns: 1fr;
  }
  .social-modal figure {
    min-height: 390px;
  }
  .social-modal__content {
    padding: 34px 26px;
  }
  .social-modal__profile {
    margin-bottom: 28px;
  }
  .social-modal__content .eyebrow {
    margin-top: 0;
  }
}
@media (width <= 640px) {
  .hero__portrait {
    width: 134vw;
    height: 520px;
    right: -35%;
  }
  .timeline-item {
    gap: 12px;
    min-height: 290px;
    padding: 18px;
    display: flex;
  }
  .timeline-item:hover {
    padding: 18px;
  }
  .timeline-item > svg,
  .timeline-item__copy,
  .timeline-item__thumb,
  .timeline-item__year {
    grid-area: auto;
  }
  .timeline-item__thumb {
    width: 100%;
    height: 126px;
  }
  .interest-field,
  .social-modal__meta {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__portrait:before {
    animation: none !important;
  }
}
.sr-only {
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
}
.header-brand {
  width: min(354px, 34vw);
  height: 76px;
}
.site-header.is-scrolled .header-inner {
  height: 86px;
}
.hero__copy {
  padding-block: 112px 70px;
}
.hero__portrait:after,
.hero__portrait:before {
  inset: 0;
  -webkit-mask: url(../images/keliana-hero-cutout.webp) bottom/contain no-repeat;
  mask: url(../images/keliana-hero-cutout.webp) bottom/contain no-repeat;
}
.hero__portrait:before {
  z-index: 1;
  transform: translate(10px, 1px) scale(1.038);
}
.hero__portrait:after {
  z-index: 0;
  opacity: 0.78;
  transform: translate(-8px, 10px) scale(1.043) rotate(-0.3deg);
}
.hero__background:after {
  aspect-ratio: 1;
  content: "";
  background: #ffffff06;
  border: 1px solid #ffffff17;
  border-radius: 41% 59% 63% 37%/46% 38% 62% 54%;
  width: 42vw;
  max-width: 760px;
  position: absolute;
  top: 18%;
  right: 5%;
  transform: rotate(-7deg);
}
.journey-strip__inner {
  display: block;
}
.journey-strip__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  display: grid;
}
.journey-strip__grid > a {
  min-height: 132px;
  transition:
    transform 0.22s var(--ease),
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.22s ease;
  border: 1px solid #22439533;
  border-radius: 17px;
  grid-template-rows: 1fr auto;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 8px 14px;
  padding: 18px;
  display: grid;
  position: relative;
}
.journey-strip__grid > a:hover {
  border-color: var(--brand);
  background: var(--brand-pale);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px #2243951a;
}
.journey-strip__icon {
  background: var(--brand);
  width: 46px;
  height: 46px;
  color: var(--white);
  border-radius: 14px;
  grid-row: 1/3;
  place-items: center;
  display: grid;
}
.journey-strip__grid > a:nth-child(2) .journey-strip__icon {
  background: var(--brand-bright);
}
.journey-strip__grid > a:nth-child(3) .journey-strip__icon {
  background: var(--green);
}
.journey-strip__grid > a:nth-child(4) .journey-strip__icon {
  background: var(--sun);
  color: var(--brand-dark);
}
.journey-strip__grid strong {
  font-family: var(--display);
  letter-spacing: -0.035em;
  align-self: end;
  font-size: 0.94rem;
}
.journey-strip__grid small {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: start;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  font-weight: 800;
  display: inline-flex;
}
.journey-strip__grid small svg {
  width: 14px;
  height: 14px;
}
.editorial-intro:before {
  content: "";
  border: 42px solid #2243950e;
  border-radius: 50%;
  width: 430px;
  height: 430px;
  position: absolute;
  top: 24%;
  left: -170px;
  box-shadow: 0 0 0 62px #e8d01d0d;
}
.about-orbit {
  border-color: #22439524;
  box-shadow:
    0 0 0 90px #22439509,
    0 0 0 180px #22439505;
}
.editorial-intro .eyebrow {
  color: var(--brand);
}
.editorial-intro h2 {
  color: var(--ink);
}
.about-copy p {
  color: var(--slate);
}
.about-portrait blockquote {
  border-left-color: var(--brand);
  background: var(--white);
  color: var(--brand-dark);
  box-shadow:
    0 14px 34px #22439514,
    inset 0 0 0 1px #22439514;
}
.section-heading__guide {
  border-left: 4px solid var(--brand);
  background: var(--brand-pale);
  border-radius: 0 14px 14px 0;
  max-width: 450px;
  margin-bottom: 6px;
  padding: 18px 20px;
}
.section-heading__guide > span {
  color: var(--brand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-items: center;
  gap: 9px;
  font-size: 0.69rem;
  font-weight: 800;
  display: flex;
}
.section-heading__guide p {
  color: var(--slate);
  margin: 7px 0 0;
  font-size: 0.82rem;
}
.flag-card {
  border-width: 1px;
  border-radius: 22px;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 8px 22px;
  min-height: 230px;
  padding: 26px;
  display: grid;
}
.flag-card:last-child:not(.is-active) {
  border-right: 1px solid var(--line);
}
.flag-card__number {
  position: absolute;
  top: 24px;
  right: 25px;
}
.flag-card__icon {
  border-radius: 16px;
  grid-row: 1/5;
  align-self: start;
  width: 60px;
  height: 60px;
  margin: 0;
}
.flag-card h3 {
  max-width: calc(100% - 42px);
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}
.flag-card h3,
.flag-card p {
  grid-column: 2;
  margin: 0;
}
.flag-card__action {
  background: var(--brand-pale);
  border: 0;
  border-radius: 999px;
  grid-column: 2;
  gap: 18px;
  width: fit-content;
  min-height: 40px;
  margin-top: 10px;
  padding: 0 15px;
}
.flag-card:hover .flag-card__action {
  background: var(--brand);
  color: var(--white);
}
.flag-card.is-active .flag-card__action {
  background: var(--sun);
  color: var(--brand-dark);
}
.field-album__cover {
  height: 455px;
}
.field-album__thumbs button {
  height: 158px;
}
.agenda-preview {
  min-height: 623px;
}
.agenda-preview__cta {
  background: var(--brand);
  min-height: 72px;
  color: var(--white);
  transition:
    transform 0.2s var(--ease),
    background 0.18s ease;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding: 15px 18px;
  display: flex;
}
.agenda-preview__cta:hover {
  background: var(--brand-bright);
  transform: translateY(-3px);
}
.agenda-preview__cta > span {
  display: grid;
}
.agenda-preview__cta small {
  color: #ffffffa3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.6rem;
}
.agenda-preview__cta strong {
  font-family: var(--display);
  font-size: 0.94rem;
}
.lead-section__story h2 {
  font-size: clamp(2.45rem, 3.5vw, 3.85rem);
}
.campaign-flag {
  width: min(430px, 96%);
  height: 205px;
  margin: 36px 0 24px 18px;
}
.impact-numbers {
  background: none;
  gap: 10px;
  max-width: none;
}
.impact-numbers > div {
  background: #fff1;
  border: 1px solid #ffffff29;
  border-radius: 15px;
  min-height: 116px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.impact-numbers > div > svg {
  color: #fff6;
  position: absolute;
  top: 16px;
  right: 14px;
}
.impact-numbers > div:nth-child(2) {
  background: #e8d01d1f;
}
.impact-numbers > div:nth-child(3) {
  background: #409f3624;
}
.impact-numbers strong {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}
.lead-form {
  gap: 16px;
  padding: clamp(30px, 3vw, 42px);
}
.lead-form__head h3 {
  max-width: 880px;
  font-size: clamp(1.8rem, 2.5vw, 2.55rem);
  line-height: 1.08;
}
.lead-form__head h3 em {
  color: var(--brand);
  font-weight: 320;
}
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form input[type="text"],
.lead-form select {
  border: 1px solid var(--line);
  background: var(--paper);
  width: 100%;
  height: 48px;
  color: var(--ink);
  font: inherit;
  border-radius: 10px;
  outline: 0;
  padding: 0 13px;
  font-size: 0.76rem;
}
.lead-form select:focus {
  border-color: var(--brand-bright);
  box-shadow: 0 0 0 3px #2f67d81a;
}
.select-wrap {
  position: relative;
  margin: 0 !important;
  display: block !important;
}
.lead-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 38px;
}
.select-wrap > svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.site-footer__top {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(72px, 9vw, 130px);
}
.site-footer__brand img {
  width: 310px;
  height: 145px;
}
.site-footer__brand p {
  margin-top: 28px;
}
.site-footer__social {
  gap: 10px;
  margin-top: 28px;
  display: flex;
}
.site-footer__social a {
  width: 44px;
  height: 44px;
  color: var(--white);
  border: 1px solid #fff3;
  border-radius: 50%;
  place-items: center;
  transition:
    transform 0.18s,
    border-color 0.18s,
    background 0.18s,
    color 0.18s;
  display: grid;
}
.site-footer__social a:hover {
  border-color: var(--sun);
  background: var(--sun);
  color: var(--brand-dark);
  transform: translateY(-3px);
}
.footer-link-label {
  align-items: center;
  gap: 9px;
  display: inline-flex;
}
.footer-link-label svg {
  color: var(--sun);
  width: 16px !important;
  height: 16px !important;
}
@media (width <= 1180px) {
  .header-brand {
    width: min(320px, 32vw);
  }
  .site-header.is-scrolled .header-brand {
    width: min(280px, 29vw);
  }
  .flag-grid {
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  }
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 900px) {
  .editorial-intro.section-pad {
    padding-top: 90px;
  }
  .lead-section__grid {
    grid-template-columns: 1fr;
  }
  .lead-section__story {
    max-width: 720px;
  }
  .interest-field {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer__top {
    grid-template-columns: 1fr;
  }
}
@media (width <= 640px) {
  .header-brand,
  .site-header.is-scrolled .header-brand {
    width: min(235px, 58vw);
    height: 52px;
  }
  .hero__copy {
    padding-block: 62px 175px;
  }
  .flag-grid,
  .journey-strip__grid {
    grid-template-columns: 1fr;
  }
  .flag-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px 15px;
    min-height: 250px;
    padding: 22px 18px;
  }
  .flag-card__icon {
    width: 50px;
    height: 50px;
  }
  .field-album__cover {
    height: 390px;
  }
  .field-album__thumbs button {
    height: 132px;
  }
  .form-grid,
  .interest-field {
    grid-template-columns: 1fr;
  }
}
.header-brand {
  width: min(370px, 35vw);
  height: 80px;
  overflow: hidden;
}
.hero__copy {
  flex-direction: column;
  padding: 92px 0 118px;
  display: flex;
}
.hero__portrait:after,
.hero__portrait:before {
  clip-path: polygon(
    12% 7%,
    31% 1%,
    52% 4%,
    73% 0,
    92% 13%,
    97% 34%,
    93% 53%,
    100% 78%,
    87% 96%,
    62% 94%,
    38% 100%,
    12% 92%,
    7% 70%,
    1% 47%
  );
  animation: magazine-cut-drift 8s ease-in-out infinite;
}
.hero__portrait:before {
  background: linear-gradient(112deg, var(--green) 0 7%, var(--sun) 7% 100%);
  inset: 7% 5% -1% 17%;
}
.journey-strip__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.journey-strip__grid > a {
  border: 1px solid #2243952e;
  border-left: 4px solid var(--journey-accent);
  border-radius: 14px;
  grid-template-rows: auto auto;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 4px 11px;
  padding: 13px 15px;
}
.journey-strip__grid > a:first-child {
  --journey-accent: #c34a82;
}
.journey-strip__grid > a:nth-child(2) {
  --journey-accent: var(--brand-bright);
}
.journey-strip__grid > a:nth-child(3) {
  --journey-accent: var(--green);
}
.journey-strip__grid > a:nth-child(4) {
  --journey-accent: var(--sun);
}
.journey-strip__grid > a:hover {
  border-color: #22439547;
  border-left-color: var(--journey-accent);
  background: #f7f8fb;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px #22439512;
}
.journey-strip__grid > a:nth-child(n) .journey-strip__icon,
.journey-strip__icon {
  width: 28px;
  height: 28px;
  color: var(--journey-accent);
  background: none;
  border-radius: 0;
  grid-row: 1/3;
}
.journey-strip__icon svg {
  width: 21px;
  height: 21px;
}
.journey-strip__grid small {
  gap: 5px;
  font-size: 0.56rem;
}
.about-grid {
  grid-template-columns: minmax(390px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(58px, 7vw, 108px);
}
.about-portrait {
  padding: 0 22px 20px 0;
}
.about-portrait:before {
  clip-path: polygon(7% 1%, 95% 4%, 100% 82%, 87% 100%, 2% 94%, 0 16%);
  background: var(--sun);
  border-radius: 0;
  inset: 18px 0 100px 28px;
}
.about-portrait__media {
  clip-path: polygon(5% 0, 100% 4%, 96% 78%, 84% 96%, 0 91%, 1% 13%);
  height: 620px;
}
.about-portrait__media > img {
  height: 82%;
}
.about-portrait figcaption.about-portrait__statement,
.about-portrait__statement {
  clip-path: polygon(0 0, 96% 4%, 100% 84%, 92% 100%, 2% 96%);
  background: var(--brand-deep);
  width: calc(100% - 34px);
  box-shadow: none;
  border-radius: 0;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px 16px;
  margin: -82px 0 0 34px;
  padding: 26px 30px;
  position: relative;
  bottom: auto;
  right: auto;
}
.about-portrait__statement blockquote {
  color: var(--white);
  box-shadow: none;
  background: none;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font-style: italic;
}
.about-facts {
  background: none;
  gap: 10px;
}
.about-facts > div,
.about-facts > div:nth-child(n) {
  border: 1px solid #22439529;
  border-left: 4px solid var(--brand-bright);
  min-height: 132px;
  color: var(--ink);
  background: #ffffffc2;
  border-radius: 14px;
  padding: 20px;
}
.about-facts > div:nth-child(2) {
  border-left-color: var(--sun);
}
.about-facts > div:nth-child(3) {
  border-left-color: var(--green);
}
.about-facts > div:nth-child(n) span {
  color: var(--brand);
}
.about-facts > div:nth-child(n) p {
  color: var(--slate);
}
.flag-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.source-badge {
  background: #102a63f0;
  border: 1px solid #ffffffc7;
}
.lead-section__grid {
  grid-template-columns: minmax(470px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(42px, 5vw, 76px);
}
.lead-section__story h2 {
  max-width: 650px;
  font-size: clamp(2.55rem, 3.55vw, 3.85rem);
}
.campaign-flag {
  width: min(390px, 92%);
  height: 185px;
  margin-top: 30px;
}
.campaign-flag__cloth {
  height: 152px;
}
.lead-form {
  border-radius: 24px;
  align-self: center;
  gap: 15px;
  padding: clamp(28px, 3vw, 38px);
}
.lead-form__head h3 {
  font-size: clamp(1.75rem, 2.25vw, 2.25rem);
}
.interest-field {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.interest-field label > span {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 10px 12px;
}
.interest-field label > span b {
  font-size: 0.74rem;
  line-height: 1.15;
}
.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 14px;
}
.lead-form textarea {
  min-height: 116px;
}
.floating-button--top {
  background: var(--white);
  color: var(--brand);
  border: 1px solid #2243953d;
  box-shadow: 0 10px 28px #102a632e;
}
.floating-button--top:hover {
  background: var(--brand);
  color: var(--white);
}
@media (width <= 1180px) {
  .header-brand {
    width: min(330px, 33vw);
  }
  .site-header.is-scrolled .header-brand {
    width: min(295px, 30vw);
  }
  .flag-grid,
  .journey-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lead-section__grid {
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  }
  .interest-field {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 900px) {
  .about-grid,
  .flag-accordion__panel:not([hidden]),
  .lead-section__grid {
    grid-template-columns: 1fr;
  }
}
@media (width <= 760px) {
  .header-brand,
  .site-header.is-scrolled .header-brand {
    width: min(230px, 52vw);
    height: 52px;
  }
  .hero__portrait:after,
  .hero__portrait:before {
    animation: none;
  }
  .flag-grid,
  .journey-strip__grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait__media {
    height: 520px;
  }
  .form-grid,
  .interest-field {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__portrait:after,
  .hero__portrait:before {
    animation: none;
  }
}
.section-info-card {
  border: 1px solid #22439524;
  border-left: 4px solid var(--brand);
  background: #ffffffb8;
  border-radius: 0 18px 18px 0;
  max-width: 420px;
  padding: 18px 20px 18px 22px;
  position: relative;
  box-shadow: 0 16px 38px #112d6712;
}
.section-info-card:after {
  content: "";
  background: #2f67d814;
  border-radius: 0 18px 0 100%;
  width: 58px;
  height: 58px;
  position: absolute;
  top: 0;
  right: 0;
}
.section-info-card > span {
  z-index: 1;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.69rem;
  font-weight: 850;
  display: flex;
  position: relative;
}
.section-info-card > span svg {
  width: 17px;
  height: 17px;
  color: var(--sun-dark);
}
.media-monitor__head .section-info-card > p,
.section-heading > .section-info-card > p,
.section-info-card > p {
  max-width: 38ch;
  color: var(--slate);
  margin: 0;
  font-size: clamp(0.94rem, 1.08vw, 1.05rem);
  line-height: 1.62;
}
.section-info-card--curation {
  border-left-color: var(--green);
  background: #ffffffc7;
}
.journey-strip__inner {
  position: relative;
}
.editorial-intro {
  padding-top: clamp(88px, 8vw, 124px);
}
.about-grid {
  grid-template-columns: minmax(400px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(54px, 7vw, 104px);
}
.about-portrait:before {
  z-index: -2;
  clip-path: none;
  background:
    radial-gradient(circle at 22% 20%, #e8d01db3 0 7%, #0000 7.4%),
    linear-gradient(145deg, #2f67d821, #ffffff2e);
  border: 1px solid #2243951f;
  border-radius: 52% 48% 42% 58%/17% 19% 81% 83%;
  width: auto;
  height: auto;
  inset: 2px 6px 86px 0;
  transform: rotate(-3deg);
}
.about-portrait:after {
  z-index: -1;
  background: linear-gradient(155deg, var(--sun) 0 57%, var(--green) 57% 100%);
  content: "";
  border-radius: 56% 44% 24px 68%/44% 58% 22% 56%;
  width: 43%;
  height: 54%;
  position: absolute;
  bottom: 120px;
  right: 4px;
  transform: rotate(4deg);
}
.about-portrait__media {
  clip-path: none;
  border-radius: 48% 48% 28px 28px/16% 16% 28px 28px;
  height: 610px;
  box-shadow: 0 26px 64px #102a6329;
}
.about-portrait__media:after {
  border-radius: inherit;
  content: "";
  pointer-events: none;
  border: 1px solid #ffffff7a;
  position: absolute;
  inset: 0;
}
.about-portrait__media > img {
  object-position: 50% 18%;
}
.about-portrait figcaption.about-portrait__statement,
.about-portrait__statement {
  z-index: 3;
  border: 1px solid #ffffff29;
  border-left: 5px solid var(--sun);
  width: min(470px, 100% - 34px);
  color: var(--white);
  background: #173472f7;
  border-radius: 0 22px 22px 0;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
  padding: 22px 24px 20px;
  display: grid;
  position: absolute;
  bottom: 26px;
  box-shadow: 0 20px 46px #102a6333;
}
.about-portrait__statement:after {
  background: var(--green);
  content: "";
  border-radius: 999px;
  width: 54px;
  height: 14px;
  position: absolute;
  bottom: -7px;
  right: 18px;
}
.about-portrait__statement > svg {
  width: 25px;
  height: 25px;
  color: var(--sun);
}
.about-portrait__statement > span {
  flex-direction: column;
  gap: 2px;
  padding-top: 3px;
  display: flex;
}
.about-portrait__statement > span strong {
  font-size: 0.78rem;
}
.about-portrait__statement > span small {
  color: #ffffffa8;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
}
.about-portrait__link {
  width: max-content;
  color: var(--sun);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #e8d01db3;
  grid-column: 2;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  padding-bottom: 3px;
  font-size: 0.67rem;
  font-weight: 850;
  display: inline-flex;
}
.about-portrait__link svg {
  width: 14px;
  height: 14px;
}
@media (width <= 900px) {
  .section-info-card {
    max-width: 100%;
  }
  .about-portrait {
    min-height: auto;
  }
  .about-portrait__media {
    height: 590px;
  }
}
@media (width <= 760px) {
  .editorial-intro {
    padding-top: 106px;
  }
  .about-portrait {
    padding: 14px 10px 140px 0;
  }
  .about-portrait__media {
    height: 500px;
  }
  .about-portrait figcaption.about-portrait__statement,
  .about-portrait__statement {
    width: calc(100% - 16px);
    padding: 19px 18px 18px;
    bottom: 24px;
    right: 0;
  }
}
.section-info-card > span svg {
  color: var(--sun);
}
.header-inner {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #173472e6;
  border-bottom: 1px solid #ffffff1f;
}
.site-header:not(.is-scrolled) .header-cta,
.site-header:not(.is-scrolled) .header-search,
.site-header:not(.is-scrolled) .menu-toggle {
  color: var(--white);
}
.site-header:not(.is-scrolled) .header-cta {
  border-color: var(--sun);
  background: #e8d01d1f;
}
.site-header:not(.is-scrolled) .header-brand > img {
  filter: brightness(0) invert();
}
.header-brand {
  place-items: center;
  width: min(400px, 38vw);
  display: grid;
}
.header-brand__office {
  z-index: 4;
  width: 0;
  max-width: 132px;
  color: var(--sun);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 0.48rem;
  font-weight: 850;
  line-height: 1;
  animation: header-office-type 5.4s steps(21) infinite;
  top: 10px;
  left: 65.5%;
}
.site-header.is-scrolled .header-inner {
  background: #fffffffa;
  border-color: #2243951a;
  height: 84px;
}
.site-header.is-scrolled .header-brand {
  place-items: center;
  width: min(316px, 30vw);
  height: 58px;
  display: grid;
}
.site-header.is-scrolled .header-brand > img {
  filter: none;
  width: 100%;
  height: 100%;
}
.site-header.is-scrolled .header-brand__office {
  display: none;
}
.hero {
  min-height: 920px;
}
.hero__content,
.hero__copy {
  min-height: 706px;
}
.hero__copy {
  justify-content: center;
  padding: 74px 0 94px;
}
.hero__portrait {
  width: min(900px, 59vw);
  height: 780px;
  right: -2%;
}
.hero__portrait:after,
.hero__portrait:before {
  transform-origin: bottom;
  clip-path: polygon(
    39% 2%,
    57% 0,
    69% 7%,
    76% 20%,
    87% 34%,
    91% 52%,
    99% 73%,
    94% 98%,
    67% 96%,
    43% 100%,
    13% 98%,
    3% 84%,
    8% 61%,
    14% 42%,
    23% 24%,
    31% 11%
  );
  opacity: 1;
  animation: hero-angular-frame 8s ease-in-out infinite;
  transform: none;
}
.hero__portrait:before {
  background: var(--sun);
  padding: 12px;
  inset: 8% 10% 1% 17%;
}
.hero__portrait:after {
  animation-delay: -2.2s;
  inset: 10% 13% 2% 14%;
}
.section-info-card__action {
  color: var(--brand);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid #2243954d;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-bottom: 3px;
  font-size: 0.67rem;
  font-weight: 850;
  display: inline-flex;
}
.section-info-card__action svg {
  width: 14px;
  height: 14px;
}
.flag-card {
  grid-template-rows: auto auto;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-content: center;
  align-items: center;
  gap: 7px 18px;
  min-height: 178px;
  padding: 25px 28px;
}
.flag-card__number {
  display: none;
}
.flag-card__icon {
  background: none;
  border: 0;
  border-radius: 0;
  grid-row: 1/3;
  align-self: center;
  width: 54px;
  height: 54px;
}
.flag-card__icon svg {
  width: 33px;
  height: 33px;
}
.flag-card__copy {
  display: contents;
}
.flag-card h3 {
  grid-area: 1/2;
  align-self: end;
  max-width: 100%;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  line-height: 1.02;
}
.flag-card p {
  color: var(--slate);
  grid-area: 2/2;
  align-self: start;
  font-size: 0.9rem;
  line-height: 1.45;
}
.flag-card__action {
  background: var(--white);
  border: 1px solid #22439533;
  grid-area: 1/3/3;
  align-self: center;
  min-height: 44px;
  margin: 8px 0 0;
  padding: 0 18px;
}
.journal .section-heading {
  align-items: end;
}
.news-card,
.news-card.news-card--feature {
  border-top: 0;
  border-left: 4px solid var(--brand);
  border-radius: 16px;
  min-height: 0;
}
.news-card.news-card--feature {
  grid-area: 1/1/4;
  grid-template-rows: minmax(350px, 1.16fr) auto;
  grid-template-columns: 1fr;
}
.news-card:not(.news-card--feature) {
  grid-column: 2;
  grid-template-rows: 1fr;
  grid-template-columns: 188px minmax(0, 1fr);
}
.news-card:not(.news-card--feature) .news-card__body {
  padding: 18px 20px 16px;
}
.news-card:not(.news-card--feature) .news-card__title {
  margin: 6px 0 7px;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.08;
}
.news-card:not(.news-card--feature) .news-card__description {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.7rem;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}
.news-card:not(.news-card--feature) .news-card__footer {
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}
.source-badge {
  background: var(--brand);
  filter: none;
  border-color: #ffffffc7;
}
.source-badge,
.source-badge small {
  color: var(--white);
}
.clipping-card:hover .source-badge {
  background: var(--white);
  color: var(--brand);
  border-color: #22439533;
}
.clipping-card:hover .source-badge small {
  color: var(--green);
}
.site-footer__base {
  background: #0a2050;
}
.site-footer__bottom {
  border-top: 0;
  gap: 28px;
  min-height: 78px;
  padding-block: 12px;
}
.site-footer__party-badge {
  background: #ffffff0e;
  border: 1px solid #ffffff26;
  border-radius: 13px;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 7px 16px 7px 12px;
  display: flex;
}
.site-footer__party-badge img {
  object-fit: contain;
  width: 76px;
  height: 40px;
}
.site-footer__party-badge > span {
  background: #fff3;
  width: 1px;
  height: 28px;
}
.site-footer__party-badge strong {
  color: #ffffffc2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 170px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.25;
}
.site-footer__credits {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
  display: flex;
}
.site-footer__bottom .site-footer__copyright,
.site-footer__bottom .site-footer__credit {
  color: #ffffff9e;
  font-size: 0.72rem;
}
.site-footer__bottom .site-footer__credit a {
  color: var(--sun);
}
.cookie-banner button,
.cookie-modal button,
.lead-form button,
[data-cookie-settings] {
  cursor: pointer;
}
@media (width <= 1180px) {
  .header-brand {
    width: min(350px, 35vw);
  }
  .hero__portrait {
    width: min(890px, 66vw);
    right: -8%;
  }
  .flag-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .flag-card__action {
    grid-area: 3/2;
    justify-self: start;
  }
  .news-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  }
  .news-card:not(.news-card--feature) {
    grid-template-columns: 154px minmax(0, 1fr);
  }
}
@media (width <= 900px) {
  .header-inner {
    background: #173472f0;
  }
  .hero__portrait {
    width: min(780px, 76vw);
    right: -16%;
  }
  .news-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
  .news-card.news-card--feature,
  .news-card:not(.news-card--feature) {
    grid-area: auto/1;
  }
  .site-footer__bottom,
  .site-footer__credits {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (width <= 760px) {
  .header-inner {
    height: 86px;
    padding-inline: 14px;
  }
  .header-brand,
  .site-header.is-scrolled .header-brand {
    width: min(235px, 52vw);
    height: 52px;
  }
  .header-brand__office {
    display: none;
  }
  .hero {
    padding-top: 86px;
  }
  .hero__portrait:after,
  .hero__portrait:before {
    animation: none;
  }
  .flag-card {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 0;
    padding: 22px 18px;
  }
  .flag-card__icon {
    width: 44px;
    height: 44px;
  }
  .flag-card__icon svg {
    width: 28px;
    height: 28px;
  }
  .news-card:not(.news-card--feature) {
    grid-template-columns: 122px minmax(0, 1fr);
  }
  .news-card:not(.news-card--feature) .news-card__footer {
    grid-template-columns: 1fr auto;
  }
  .news-card:not(.news-card--feature) .news-card__meta {
    display: none;
  }
  .site-footer__party-badge {
    width: 100%;
  }
}
.site-header:not(.is-scrolled) .header-inner {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  height: 108px;
  box-shadow: 0 18px 46px #04113033;
}
.site-header:not(.is-scrolled) .header-cta {
  min-height: 50px;
  box-shadow: 0 12px 28px #e8d01d2e;
}
.hero__portrait:before {
  background: linear-gradient(#4374d75c, #102a631f);
  border: 1px solid #ffffff24;
  border-radius: 48% 48% 10px 10px;
  inset: 7% 8% 0 15%;
  box-shadow: inset 0 1px #ffffff14;
}
.hero__portrait:after,
.hero__portrait:before {
  clip-path: none;
  position: absolute;
  transform: none;
  -webkit-mask: none;
  mask: none;
}
.hero__portrait:after {
  background: linear-gradient(180deg, var(--sun) 0 72%, var(--green) 72% 100%);
  opacity: 1;
  width: 7px;
  height: 58%;
  bottom: 0;
  left: 14%;
}
.hero__portrait-quote:focus-visible {
  transform: translate(-50%, -4px);
  box-shadow: 0 28px 62px #04113061;
}
.hero__portrait-quote > span {
  grid-column: 1/3;
  font-size: clamp(1.02rem, 1.18vw, 1.22rem);
}
.hero__portrait-quote > small {
  color: #ffffffb8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: end;
  font-size: 0.66rem;
  font-weight: 800;
}
.hero__rail-wrap--flags {
  min-height: 126px;
}
.hero__rail-wrap--flags .hero-flags {
  grid-template-columns: 188px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}
.hero__rail-wrap--flags .journey-strip__grid > a,
.hero__rail-wrap--flags .journey-strip__grid > a + a {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 5px 12px;
  min-height: 126px;
  padding: 18px clamp(14px, 1.45vw, 24px);
  transition:
    background-color 0.22s,
    box-shadow 0.22s;
}
.hero__rail-wrap--flags .journey-strip__icon {
  background: color-mix(in srgb, var(--journey-accent) 18%, transparent);
  border-radius: 50%;
  place-items: center;
  width: 36px;
  height: 36px;
  display: grid;
}
.hero__rail-wrap--flags .journey-strip__grid strong {
  font-size: clamp(0.8rem, 0.9vw, 0.96rem);
  line-height: 1.14;
}
.hero__rail-wrap--flags .journey-strip__grid small {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-items: center;
  gap: 6px;
  font-size: 0.59rem;
  font-weight: 800;
  display: inline-flex;
  color: #ffffff94 !important;
}
.about-portrait {
  min-height: 530px;
  padding: 0 0 82px;
}
.about-portrait__media {
  height: 470px;
  box-shadow: 0 28px 64px #17347229;
}
.about-copy {
  max-width: 800px;
}
.about-facts > div,
.about-facts > div:nth-child(n) {
  min-height: 126px;
  padding: 20px 20px 18px;
}
@media (width <= 1180px) {
  .site-header:not(.is-scrolled) .header-brand {
    width: min(350px, 37vw);
  }
  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  }
  .hero__copy {
    max-width: 58vw;
  }
  .hero__portrait {
    width: min(720px, 51vw) !important;
    right: -7% !important;
  }
  .hero__portrait-quote {
    width: min(350px, 72%);
  }
  .hero__rail-wrap--flags .hero-flags {
    grid-template-columns: 160px minmax(0, 1fr);
  }
}
@media (width <= 900px) {
  .site-header:not(.is-scrolled) .header-inner {
    height: 94px;
  }
  .site-header:not(.is-scrolled) .header-brand {
    border-radius: 14px;
    width: min(300px, 40vw);
    height: 72px;
  }
  .hero {
    min-height: 0;
    padding-top: 94px;
  }
  .hero__content {
    min-height: 0;
    display: block;
  }
  .hero__copy {
    max-width: 100%;
    min-height: 0;
    padding: 72px 0 24px;
  }
  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.5rem, 8.8vw, 5.5rem);
  }
  .hero__portrait {
    margin: 0 auto;
    position: relative;
    width: min(700px, 96vw) !important;
    height: 610px !important;
    bottom: auto !important;
    right: auto !important;
  }
  .hero__portrait-quote {
    bottom: 22px;
  }
  .hero__rail-wrap--flags {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .hero__rail-wrap--flags .hero-flags {
    grid-template-columns: 1fr;
  }
  .hero__rail-wrap--flags .journey-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid > a,
  .hero__rail-wrap--flags .journey-strip__grid > a + a,
  .hero__rail-wrap--flags .journey-strip__grid > a:nth-child(n) {
    min-height: 98px;
  }
  .editorial-intro .about-grid {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: 40px;
  }
  .about-portrait__media {
    height: 440px;
  }
}
@media (width <= 700px) {
  .site-header:not(.is-scrolled) .header-inner {
    grid-template-columns: 50px 1fr 50px;
    padding-inline: 14px;
  }
  .site-header:not(.is-scrolled) .header-brand {
    width: min(250px, 62vw);
    height: 64px;
  }
  .site-header:not(.is-scrolled) .header-cta {
    border-radius: 50%;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
  }
  .site-header:not(.is-scrolled) .header-cta span,
  .site-header:not(.is-scrolled) .header-search,
  .site-header:not(.is-scrolled) .menu-toggle > span:last-child {
    display: none;
  }
  .hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.65rem);
  }
  .hero__lead {
    max-width: 96%;
  }
  .hero__portrait {
    margin-left: -9vw;
    width: 108vw !important;
    height: 540px !important;
  }
  .hero__portrait-quote {
    width: min(350px, 72vw);
    padding: 17px 18px 15px;
  }
  .hero__portrait-quote > small {
    display: none;
  }
  .hero__portrait-quote > strong {
    grid-column: 1/3;
    justify-self: start;
  }
  .hero__rail-wrap--flags .journey-strip__grid {
    grid-template-columns: 1fr !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid > a,
  .hero__rail-wrap--flags .journey-strip__grid > a + a,
  .hero__rail-wrap--flags .journey-strip__grid > a:nth-child(n) {
    min-height: 80px;
  }
  .editorial-intro .about-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait {
    min-height: 510px;
  }
  .about-portrait__media {
    height: 430px;
  }
  .about-portrait figcaption.about-portrait__statement,
  .about-portrait__statement {
    grid-template-columns: 26px minmax(0, 1fr);
    width: 92%;
  }
  .about-portrait__link {
    grid-column: 2;
    justify-self: start;
  }
  .about-facts {
    grid-template-columns: 1fr;
  }
  .about-facts > div,
  .about-facts > div:nth-child(n) {
    min-height: 0;
  }
  .about-facts > div + div {
    border-top: 1px solid #ffffff21 !important;
    border-left: 0 !important;
  }
}
.site-header:not(.is-scrolled) .header-brand__digit {
  filter: none !important;
}
@media (width <= 1180px) {
  .site-header:not(.is-scrolled) .header-brand {
    width: min(360px, 38vw) !important;
  }
  .hero__portrait {
    width: min(800px, 57vw) !important;
    right: -10% !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (width <= 900px) {
  .site-header:not(.is-scrolled) .header-brand {
    width: min(300px, 42vw) !important;
    height: 70px !important;
  }
  .hero__portrait {
    width: min(720px, 98vw) !important;
    height: 620px !important;
    bottom: -82px !important;
    right: auto !important;
  }
  .hero__portrait-quote {
    bottom: 110px !important;
  }
  .hero__rail-wrap--flags {
    padding-top: 106px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header-brand__office,
  .hero__portrait:after,
  .hero__portrait:before {
    animation: none;
  }
  .header-brand__office {
    width: 132px;
  }
}
.header-inner {
  -webkit-backdrop-filter: blur(12px) saturate(118%);
  backdrop-filter: blur(12px) saturate(118%);
  background: #ffffffe0;
  border-bottom-color: #2243951f;
}
.site-header:not(.is-scrolled) .header-cta {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px #409f3633;
}
.site-header:not(.is-scrolled) .header-cta:hover {
  border-color: var(--sun);
  background: var(--sun);
  color: var(--brand-dark);
  box-shadow: 0 12px 26px #e8d01d3d;
}
.header-brand {
  width: min(414px, 40vw);
  height: 82px;
  display: block;
  position: relative;
  overflow: visible;
}
.header-brand .header-brand__logo {
  object-fit: contain;
  filter: none;
  width: 100%;
  height: 100%;
  transition: opacity 0.22s;
  display: block;
  position: absolute;
  inset: 0;
}
.site-header:not(.is-scrolled) .header-brand > .header-brand__logo {
  filter: none;
}
.header-brand__logo--initial {
  z-index: 1;
  clip-path: inset(0 31.55% 0 0);
  opacity: 1;
}
.header-brand__logo--scroll {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.header-brand__office {
  z-index: 3;
  clip-path: inset(0 31.32% 82.4% 68.68%);
  color: #0000;
  background: url(../images/logo-keliana-blue.svg) 50%/100% 100% no-repeat;
  width: auto;
  max-width: none;
  font-size: 0;
  animation: header-office-vector-type 7.2s steps(18) infinite;
  overflow: hidden;
}
.header-brand__digits,
.header-brand__office {
  pointer-events: none;
  display: block;
  position: absolute;
  inset: 0;
}
.header-brand__digits {
  z-index: 4;
  animation: header-digits-blink 7.2s linear infinite;
}
.header-brand__digit {
  color: var(--white);
  filter: drop-shadow(0 1px 1px #173472b3);
  background: currentColor;
  display: block;
  position: absolute;
  inset: 0;
  transform: scale(1);
  -webkit-mask: url(../images/logo-keliana-scroll.svg) center/100% 100%
    no-repeat;
  mask: url(../images/logo-keliana-scroll.svg) center/100% 100% no-repeat;
}
.header-brand__digit--one-a {
  clip-path: inset(23.4% 25.5% 23% 68.35%);
  transform-origin: 71.4% 52%;
  animation: header-digit-one-a 7.2s ease-in-out infinite;
}
.header-brand__digit--one-b {
  clip-path: inset(23.4% 18.48% 23% 75.35%);
  transform-origin: 78.4% 52%;
  animation: header-digit-one-b 7.2s ease-in-out infinite;
}
.header-brand__digit--four-a {
  clip-path: inset(23.4% 9.45% 23% 81.75%);
  transform-origin: 86.2% 52%;
  animation: header-digit-four-a 7.2s ease-in-out infinite;
}
.header-brand__digit--four-b {
  clip-path: inset(23.4% 0 23% 91.2%);
  transform-origin: 95.6% 52%;
  animation: header-digit-four-b 7.2s ease-in-out infinite;
}
.site-header.is-scrolled .header-brand {
  width: min(330px, 31vw);
  height: 60px;
}
.site-header.is-scrolled .header-brand__digits,
.site-header.is-scrolled .header-brand__logo--initial,
.site-header.is-scrolled .header-brand__office {
  display: none;
}
.site-header.is-scrolled .header-brand__logo--scroll {
  opacity: 1;
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes header-office-vector-type {
  0%,
  5% {
    clip-path: inset(0 31.32% 82.4% 68.68%);
  }
  27%,
  91% {
    clip-path: inset(0 0 82.4% 68.68%);
  }
  94%,
  to {
    clip-path: inset(0 31.32% 82.4% 68.68%);
  }
}
@keyframes header-digit-one-a {
  0%,
  12% {
    transform: scale(1);
  }
  16% {
    transform: scale(1.12);
  }
  21%,
  to {
    transform: scale(1);
  }
}
@keyframes header-digit-one-b {
  0%,
  25% {
    transform: scale(1);
  }
  29% {
    transform: scale(1.12);
  }
  34%,
  to {
    transform: scale(1);
  }
}
@keyframes header-digit-four-a {
  0%,
  38% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.12);
  }
  47%,
  to {
    transform: scale(1);
  }
}
@keyframes header-digit-four-b {
  0%,
  51% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.12);
  }
  60%,
  to {
    transform: scale(1);
  }
}
@keyframes header-digits-blink {
  0%,
  62%,
  67%,
  72%,
  77%,
  94%,
  to {
    opacity: 1;
  }
  65%,
  70%,
  75% {
    opacity: 0.18;
  }
}
.hero__background:after {
  content: none;
  display: none;
}
.hero__portrait {
  width: min(920px, 60vw);
  right: -11%;
}
.hero__portrait:after,
.hero__portrait:before {
  clip-path: polygon(
    35% 1%,
    58% 0,
    72% 7%,
    82% 20%,
    94% 39%,
    91% 58%,
    99% 78%,
    92% 100%,
    7% 100%,
    1% 84%,
    7% 64%,
    4% 47%,
    14% 29%,
    25% 11%
  );
  content: "";
  animation: none;
  -webkit-mask: none;
  mask: none;
}
.hero__portrait:before {
  opacity: 0.94;
  inset: 20% 7% 0 15%;
  transform: translate(-12px, 8px) rotate(-0.6deg);
}
.hero__portrait:after {
  inset: 19% 6% 0 17%;
  transform: rotate(0.35deg);
}
.journey-strip__inner {
  min-height: 0;
}
.journey-strip__grid {
  gap: 9px;
  min-height: 0;
}
.journey-strip__grid > a {
  min-height: 70px;
  padding: 8px 13px;
}
@keyframes journey-badge-arrive {
  0% {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes journey-badge-attention {
  0%,
  78%,
  to {
    box-shadow: 0 12px 28px #112d6714;
  }
  86% {
    box-shadow: 0 12px 30px #e8d01d47;
  }
  92% {
    box-shadow: 0 12px 28px #409f3629;
  }
}
@media (width <= 1180px) {
  .header-brand {
    width: min(370px, 38vw);
  }
  .site-header.is-scrolled .header-brand {
    width: min(305px, 31vw);
  }
  .hero__portrait {
    width: min(900px, 68vw);
    right: -15%;
  }
}
@media (width <= 900px) {
  .header-inner {
    background: #ffffffe6;
  }
  .hero__portrait {
    width: min(790px, 80vw);
    right: -20%;
  }
  .journey-strip__grid > a {
    min-height: 74px;
  }
}
@media (width <= 760px) {
  .header-brand,
  .site-header.is-scrolled .header-brand {
    width: min(240px, 54vw);
    height: 52px;
  }
  .header-brand__digits,
  .header-brand__office {
    display: block;
  }
  .hero__portrait {
    width: min(720px, 96vw);
    right: -28%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header-brand__office {
    clip-path: inset(0 0 82.4% 68.68%);
    animation: none;
  }
  .header-brand__digit,
  .header-brand__digits {
    animation: none;
  }
  .header-brand__digit {
    color: var(--sun);
    transform: none;
  }
}
.site-header:not(.is-scrolled) .header-inner {
  -webkit-backdrop-filter: blur(13px) saturate(112%);
  backdrop-filter: blur(13px) saturate(112%);
  background: #0b2760e6;
}
.hero__portrait {
  width: min(720px, 43vw);
  height: 770px;
  right: -7%;
}
.hero__portrait > img {
  filter: none;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  transform: none;
}
.journey-strip__grid {
  border: 1px solid #2243952b;
  border-radius: 16px;
  gap: 0;
  overflow: hidden;
}
.journey-strip__grid > a {
  min-height: 76px;
  box-shadow: none;
  color: var(--ink);
  background: none;
  border-radius: 0;
  gap: 4px 12px;
  padding: 11px 17px;
  transition:
    background 0.18s,
    color 0.18s,
    transform 0.18s;
}
.journey-strip__grid > a.is-active,
.journey-strip__grid > a:hover {
  box-shadow: none;
  transform: none;
}
.journey-strip__grid > a:focus-visible {
  box-shadow: none;
  transform: none;
}
.journey-strip__grid strong {
  color: inherit;
  font-size: clamp(0.86rem, 0.95vw, 0.96rem);
}
.journey-strip__grid small {
  color: var(--brand);
}
.journey-strip__grid > a:focus-visible small {
  color: var(--white);
}
.journey-strip__grid > a:focus-visible .journey-strip__icon {
  color: var(--white);
}
#keliana .about-orbit {
  display: none;
}
.about-portrait {
  padding: 0 22px 104px 0;
}
.about-portrait__media {
  clip-path: polygon(4% 0, 97% 3%, 100% 84%, 91% 100%, 5% 96%, 0 12%);
  transform: none;
}
.about-portrait__media:after {
  content: none;
  display: none;
}
.about-portrait__media > img {
  position: static;
}
.about-portrait figcaption.about-portrait__statement,
.about-portrait__statement {
  border: 0;
  border-left: 6px solid var(--sun);
  clip-path: none;
  background: #173472fa;
  border-radius: 0 20px 20px 0;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 9px 15px;
  width: min(520px, 100% - 28px);
  padding: 23px 25px 21px;
  bottom: 18px;
  right: 0;
  box-shadow: 0 20px 42px #102a6333;
}
.about-portrait__statement:after {
  content: none;
  display: none;
}
.about-portrait__statement blockquote {
  grid-column: 2/4;
  font-size: clamp(1.16rem, 1.48vw, 1.48rem);
}
.about-portrait__statement > span {
  grid-column: 2;
  align-self: end;
  padding: 4px 0 0;
  display: block;
}
.about-portrait__statement > span strong {
  color: var(--white);
  letter-spacing: -0.01em;
  font-size: 0.92rem;
}
.about-portrait__statement > span small {
  display: none;
}
.about-portrait__link {
  white-space: nowrap;
  grid-column: 3;
  place-self: end;
  margin: 0;
}
.news-card {
  color: inherit;
  text-decoration: none;
}
.news-card:not(.news-card--feature) .news-card__description,
.news-card__description {
  letter-spacing: normal;
  font-weight: 400;
}
.site-footer__party-badge strong {
  text-transform: none;
  white-space: nowrap;
  max-width: none;
  font-size: 0.68rem;
  line-height: 1;
}
.site-footer__credits {
  white-space: nowrap;
  background: #ffffff0e;
  border: 1px solid #ffffff26;
  border-radius: 13px;
  gap: 16px;
  min-height: 54px;
  padding: 7px 16px;
}
.site-footer__credits > span {
  background: #fff3;
  flex: 0 0 1px;
  width: 1px;
  height: 28px;
}
@media (width <= 1180px) {
  .hero__portrait {
    width: min(680px, 54vw);
    height: 720px;
    right: -11%;
  }
  .journey-strip__grid strong {
    font-size: 0.82rem;
  }
  .site-footer__bottom {
    align-items: stretch;
  }
  .site-footer__credits,
  .site-footer__party-badge {
    flex: auto;
  }
}
:root {
  --content: 1480px;
}
.site-header:not(.is-scrolled) .header-inner {
  -webkit-backdrop-filter: blur(15px) saturate(118%);
  backdrop-filter: blur(15px) saturate(118%);
  border-bottom-color: #ffffff21;
  background: #0a2760b8 !important;
}
.hero__portrait {
  width: min(770px, 47vw) !important;
}
.hero__portrait:after,
.hero__portrait:before {
  clip-path: polygon(
    16% 4%,
    76% 1%,
    96% 21%,
    98% 78%,
    83% 98%,
    17% 100%,
    2% 78%,
    4% 25%
  );
  opacity: 0.92;
  filter: none;
  border: 0;
  border-radius: 0;
  -webkit-mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  -webkit-mask-position:
    0 0,
    0 0;
  mask-position:
    0 0,
    0 0;
  -webkit-mask-size: auto, auto;
  mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}
.hero__portrait:before {
  background: var(--green);
  padding: 5px;
  inset: 14% 2% 0 12%;
  transform: translate(-7px, 5px) rotate(-0.35deg);
}
.hero__portrait:after {
  background: var(--sun);
  padding: 7px;
  inset: 13% 1% 0 13%;
  transform: translate(5px, -2px) rotate(0.25deg);
}
.hero__portrait > img {
  transform: none !important;
}
.journey-strip__grid {
  overflow: visible;
}
.journey-strip__grid > a {
  min-height: 88px;
  margin: 0;
  padding: 15px 22px;
}
.journey-strip__grid strong {
  font-size: clamp(0.9rem, 1vw, 1.02rem);
}
.about-portrait {
  background: linear-gradient(
    90deg,
    transparent calc(100% - 24px),
    var(--sun) calc(100% - 24px) calc(100% - 12px),
    var(--green) calc(100% - 12px)
  );
  min-height: 690px;
  padding: 14px 24px 104px 0;
}
.about-portrait__media {
  border: 0;
  border-top: 8px solid var(--sun);
  height: 640px;
  box-shadow: none;
  border-radius: 0;
}
.flag-accordion .flag-card {
  grid-template-rows: auto auto;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-content: center;
  align-items: start;
  gap: 2px 18px;
  min-height: 168px;
  padding: 23px 27px;
}
.flag-accordion .flag-card.is-active .flag-card__icon,
.flag-accordion .flag-card__icon {
  grid-row: 1/3;
  align-self: start;
  width: 64px;
  height: 64px;
}
.flag-accordion .flag-card__icon svg {
  width: 39px;
  height: 39px;
}
.flag-accordion .flag-card__copy {
  display: contents;
}
.flag-accordion .flag-card h3 {
  grid-area: 1/2;
  align-self: start;
  margin: 0;
  line-height: 1.04;
}
.flag-accordion .flag-card p,
.flag-accordion .flag-card.is-active p {
  grid-area: 2/2;
  align-self: start;
  margin: 2px 0 0;
  font-size: 0.86rem;
  line-height: 1.38;
}
.flag-accordion .flag-card.is-active .flag-card__action,
.flag-accordion .flag-card__action {
  grid-area: 1/3/3;
  align-self: center;
}
@media (width <= 1180px) {
  .hero__portrait {
    width: min(700px, 55vw) !important;
    right: -11% !important;
  }
}
@media (width <= 900px) {
  .site-header:not(.is-scrolled) .header-inner {
    background: #0a2760cc !important;
  }
  .hero__portrait {
    width: min(650px, 72vw) !important;
    right: -20% !important;
  }
  .journey-strip__grid > a:nth-child(3),
  .journey-strip__grid > a:nth-child(4) {
    border-top: 0 !important;
  }
}
@media (width <= 760px) {
  .hero__portrait {
    width: min(610px, 92vw) !important;
    right: -29% !important;
  }
  .journey-strip__grid > a + a,
  .journey-strip__grid > a:nth-child(3) {
    border-top: 0 !important;
    border-left: 5px solid var(--journey-accent) !important;
  }
  .about-portrait {
    background: linear-gradient(
      90deg,
      transparent calc(100% - 16px),
      var(--sun) calc(100% - 16px) calc(100% - 8px),
      var(--green) calc(100% - 8px)
    );
    min-height: 0;
    padding: 10px 16px 132px 0;
  }
  .about-portrait__media {
    height: 520px;
  }
  .flag-accordion .flag-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 0;
    padding: 20px;
  }
  .flag-accordion .flag-card.is-active .flag-card__icon,
  .flag-accordion .flag-card__icon {
    width: 52px;
    height: 52px;
  }
  .flag-accordion .flag-card__icon svg {
    width: 32px;
    height: 32px;
  }
  .flag-accordion .flag-card.is-active .flag-card__action,
  .flag-accordion .flag-card__action {
    grid-area: 3/2;
    justify-self: start;
    margin-top: 12px;
  }
}
@media (width <= 900px) {
  .site-header:not(.is-scrolled) .header-inner {
    background: #0b2760eb;
  }
  .hero__portrait {
    width: min(650px, 72vw);
    height: 660px;
    right: -20%;
  }
  .journey-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journey-strip__grid > a:nth-child(3) {
    border-left: 0 !important;
  }
  .journey-strip__grid > a:nth-child(3),
  .journey-strip__grid > a:nth-child(4) {
    border-top: 1px solid #22439524 !important;
  }
  .site-footer__bottom,
  .site-footer__credits {
    text-align: left;
    flex-direction: row;
    align-items: center;
  }
  .site-footer__bottom {
    flex-wrap: wrap;
  }
}
@media (width <= 760px) {
  .hero__portrait {
    width: min(610px, 92vw);
    height: 570px;
    right: -29%;
  }
  .journey-strip__inner {
    padding-block: 10px !important;
  }
  .journey-strip__grid {
    grid-template-columns: 1fr;
  }
  .journey-strip__grid > a + a,
  .journey-strip__grid > a:nth-child(3) {
    border-top: 1px solid #22439524 !important;
    border-left: 0 !important;
  }
  .about-portrait {
    min-height: 0;
    padding: 0 8px 132px 0;
  }
  .about-portrait__media {
    height: 520px;
  }
  .about-portrait figcaption.about-portrait__statement,
  .about-portrait__statement {
    grid-template-columns: 26px minmax(0, 1fr);
    width: calc(100% - 12px);
    padding: 19px 18px;
    bottom: 18px;
  }
  .about-portrait__statement blockquote {
    grid-column: 2;
  }
  .about-portrait__link {
    grid-column: 2;
    justify-self: start;
    margin-top: 7px;
  }
  .site-footer__credits,
  .site-footer__party-badge {
    white-space: normal;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (width <= 900px) {
  .journey-strip__grid > a:nth-child(3),
  .journey-strip__grid > a:nth-child(4) {
    border-top: 0 !important;
  }
  .journey-strip__grid > a:nth-child(3) {
    border-left: 0 !important;
  }
  .journey-strip__grid > a:nth-child(4) {
    border-left: 5px solid var(--journey-accent) !important;
  }
}
@media (width <= 760px) {
  .journey-strip__inner {
    padding-block: 0 !important;
  }
  .journey-strip__grid > a,
  .journey-strip__grid > a + a,
  .journey-strip__grid > a:nth-child(3),
  .journey-strip__grid > a:nth-child(4) {
    border-top: 0 !important;
    border-left: 5px solid var(--journey-accent) !important;
  }
  .about-portrait {
    background: linear-gradient(
      90deg,
      transparent calc(100% - 16px),
      var(--sun) calc(100% - 16px) calc(100% - 8px),
      var(--green) calc(100% - 8px)
    );
    min-height: 0;
    padding: 10px 16px 132px 0;
  }
}
.site-header:not(.is-scrolled) .header-inner {
  -webkit-backdrop-filter: blur(16px) saturate(118%);
  backdrop-filter: blur(16px) saturate(118%);
  box-shadow: 0 12px 40px #17347214;
  background: #fffffff7 !important;
  border-bottom-color: #2243951a !important;
}
.site-header:not(.is-scrolled) .header-cta {
  border-color: var(--green) !important;
  background: var(--green) !important;
  color: var(--white) !important;
}
.site-header:not(.is-scrolled) .header-cta:focus-visible {
  border-color: var(--sun) !important;
  background: var(--sun) !important;
  color: var(--brand-dark) !important;
}
.hero__copy {
  max-width: min(810px, 54vw);
}
.hero__portrait {
  isolation: isolate;
  height: 805px;
  bottom: 0;
  overflow: visible;
  width: min(980px, 62vw) !important;
  right: -6% !important;
}
.hero__portrait:after,
.hero__portrait:before {
  pointer-events: none;
  position: absolute;
  filter: none !important;
  content: "" !important;
  display: block !important;
  -webkit-mask: none !important;
  mask: none !important;
}
.hero__portrait:before {
  z-index: 0;
  clip-path: polygon(12% 2%, 86% 0, 100% 24%, 94% 90%, 72% 100%, 4% 94%, 0 30%);
  opacity: 1;
  animation: hero-portrait-plate 8s var(--ease) infinite;
  background: linear-gradient(145deg, #e8d01df5, #e8d01dc7);
  border: 0;
  padding: 0;
  inset: 27% 4% 1% 35%;
  transform: rotate(0.35deg);
}
.hero__portrait:after {
  z-index: 1;
  background: var(--green);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  opacity: 0.95;
  width: 150px;
  height: 20px;
  animation: hero-portrait-accent 8s var(--ease) infinite;
  border: 0;
  padding: 0;
  inset: auto 7% 4% auto;
  transform: rotate(-2deg);
}
.hero__portrait > img {
  z-index: 2;
  object-fit: contain;
  object-position: right bottom;
  transform-origin: 100% 100%;
  filter: none !important;
  transform: scale(1.18) translateX(2%) !important;
}
@keyframes hero-portrait-plate {
  0%,
  to {
    transform: translateZ(0) rotate(0.35deg);
  }
  50% {
    transform: translate3d(-4px, -3px, 0) rotate(-0.15deg);
  }
}
@keyframes hero-portrait-accent {
  0%,
  to {
    transform: translateZ(0) rotate(-2deg);
  }
  50% {
    transform: translate3d(6px, 0, 0) rotate(-1deg);
  }
}
.journey-strip__inner {
  padding-block: 0 !important;
}
.journey-strip__grid {
  gap: 0 !important;
}
.journey-strip__grid,
.journey-strip__grid > a {
  background: var(--white);
  border: 0 !important;
  border-radius: 0 !important;
}
.journey-strip__grid > a {
  min-height: 94px;
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s var(--ease);
  padding: 15px clamp(18px, 1.7vw, 28px);
  box-shadow: none !important;
}
.journey-strip__grid > a + a {
  border-left: 5px solid var(--journey-accent) !important;
}
.journey-strip__grid > a.is-active,
.journey-strip__grid > a:hover {
  background: var(--journey-accent);
  color: var(--white);
  transform: translateY(-2px);
}
.journey-strip__grid > a:focus-visible {
  background: var(--journey-accent);
  color: var(--white);
  transform: translateY(-2px);
}
.journey-strip__grid > a.is-active .journey-strip__icon,
.journey-strip__grid > a.is-active small,
.journey-strip__grid > a:hover .journey-strip__icon,
.journey-strip__grid > a:hover small {
  color: var(--white) !important;
}
.journey-strip__grid > a:focus-visible small {
  color: var(--white) !important;
}
.journey-strip__grid > a:focus-visible .journey-strip__icon {
  color: var(--white) !important;
}
.journey-strip__grid strong {
  font-size: clamp(0.93rem, 1vw, 1.05rem);
  line-height: 1.12;
}
.about-portrait {
  isolation: isolate;
  min-height: 720px;
  padding: 0 0 112px;
}
.about-portrait__media {
  background: #d8dde2;
  height: 650px;
  overflow: hidden;
  box-shadow: 0 28px 68px #17347221;
  border-radius: 0 !important;
}
.about-portrait__media:after {
  display: none !important;
}
.about-portrait__media > img {
  object-fit: cover;
  object-position: 50% 16%;
  width: 100%;
  height: 100%;
}
.about-facts {
  background: #ffffffd1;
  border: 1px solid #22439526;
  border-radius: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(28px, 3vw, 44px);
  display: grid;
  overflow: hidden;
  box-shadow: 0 18px 50px #17347212;
  gap: 0 !important;
}
.about-facts > div,
.about-facts > div:nth-child(n) {
  min-height: 148px;
  padding: 22px 22px 20px;
  border: 0 !important;
  border-top: 4px solid var(--brand-bright) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.about-facts strong {
  font-size: clamp(1rem, 1.1vw, 1.16rem);
}
.about-facts p {
  font-size: 0.79rem;
  line-height: 1.48;
}
.journal .section-heading,
.video-section .section-heading {
  align-items: end;
}
.journal .section-info-card,
.video-section .section-info-card {
  align-self: end;
}
.news-grid {
  grid-template-rows: auto auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}
.news-card,
.news-card.news-card--feature,
.news-card:not(.news-card--feature) {
  border-top: 0;
  border-left: 4px solid var(--brand);
  min-height: 0;
  box-shadow: none;
  background: #f8f9fc;
  border-radius: 18px;
  grid-column: auto;
  overflow: hidden;
  grid-row: auto !important;
}
.news-card.news-card--feature {
  grid-column: 1/-1;
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 440px;
}
.news-card:not(.news-card--feature) {
  grid-template-rows: 230px minmax(0, 1fr);
  grid-template-columns: 1fr;
  min-height: 500px;
}
.news-card:nth-child(2) {
  border-left-color: var(--sun);
}
.news-card:nth-child(3) {
  border-left-color: var(--green);
}
.news-card:nth-child(4) {
  border-left-color: var(--brand-bright);
}
.news-card__media {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.news-card__media img {
  object-fit: cover;
  object-position: center 26%;
  width: 100%;
  height: 100%;
  transition: transform 0.52s var(--ease);
}
.news-card:hover .news-card__media img {
  transform: scale(1.035);
}
.news-card:not(.news-card--feature) .news-card__body,
.news-card__body {
  flex-direction: column;
  min-width: 0;
  padding: clamp(24px, 2.2vw, 38px);
  display: flex;
}
.news-card.news-card--feature .news-card__body {
  justify-content: center;
}
.news-card:not(.news-card--feature) .news-card__title,
.news-card__title {
  margin: 8px 0 12px;
  font-size: clamp(1.28rem, 1.48vw, 1.65rem);
  line-height: 1.08;
}
.news-card.news-card--feature .news-card__title {
  max-width: 700px;
  font-size: clamp(1.8rem, 2.4vw, 2.65rem);
}
.news-card:not(.news-card--feature) .news-card__description,
.news-card__description {
  -webkit-line-clamp: unset;
  color: var(--slate);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.55;
  display: block;
  overflow: visible;
  text-transform: none !important;
}
.news-card.news-card--feature .news-card__description {
  max-width: 650px;
  font-size: 1.02rem;
}
.news-card:not(.news-card--feature) .news-card__footer,
.news-card__footer {
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}
.news-card:not(.news-card--feature) .news-card__author > img {
  width: 34px;
  height: 34px;
}
.news-card:not(.news-card--feature) .news-card__author b {
  font-size: 0.65rem;
}
.news-card:not(.news-card--feature) .news-card__author small,
.news-card:not(.news-card--feature) .news-card__meta span:last-child {
  display: inline-flex;
}
.news-card:not(.news-card--feature) .news-card__meta {
  gap: 9px;
  font-size: 0.56rem;
}
@media (width <= 1180px) {
  .hero__portrait {
    width: min(880px, 68vw) !important;
    right: -13% !important;
  }
  .editorial-intro .about-grid {
    grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1.15fr);
    gap: 46px;
  }
  .about-portrait__media {
    height: 610px;
  }
}
@media (width <= 900px) {
  .site-header:not(.is-scrolled) .header-inner {
    background: #fffffff7 !important;
  }
  .hero__copy {
    max-width: 64vw;
  }
  .hero__portrait {
    height: 690px;
    width: min(760px, 76vw) !important;
    right: -22% !important;
  }
  .hero__portrait > img {
    transform: scale(1.12) translateX(2%) !important;
  }
  .journey-strip__grid {
    grid-template-columns: 1fr !important;
  }
  .journey-strip__grid > a,
  .journey-strip__grid > a + a,
  .journey-strip__grid > a:nth-child(n) {
    border-top: 0 !important;
    border-left: 5px solid var(--journey-accent) !important;
  }
  .editorial-intro .about-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait {
    width: min(620px, 100%);
    min-height: 0;
    margin-inline: auto;
    padding: 0 0 128px;
  }
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-card.news-card--feature {
    grid-column: 1/-1;
    grid-template-rows: 380px auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .news-card:not(.news-card--feature) {
    min-height: 480px;
  }
  .news-card:nth-child(4) {
    grid-column: 1/-1;
  }
}
@media (width <= 760px) {
  .hero__copy {
    max-width: 100%;
  }
  .hero__portrait {
    height: 570px;
    width: min(660px, 104vw) !important;
    right: -34% !important;
  }
  .hero__portrait:before {
    inset: 31% 6% 1% 36%;
  }
  .about-facts {
    grid-template-columns: 1fr;
  }
  .about-facts > div + div {
    border-top-width: 4px !important;
    border-left: 0 !important;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card.news-card--feature,
  .news-card:nth-child(4) {
    grid-column: 1;
  }
  .news-card.news-card--feature {
    grid-template-rows: 290px auto;
  }
  .news-card:not(.news-card--feature) {
    min-height: 460px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__portrait:after,
  .hero__portrait:before {
    animation: none !important;
  }
}
.header-brand__office {
  background-image: url(../images/logo-keliana-scroll.svg) !important;
}
.header-brand__digits {
  animation: none !important;
}
.header-brand__digit {
  color: #2b335a !important;
  filter: none !important;
}
.hero__portrait {
  width: min(920px, 52vw) !important;
  height: 805px !important;
  right: -10% !important;
}
.hero__portrait-quote {
  z-index: 5;
  border-left: 6px solid var(--sun);
  width: min(410px, 44vw);
  color: var(--brand-dark);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s ease;
  background: #fffffff5;
  gap: 10px;
  padding: 20px 23px 18px;
  display: grid;
  position: absolute;
  bottom: 132px;
  right: 12%;
  transform: translateX(2%);
  box-shadow: 0 22px 52px #06123438;
}
.hero__portrait-quote:hover {
  transform: translate(2%, -4px);
  box-shadow: 0 28px 62px #06123447;
}
.hero__portrait-quote:focus-visible {
  transform: translate(2%, -4px);
  box-shadow: 0 28px 62px #06123447;
}
.hero__portrait-quote > span {
  font-family: var(--display);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  font-style: italic;
  font-weight: 350;
  line-height: 1.25;
}
.hero__portrait-quote > strong {
  width: max-content;
  color: var(--brand);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid #22439559;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  font-size: 0.66rem;
  font-weight: 850;
  display: inline-flex;
}
.hero__portrait-quote svg {
  width: 14px;
  height: 14px;
}
.hero__rail-wrap--flags {
  min-height: 112px;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  background: #102a63f7 !important;
}
.hero__rail-wrap--flags .journey-strip__inner {
  padding-block: 0 !important;
  display: block !important;
}
.hero__rail-wrap--flags .journey-strip__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  display: grid;
  overflow: visible;
}
.hero__rail-wrap--flags .journey-strip__grid > a,
.hero__rail-wrap--flags .journey-strip__grid > a + a {
  grid-template-rows: auto auto;
  grid-template-columns: 32px minmax(0, 1fr);
  align-content: center;
  gap: 3px 13px;
  min-height: 112px;
  padding: 18px clamp(18px, 1.8vw, 30px);
  background: none !important;
  border-left: 1px solid #ffffff21 !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a:first-child {
  border-left-color: #0000 !important;
}
.hero__rail-wrap--flags .journey-strip__icon {
  grid-row: 1/3;
  align-self: center;
}
.hero__rail-wrap--flags .journey-strip__grid small {
  color: #ffffffb3 !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a.is-active,
.hero__rail-wrap--flags .journey-strip__grid > a:hover {
  box-shadow: none !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a:focus-visible {
  box-shadow: none !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a.is-active .journey-strip__icon,
.hero__rail-wrap--flags .journey-strip__grid > a.is-active small,
.hero__rail-wrap--flags .journey-strip__grid > a:hover .journey-strip__icon,
.hero__rail-wrap--flags .journey-strip__grid > a:hover small {
  color: var(--white) !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a:focus-visible small {
  color: var(--white) !important;
}
@media (width <= 1180px) {
  .hero__portrait {
    width: min(850px, 62vw) !important;
    right: -17% !important;
  }
  .hero__portrait-quote {
    width: min(360px, 40vw);
    right: 14%;
  }
}
@media (width <= 900px) {
  .hero {
    min-height: 980px;
  }
  .hero__portrait {
    width: min(760px, 78vw) !important;
    height: 690px !important;
    right: -24% !important;
  }
  .hero__portrait > img {
    transform: scale(1.12) translateX(7%) !important;
  }
  .hero__portrait-quote {
    width: min(330px, 42vw);
    bottom: 188px;
    right: 18%;
  }
  .hero__rail-wrap--flags .journey-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid > a,
  .hero__rail-wrap--flags .journey-strip__grid > a + a,
  .hero__rail-wrap--flags .journey-strip__grid > a:nth-child(n) {
    min-height: 86px;
    box-shadow: inset 4px 0 0 var(--journey-accent) !important;
    border-top: 0 !important;
    border-left: 1px solid #ffffff21 !important;
  }
}
@media (width <= 760px) {
  .hero {
    min-height: 1120px;
  }
  .hero__portrait {
    width: min(680px, 106vw) !important;
    height: 570px !important;
    right: -31% !important;
  }
  .hero__portrait-quote {
    width: min(300px, 72vw);
    padding: 16px 18px;
    bottom: 326px;
    right: 17%;
  }
  .hero__rail-wrap--flags .journey-strip__grid {
    grid-template-columns: 1fr !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid > a,
  .hero__rail-wrap--flags .journey-strip__grid > a + a,
  .hero__rail-wrap--flags .journey-strip__grid > a:nth-child(n) {
    min-height: 72px;
  }
}
.site-header:not(.is-scrolled) {
  background: #081d48fa !important;
}
.site-header:not(.is-scrolled) .header-inner {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  background: linear-gradient(90deg, #081d48fa, #102a63fa) !important;
  border-bottom: 1px solid #ffffff21 !important;
  height: 108px !important;
  box-shadow: 0 18px 46px #04113033 !important;
}
.site-header:not(.is-scrolled) .header-search,
.site-header:not(.is-scrolled) .menu-toggle {
  color: var(--white) !important;
}
.site-header:not(.is-scrolled) .header-search {
  background: #ffffff0f !important;
  border-color: #ffffff4d !important;
}
.site-header:not(.is-scrolled) .header-brand {
  background: #fffffffa !important;
  border: 1px solid #2243951a !important;
  border-radius: 18px !important;
  width: min(392px, 39vw) !important;
  height: 84px !important;
  overflow: hidden !important;
  box-shadow: 0 14px 34px #0411303d !important;
}
.site-header:not(.is-scrolled) .header-cta {
  border-color: var(--sun) !important;
  background: var(--sun) !important;
  min-height: 50px !important;
  color: var(--brand-dark) !important;
  box-shadow: 0 12px 28px #e8d01d2e !important;
}
.site-header:not(.is-scrolled) .header-cta:hover {
  border-color: var(--green) !important;
  background: var(--green) !important;
  color: var(--white) !important;
}
.site-header:not(.is-scrolled) .header-cta:focus-visible {
  border-color: var(--green) !important;
  background: var(--green) !important;
  color: var(--white) !important;
}
.hero {
  background: #173472 !important;
  min-height: 955px !important;
  padding-top: 108px !important;
}
.hero__background:after {
  background: linear-gradient(
    90deg,
    #0000 0 58%,
    #ffffff09 58% 100%
  ) !important;
}
.hero__content {
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.78fr) !important;
  align-items: center !important;
  min-height: 720px !important;
}
.hero__copy {
  justify-content: center !important;
  max-width: min(760px, 52vw) !important;
  min-height: 720px !important;
  padding: 64px 0 112px !important;
}
.hero h1 {
  max-width: 760px !important;
  margin-bottom: 26px !important;
  font-size: clamp(3.8rem, 5.35vw, 5.9rem) !important;
  line-height: 0.92 !important;
}
.hero__lead {
  color: #ffffffc2 !important;
  max-width: 620px !important;
  margin-bottom: 32px !important;
  font-size: clamp(1rem, 1.13vw, 1.15rem) !important;
  line-height: 1.65 !important;
}
.hero__portrait {
  isolation: isolate !important;
  width: min(790px, 47vw) !important;
  height: 690px !important;
  bottom: 126px !important;
  right: -2% !important;
}
.hero__portrait:before {
  z-index: 0 !important;
  background: linear-gradient(#4374d75c, #102a631f) !important;
  border: 1px solid #ffffff24 !important;
  border-radius: 48% 48% 10px 10px !important;
  inset: 7% 8% 0 15% !important;
  box-shadow: inset 0 1px #ffffff14 !important;
}
.hero__portrait:after,
.hero__portrait:before {
  clip-path: none !important;
  content: "" !important;
  opacity: 1 !important;
  display: block !important;
  position: absolute !important;
  transform: none !important;
  -webkit-mask: none !important;
  mask: none !important;
}
.hero__portrait:after {
  z-index: 1 !important;
  background: linear-gradient(
    180deg,
    var(--sun) 0 72%,
    var(--green) 72% 100%
  ) !important;
  width: 7px !important;
  height: 58% !important;
  inset: auto auto 0 14% !important;
}
.hero__portrait > img {
  z-index: 2 !important;
  object-fit: contain !important;
  filter: drop-shadow(-18px 24px 34px #0411303d) !important;
  transform: scale(1.08) !important;
}
.hero__portrait-quote {
  z-index: 5 !important;
  border: 1px solid #ffffff24 !important;
  border-left: 6px solid var(--sun) !important;
  width: min(390px, 76%) !important;
  color: var(--white) !important;
  background: #0a2050f5 !important;
  border-radius: 0 18px 18px 0 !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 5px 18px !important;
  padding: 20px 22px 18px !important;
  bottom: 28px !important;
  box-shadow: 0 24px 54px #04113052 !important;
}
.hero__portrait-quote > span {
  color: var(--white) !important;
  grid-column: 1/3 !important;
  font-size: clamp(1.02rem, 1.18vw, 1.22rem) !important;
}
.hero__portrait-quote > small {
  color: #ffffffb8 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  align-self: end !important;
  font-size: 0.66rem !important;
  font-weight: 800 !important;
  display: block !important;
}
.hero__portrait-quote > strong {
  color: var(--sun) !important;
  border-color: #e8d01d8c !important;
  align-self: end !important;
}
.hero__rail-wrap--flags {
  background: #081d48fb !important;
  min-height: 126px !important;
}
.hero__rail-wrap--flags .hero-flags {
  grid-template-columns: 188px minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 0 !important;
  display: grid !important;
}
.hero__rail-wrap--flags .journey-strip__grid {
  gap: 0 !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a,
.hero__rail-wrap--flags .journey-strip__grid > a + a {
  min-height: 126px !important;
  box-shadow: inset 4px 0 0 var(--journey-accent) !important;
  color: var(--white) !important;
  background: #ffffff06 !important;
  border: 0 !important;
  border-left: 1px solid #ffffff1c !important;
  border-radius: 0 !important;
  grid-template-rows: auto auto !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  align-content: center !important;
  gap: 5px 12px !important;
  padding: 18px clamp(14px, 1.45vw, 24px) !important;
  transform: none !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a:first-child {
  border-left: 0 !important;
}
.hero__rail-wrap--flags .journey-strip__icon {
  background: color-mix(
    in srgb,
    var(--journey-accent) 18%,
    transparent
  ) !important;
  width: 36px !important;
  height: 36px !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a.is-active,
.hero__rail-wrap--flags .journey-strip__grid > a:hover {
  background: color-mix(in srgb, var(--journey-accent) 58%, #102a63) !important;
  box-shadow: inset 6px 0 0 var(--journey-accent) !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a:focus-visible {
  background: color-mix(in srgb, var(--journey-accent) 58%, #102a63) !important;
  box-shadow: inset 6px 0 0 var(--journey-accent) !important;
}
.editorial-intro {
  color: var(--ink) !important;
  background: #eef1f6 !important;
}
.editorial-intro.section-pad {
  padding-block: clamp(76px, 7vw, 106px) !important;
}
.editorial-intro .about-orbit {
  display: none !important;
}
.editorial-intro .about-grid {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr) !important;
  align-items: center !important;
  gap: clamp(52px, 6vw, 92px) !important;
}
.about-portrait {
  background: none !important;
  min-height: 530px !important;
  padding: 0 0 82px !important;
}
.about-portrait:after,
.about-portrait:before {
  content: none !important;
  display: none !important;
}
.about-portrait__media {
  clip-path: none !important;
  border: 0 !important;
  border-radius: 26px 26px 8px !important;
  height: 470px !important;
  transform: none !important;
  box-shadow: 0 28px 64px #17347229 !important;
}
.about-portrait__media > img {
  object-position: 50% 16% !important;
  transform: none !important;
}
.about-portrait figcaption.about-portrait__statement,
.about-portrait__statement {
  border-radius: 0 18px 18px 0 !important;
  grid-template-columns: 30px minmax(0, 1fr) auto !important;
  width: min(500px, 90%) !important;
  padding: 21px 22px 19px !important;
  bottom: 0 !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}
.about-portrait__statement blockquote {
  font-size: clamp(1.05rem, 1.28vw, 1.3rem) !important;
  line-height: 1.25 !important;
}
.editorial-intro__body {
  padding-top: 0 !important;
}
.editorial-intro h2 {
  max-width: 760px !important;
  color: var(--ink) !important;
  margin-bottom: 24px !important;
  font-size: clamp(3rem, 4.35vw, 4.9rem) !important;
  line-height: 0.96 !important;
}
.editorial-intro h2 em {
  color: var(--brand) !important;
}
.about-copy p {
  color: var(--muted) !important;
  margin: 0 !important;
  font-size: clamp(1rem, 1.16vw, 1.16rem) !important;
  line-height: 1.72 !important;
}
.about-copy p + p {
  display: none !important;
}
.about-facts {
  background: #102a63 !important;
  border: 0 !important;
  border-radius: 18px !important;
  margin-top: clamp(26px, 3vw, 38px) !important;
  box-shadow: 0 20px 48px #17347226 !important;
}
.about-facts > div,
.about-facts > div:nth-child(n) {
  background: none !important;
  min-height: 126px !important;
  padding: 20px 20px 18px !important;
}
.about-facts > div + div {
  border-left-color: #ffffff21 !important;
}
@media (width <= 1180px) {
  .site-header:not(.is-scrolled) .header-brand {
    width: min(350px, 37vw) !important;
  }
  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr) !important;
  }
  .hero__copy {
    max-width: 58vw !important;
  }
  .hero__portrait {
    width: min(720px, 51vw) !important;
    right: -7% !important;
  }
  .hero__rail-wrap--flags .hero-flags {
    grid-template-columns: 160px minmax(0, 1fr) !important;
  }
}
@media (width <= 900px) {
  .site-header:not(.is-scrolled) .header-inner {
    height: 94px !important;
  }
  .site-header:not(.is-scrolled) .header-brand {
    border-radius: 14px !important;
    width: min(300px, 40vw) !important;
    height: 72px !important;
  }
  .hero {
    padding-top: 94px !important;
  }
  .hero,
  .hero__content {
    min-height: 0 !important;
  }
  .hero__content {
    display: block !important;
  }
  .hero__copy {
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 72px 0 24px !important;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 8.8vw, 5.5rem) !important;
  }
  .hero__portrait {
    width: min(700px, 96vw) !important;
    height: 610px !important;
    margin: 0 auto !important;
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
  }
  .hero__portrait-quote {
    bottom: 22px !important;
  }
  .hero__rail-wrap--flags {
    position: relative !important;
    inset: auto !important;
  }
  .hero__rail-wrap--flags .hero-flags {
    grid-template-columns: 1fr !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid > a,
  .hero__rail-wrap--flags .journey-strip__grid > a + a,
  .hero__rail-wrap--flags .journey-strip__grid > a:nth-child(n) {
    min-height: 98px !important;
  }
  .editorial-intro .about-grid {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr) !important;
    gap: 40px !important;
  }
  .about-portrait__media {
    height: 440px !important;
  }
}
@media (width <= 700px) {
  .site-header:not(.is-scrolled) .header-inner {
    grid-template-columns: 50px 1fr 50px !important;
    padding-inline: 14px !important;
  }
  .site-header:not(.is-scrolled) .header-brand {
    width: min(250px, 62vw) !important;
    height: 64px !important;
  }
  .site-header:not(.is-scrolled) .header-cta {
    border-radius: 50% !important;
    min-width: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
  }
  .site-header:not(.is-scrolled) .header-cta span,
  .site-header:not(.is-scrolled) .header-search,
  .site-header:not(.is-scrolled) .menu-toggle > span:last-child {
    display: none !important;
  }
  .hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.65rem) !important;
  }
  .hero__portrait {
    width: 108vw !important;
    height: 540px !important;
    margin-left: -9vw !important;
  }
  .hero__portrait-quote {
    width: min(350px, 72vw) !important;
    padding: 17px 18px 15px !important;
  }
  .hero__portrait-quote > small {
    display: none !important;
  }
  .hero__portrait-quote > strong {
    grid-column: 1/3 !important;
    justify-self: start !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid {
    grid-template-columns: 1fr !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid > a,
  .hero__rail-wrap--flags .journey-strip__grid > a + a,
  .hero__rail-wrap--flags .journey-strip__grid > a:nth-child(n) {
    min-height: 80px !important;
  }
  .editorial-intro .about-grid {
    grid-template-columns: 1fr !important;
  }
  .about-portrait {
    min-height: 510px !important;
  }
  .about-portrait__media {
    height: 430px !important;
  }
  .about-portrait figcaption.about-portrait__statement,
  .about-portrait__statement {
    grid-template-columns: 26px minmax(0, 1fr) !important;
    width: 92% !important;
  }
  .about-portrait__link {
    grid-column: 2 !important;
    justify-self: start !important;
  }
  .about-facts {
    grid-template-columns: 1fr !important;
  }
  .about-facts > div,
  .about-facts > div:nth-child(n) {
    min-height: 0 !important;
  }
  .about-facts > div + div {
    border-top: 1px solid #ffffff21 !important;
    border-left: 0 !important;
  }
}
.site-header:not(.is-scrolled) .header-brand {
  width: min(382px, 37vw) !important;
  height: 74px !important;
  box-shadow: none !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.site-header:not(.is-scrolled) .header-brand > .header-brand__logo--initial {
  filter: none !important;
}
.site-header:not(.is-scrolled) .header-brand__office {
  background-image: url(../images/logo-keliana-blue.svg) !important;
}
.site-header:not(.is-scrolled) .header-brand__digit {
  filter: none;
  color: var(--white) !important;
}
.header-actions {
  justify-self: end;
  align-items: center;
  gap: 12px;
  display: flex;
}
.header-plan {
  border: 1px solid var(--green);
  background: var(--green);
  min-height: 48px;
  color: var(--white);
  letter-spacing: 0.045em;
  text-transform: uppercase;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  font-size: 0.64rem;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 0.18s,
    background 0.18s,
    border-color 0.18s;
  display: inline-flex;
  box-shadow: 0 12px 26px #409f3633;
}
.header-plan svg {
  width: 14px;
  height: 14px;
}
.header-plan:hover {
  color: var(--white);
  background: #2f842a;
  border-color: #2f842a;
  transform: translateY(-2px);
}
.header-plan:focus-visible {
  color: var(--white);
  background: #2f842a;
  border-color: #2f842a;
  transform: translateY(-2px);
}
.hero {
  min-height: 0 !important;
  overflow: hidden !important;
}
.hero__background {
  background:
    linear-gradient(90deg, #081d48f7 0, #10306be0 46%, #1c439391),
    url(../images/hero-background.webp) 100% / cover no-repeat !important;
}
.hero__background:after {
  content: "" !important;
  opacity: 0.22 !important;
  background-image: radial-gradient(
    circle,
    #fff3 0 1px,
    #0000 1.5px
  ) !important;
  background-position: 50% !important;
  background-size: 28px 28px !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  -webkit-mask-image: linear-gradient(
    90deg,
    #0000 0 52%,
    #000 72% 100%
  ) !important;
  mask-image: linear-gradient(90deg, #0000 0 52%, #000 72% 100%) !important;
}
.hero__content {
  z-index: 3 !important;
  min-height: 724px !important;
}
.hero__copy {
  min-height: 724px !important;
  padding-bottom: 76px !important;
}
.hero__portrait {
  z-index: 4 !important;
  clip-path: none !important;
  background: none !important;
  width: min(850px, 51vw) !important;
  height: 760px !important;
  bottom: -84px !important;
  right: -5% !important;
  overflow: visible !important;
}
.hero__portrait:after,
.hero__portrait:before {
  content: none !important;
  display: none !important;
}
.hero__portrait > img {
  object-position: center bottom !important;
  filter: drop-shadow(-20px 24px 36px #04113042) !important;
  transform-origin: bottom !important;
  transform: scale(1.1) !important;
}
.hero__portrait-quote {
  width: min(390px, 70%) !important;
  bottom: 116px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}
.hero__rail-wrap--flags {
  z-index: 2 !important;
  background:
    linear-gradient(#e1e7f2f5, #f4f6fafc),
    radial-gradient(circle at 100% 0, #2f67d81f, #0000 42%) !important;
  min-height: 0 !important;
  padding: 108px 0 38px !important;
  position: relative !important;
  inset: auto !important;
}
.hero__rail-wrap--flags .hero-flags {
  padding-block: 0 !important;
  display: block !important;
}
.hero__rail-wrap--flags .journey-strip__grid {
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  display: grid !important;
  overflow: visible !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a,
.hero__rail-wrap--flags .journey-strip__grid > a + a,
.hero__rail-wrap--flags .journey-strip__grid > a:nth-child(n) {
  border: 1px solid #22439521 !important;
  border-left: 5px solid var(--journey-accent) !important;
  min-height: 104px !important;
  color: var(--ink) !important;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s var(--ease),
    box-shadow 0.22s ease !important;
  background: #ffffffed !important;
  border-radius: 16px !important;
  grid-template-rows: auto auto !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  align-content: center !important;
  gap: 4px 13px !important;
  padding: 17px 18px !important;
  transform: none !important;
  box-shadow: 0 14px 34px #17347214 !important;
}
.hero__rail-wrap--flags .journey-strip__icon {
  border: 1px solid color-mix(in srgb, var(--journey-accent) 26%, transparent) !important;
  background: color-mix(in srgb, var(--journey-accent) 10%, #fff) !important;
  width: 40px !important;
  height: 40px !important;
  color: var(--journey-accent) !important;
  border-radius: 50% !important;
  grid-row: 1/3 !important;
  align-self: center !important;
  place-items: center !important;
  display: grid !important;
}
.hero__rail-wrap--flags .journey-strip__icon svg {
  width: 20px !important;
  height: 20px !important;
}
.hero__rail-wrap--flags .journey-strip__grid strong {
  color: inherit !important;
  font-size: clamp(0.85rem, 0.95vw, 1rem) !important;
  line-height: 1.12 !important;
}
.hero__rail-wrap--flags .journey-strip__grid small {
  color: var(--brand) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.59rem !important;
  font-weight: 800 !important;
  display: inline-flex !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a.is-active,
.hero__rail-wrap--flags .journey-strip__grid > a:hover {
  border-color: var(--journey-accent) !important;
  background: var(--journey-accent) !important;
  box-shadow: 0 18px 38px
    color-mix(in srgb, var(--journey-accent) 23%, transparent) !important;
  color: var(--white) !important;
  transform: translateY(-4px) !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a:focus-visible {
  border-color: var(--journey-accent) !important;
  background: var(--journey-accent) !important;
  box-shadow: 0 18px 38px
    color-mix(in srgb, var(--journey-accent) 23%, transparent) !important;
  color: var(--white) !important;
  transform: translateY(-4px) !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a.is-active .journey-strip__icon,
.hero__rail-wrap--flags .journey-strip__grid > a:hover .journey-strip__icon {
  color: var(--white) !important;
  background: #ffffff24 !important;
  border-color: #ffffff4d !important;
}
.hero__rail-wrap--flags
  .journey-strip__grid
  > a:focus-visible
  .journey-strip__icon {
  color: var(--white) !important;
  background: #ffffff24 !important;
  border-color: #ffffff4d !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a.is-active small,
.hero__rail-wrap--flags .journey-strip__grid > a:hover small {
  color: #ffffffd1 !important;
}
.hero__rail-wrap--flags .journey-strip__grid > a:focus-visible small {
  color: #ffffffd1 !important;
}
@media (width <= 1180px) {
  .site-header:not(.is-scrolled) .header-brand {
    width: min(340px, 35vw) !important;
    height: 70px !important;
  }
  .header-actions {
    gap: 8px;
  }
  .header-cta,
  .header-plan {
    min-height: 44px;
    padding-inline: 15px;
    font-size: 0.58rem;
  }
  .hero__portrait {
    width: min(800px, 57vw) !important;
    right: -10% !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (width <= 900px) {
  .site-header:not(.is-scrolled) .header-brand {
    width: min(280px, 40vw) !important;
    height: 62px !important;
  }
  .header-plan {
    display: none;
  }
  .hero__portrait {
    width: min(720px, 98vw) !important;
    height: 620px !important;
    bottom: -82px !important;
    right: auto !important;
  }
  .hero__portrait-quote {
    bottom: 110px !important;
  }
  .hero__rail-wrap--flags {
    padding-top: 106px !important;
  }
}
@media (width <= 700px) {
  .site-header:not(.is-scrolled) .header-brand {
    width: min(255px, 64vw) !important;
    height: 62px !important;
  }
  .hero__background {
    background:
      linear-gradient(#081d48f2, #10306bd1 56%, #1c439399),
      url(../images/hero-background.webp) 68% / cover no-repeat !important;
  }
  .hero__portrait {
    width: 112vw !important;
    height: 550px !important;
    bottom: -70px !important;
  }
  .hero__portrait-quote {
    width: min(350px, 76vw) !important;
    bottom: 96px !important;
  }
  .hero__rail-wrap--flags {
    padding: 94px 0 30px !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .hero__rail-wrap--flags .journey-strip__grid > a,
  .hero__rail-wrap--flags .journey-strip__grid > a + a,
  .hero__rail-wrap--flags .journey-strip__grid > a:nth-child(n) {
    border-radius: 13px !important;
    min-height: 82px !important;
  }
}
.site-header:not(.is-scrolled) .header-brand__office {
  visibility: visible !important;
  opacity: 1 !important;
  filter: brightness(0) invert() !important;
  animation: header-office-vector-type 7.2s steps(18) infinite !important;
  -webkit-mask: none !important;
  mask: none !important;
}
.site-header:not(.is-scrolled) .header-brand:after,
.site-header:not(.is-scrolled) .header-brand__office {
  background: url(../images/logo-keliana-blue.svg) 50%/100% 100% no-repeat !important;
  display: block !important;
}
.site-header:not(.is-scrolled) .header-brand:after {
  z-index: 2 !important;
  clip-path: inset(0 34.5% 0 49.4%) !important;
  content: "" !important;
  pointer-events: none !important;
  transform-origin: 57.8% !important;
  animation: header-flag-pulse 7.2s ease-in-out infinite !important;
  position: absolute !important;
  inset: 0 !important;
}
@keyframes header-flag-pulse {
  0%,
  30%,
  7%,
  to {
    filter: none;
    transform: scale(1);
  }
  12% {
    filter: drop-shadow(0 0 10px #e8d01d61);
    transform: scale(1.07);
  }
  18% {
    filter: none;
    transform: scale(1);
  }
  24% {
    transform: scale(1.04);
  }
}
.site-header:not(.is-scrolled) .header-brand__digits {
  opacity: 1;
  visibility: visible !important;
  animation: header-digits-blink 7.2s linear infinite !important;
  display: block !important;
}
.site-header:not(.is-scrolled) .header-brand__digit {
  visibility: visible !important;
  opacity: 1 !important;
  color: #0000 !important;
  background: url(../images/logo-keliana-blue.svg) 50%/100% 100% no-repeat !important;
  display: block !important;
  position: absolute !important;
  -webkit-mask: none !important;
  mask: none !important;
}
.site-header:not(.is-scrolled) .header-brand__digit:after {
  background: var(--sun);
  content: "";
  opacity: 0;
  pointer-events: none;
  display: block;
  position: absolute;
  inset: 0;
}
.site-header:not(.is-scrolled) .header-brand__digit--one-a {
  animation: header-digit-one-a 7.2s ease-in-out infinite !important;
}
.site-header:not(.is-scrolled) .header-brand__digit--one-b {
  animation: header-digit-one-b 7.2s ease-in-out infinite !important;
}
.site-header:not(.is-scrolled) .header-brand__digit--four-a {
  animation: header-digit-four-a 7.2s ease-in-out infinite !important;
}
.site-header:not(.is-scrolled) .header-brand__digit--four-b {
  animation: header-digit-four-b 7.2s ease-in-out infinite !important;
}
.site-header:not(.is-scrolled) .header-brand__digit--one-a:after {
  animation: header-digit-yellow-one-a 7.2s linear infinite !important;
}
.site-header:not(.is-scrolled) .header-brand__digit--one-b:after {
  animation: header-digit-yellow-one-b 7.2s linear infinite !important;
}
.site-header:not(.is-scrolled) .header-brand__digit--four-a:after {
  animation: header-digit-yellow-four-a 7.2s linear infinite !important;
}
.site-header:not(.is-scrolled) .header-brand__digit--four-b:after {
  animation: header-digit-yellow-four-b 7.2s linear infinite !important;
}
@keyframes header-digit-yellow-one-a {
  0%,
  15% {
    opacity: 0;
  }
  16%,
  93% {
    opacity: 1;
  }
  96%,
  to {
    opacity: 0;
  }
}
@keyframes header-digit-yellow-one-b {
  0%,
  28% {
    opacity: 0;
  }
  29%,
  93% {
    opacity: 1;
  }
  96%,
  to {
    opacity: 0;
  }
}
@keyframes header-digit-yellow-four-a {
  0%,
  41% {
    opacity: 0;
  }
  42%,
  93% {
    opacity: 1;
  }
  96%,
  to {
    opacity: 0;
  }
}
@keyframes header-digit-yellow-four-b {
  0%,
  54% {
    opacity: 0;
  }
  55%,
  93% {
    opacity: 1;
  }
  96%,
  to {
    opacity: 0;
  }
}
.hero__portrait {
  width: min(920px, 54vw) !important;
  height: 790px !important;
  bottom: 0 !important;
  right: -7% !important;
}
.hero__portrait > img {
  object-position: right bottom !important;
  transform-origin: 100% 100% !important;
  transform: translateX(18%) scale(1.15) !important;
}
.hero__portrait-quote {
  bottom: 118px !important;
  left: 55% !important;
}
.hero__portrait-quote:hover {
  transform: translate(-50%, -4px) !important;
}
.hero__portrait-quote:focus-visible {
  transform: translate(-50%, -4px) !important;
}
.hero__rail-wrap--flags {
  padding: 28px 0 18px !important;
}
.editorial-intro.section-pad {
  padding-top: 44px !important;
}
.hero__secondary {
  min-height: 0 !important;
  box-shadow: none !important;
  color: var(--white) !important;
  letter-spacing: 0.015em !important;
  text-transform: none !important;
  background: none !important;
  border: 0 !important;
  border-bottom: 1px solid #ffffff6b !important;
  border-radius: 0 !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 7px 0 8px !important;
  font-size: 0.7rem !important;
  font-weight: 780 !important;
  line-height: 1 !important;
  display: inline-flex !important;
}
.hero__secondary:after {
  display: none !important;
}
.hero__secondary:hover {
  border-bottom-color: var(--sun) !important;
  color: var(--sun) !important;
  background: none !important;
  transform: translateY(-2px) !important;
}
.hero__secondary:focus-visible {
  border-bottom-color: var(--sun) !important;
  color: var(--sun) !important;
  background: none !important;
  transform: translateY(-2px) !important;
}
.about-facts {
  background: #fffffff5 !important;
  border: 1px solid #22439521 !important;
  overflow: hidden !important;
  box-shadow: 0 18px 42px #1734721a !important;
}
.about-facts > div,
.about-facts > div:nth-child(n) {
  border-top: 5px solid var(--brand-bright) !important;
  background: #fffffff5 !important;
}
.about-facts > div:nth-child(2) {
  border-top-color: var(--sun) !important;
}
.about-facts > div:nth-child(3) {
  border-top-color: var(--green) !important;
}
.about-facts > div + div {
  border-left: 1px solid #2243951a !important;
}
.about-facts span {
  color: var(--brand) !important;
}
.about-facts strong {
  color: var(--ink) !important;
}
.about-facts p {
  color: var(--muted) !important;
}
@media (width <= 1180px) {
  .hero__portrait {
    width: min(860px, 60vw) !important;
    right: -11% !important;
  }
}
@media (width <= 900px) {
  .hero__portrait {
    width: min(760px, 104vw) !important;
    height: 650px !important;
    bottom: 0 !important;
    right: auto !important;
  }
  .hero__portrait > img {
    object-position: center bottom !important;
    transform-origin: bottom !important;
    transform: scale(1.15) !important;
  }
  .hero__portrait-quote {
    bottom: 92px !important;
    left: 50% !important;
  }
  .hero__rail-wrap--flags {
    padding: 26px 0 18px !important;
  }
  .editorial-intro.section-pad {
    padding-top: 38px !important;
  }
}
@media (width <= 700px) {
  .hero__portrait {
    width: 116vw !important;
    height: 570px !important;
    bottom: 0 !important;
  }
  .hero__portrait-quote {
    bottom: 72px !important;
  }
  .hero__rail-wrap--flags {
    padding: 22px 0 16px !important;
  }
  .hero__secondary {
    min-height: 50px !important;
    padding-inline: 19px !important;
    font-size: 0.65rem !important;
  }
  .about-facts > div + div {
    border-top-width: 5px !important;
    border-left: 0 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header:not(.is-scrolled) .header-brand:after {
    animation: none !important;
  }
}
.site-header:not(.is-scrolled) .header-brand__digit:after {
  background: url(../images/logo-keliana-digits-yellow.svg) 50%/100% 100%
    no-repeat !important;
  -webkit-mask: none !important;
  mask: none !important;
}
.insta-card--blue {
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(145deg, #3269d8 0, var(--brand) 74%) !important;
}
.insta-card--blue:before {
  z-index: 0;
  content: "";
  opacity: 0.72;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 0 0,
      #0000 0 34px,
      #ffffff21 35px 47px,
      #0000 48px
    ),
    radial-gradient(
      circle at 100% 100%,
      #0000 0 34px,
      #e8d01d3d 35px 47px,
      #0000 48px
    );
  background-position:
    0 0,
    55px 55px;
  background-size: 110px 110px;
  display: block;
  position: absolute;
  inset: -18px;
  transform: rotate(-4deg) scale(1.08);
}
.insta-card--blue > * {
  z-index: 2;
  position: relative;
}
.insta-card--blue .insta-card__number {
  text-shadow: 0 10px 28px #081d4833;
  align-items: baseline;
  gap: 0.08em;
  display: inline-flex;
}
.insta-card--blue .insta-card__number span {
  letter-spacing: -0.045em;
}
@media (width >= 901px) {
  .timeline__items {
    padding-top: 66px !important;
  }
  .timeline-item__dot {
    top: -65px !important;
  }
  .timeline-item:before {
    content: "";
    pointer-events: none;
    border-left: 1px dashed #e8d01db3;
    height: 38px;
    position: absolute;
    top: -48px;
    left: 50%;
  }
}
.timeline-modal__gallery-nav {
  z-index: 4;
  min-height: 42px;
  color: var(--white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #081d48b8;
  border: 1px solid #ffffff38;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 5px;
  display: inline-flex;
  position: absolute;
  top: 24px;
  left: 24px;
}
.timeline-modal__gallery-nav button {
  width: 32px;
  height: 32px;
  color: var(--white);
  cursor: pointer;
  background: #ffffff1a;
  border: 0;
  border-radius: 50%;
  place-items: center;
  padding: 0;
  display: grid;
}
.timeline-modal__gallery-nav button:hover {
  background: var(--sun);
  color: var(--brand-dark);
}
.timeline-modal__gallery-nav button:focus-visible {
  background: var(--sun);
  color: var(--brand-dark);
}
.timeline-modal__gallery-nav button:disabled {
  cursor: default;
  opacity: 0.38;
}
.timeline-modal__gallery-nav svg {
  width: 17px;
  height: 17px;
}
.timeline-modal__gallery-nav span {
  letter-spacing: 0.04em;
  text-align: center;
  min-width: 46px;
  font-size: 0.66rem;
  font-weight: 800;
}
.timeline-modal__gallery-dots {
  z-index: 4;
  gap: 7px;
  display: flex;
  position: absolute;
  top: 80px;
  left: 31px;
}
.timeline-modal__gallery-dots button {
  cursor: pointer;
  background: none;
  border: 1px solid #ffffffb8;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  padding: 0;
}
.timeline-modal__gallery-dots button.is-active {
  border-color: var(--sun);
  background: var(--sun);
}
@media (width <= 640px) {
  .timeline-modal__gallery-nav {
    top: 16px;
    left: 16px;
  }
  .timeline-modal__gallery-dots {
    top: 70px;
    left: 23px;
  }
}
