:root {
  --font-serif: "Libre Baskerville", serif;
  --font-sans: "Familjen Grotesk", sans-serif;
  --brand-gold-dark: #8A5B1F;
  --brand-gold: #EEA320;
  --brand-blue-dark: #1D3D58;
  --brand-blue: #4987B6;
  --brand-orange-dark: #CD4418;
  --brand-orange: #F97B43;
  --red-light: #F97B43;
  --section-padding: 80px;
  --section-title-font-size: 49px;
}

/* ── TIMELINE EVENTS ── */
.timeline-events {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  align-items: flex-start;
}

/* KIRI – list */
.timeline-list {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 112px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.2);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}

.tl-date {
  width: 100px;
  text-align: right;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  padding-right: 12px;
  transition: color 0.2s;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.2s, transform 0.2s;
  margin: 0 12px;
}

.tl-name {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  white-space: nowrap;
}

.tl-arrow {
  opacity: 0;
  margin-right: 4px;
  transition: opacity 0.2s;
  color: var(--brand-orange);
}

/* active & hover state */
.timeline-item.active .tl-date,
.timeline-item.active .tl-name {
  color: #fff;
}

.timeline-item.active .tl-dot {
  background: var(--brand-orange);
  transform: scale(1.3);
}

.timeline-item.active .tl-arrow {
  opacity: 1;
}

.timeline-item:hover .tl-date,
.timeline-item:hover .tl-name {
  color: rgba(255,255,255,0.8);
}

.timeline-item:hover .tl-dot {
  background: rgba(255,255,255,0.7);
}

/* KANAN – content panels */
.timeline-content {
  flex: 1;
  min-width: 0;
}

.event-panel {
  display: none;
}

.event-panel.active {
  display: block;
  animation: fadeInPanel 0.3s ease;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.event-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px 40px;
  color: #fff;
}

.event-card h4 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 20px;
}

.event-meta-item {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-meta-item i {
  color: var(--brand-orange);
}

.event-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
}

.event-highlight {
  color: var(--brand-orange);
}

.speaker-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.speaker-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 16px;
  flex: 1 1 200px;
}

.speaker-mini-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.speaker-mini-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.speaker-mini-role {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.event-action {
  margin-top: 20px;
}

.btn-event-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-event-detail:hover {
  background: var(--brand-orange-dark);
  color: #fff;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 991.98px) {
  .timeline-events {
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }

  .timeline-list {
    flex: none;
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 16px;
    gap: 0;
    scrollbar-width: none;
  }

  .timeline-list::-webkit-scrollbar { display: none; }

  .timeline-list::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 22px;
    width: 100%;
    height: 2px;
  }

  .timeline-item {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0 12px;
    min-width: 80px;
    gap: 6px;
  }

  .tl-date {
    width: auto;
    text-align: center;
    padding: 0;
    font-size: 12px;
  }

  .tl-dot {
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .tl-name {
    display: none;
  }

  .timeline-content {
    width: 100%;
    margin-top: 24px;
  }

  .event-card {
    padding: 24px 20px;
  }

  .event-card h4 {
    font-size: 20px;
  }

  .speaker-mini {
    flex: 1 1 100%;
  }
}

html,
body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

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

p, h1, h2, h3 {
  margin: 0;
}

body {
  position: relative;
  isolation: isolate;
  color: white;
  font-family: var(--font-sans);
}

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

body.mobile-menu-open header {
  z-index: 1100;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("images/page-bg.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  pointer-events: none;
  z-index: -1;
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

main {
  overflow-x: hidden;
}

main > section {
  position: relative;
  z-index: 1;
}

.page-flare-anchor {
  position: relative;
  z-index: 0;
  height: 0;
  pointer-events: none;
}

.page-flare {
  position: absolute;
  display: block;
  width: 286px;
  height: 780px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.page-flare--left {
  left: 0;
}

.page-flare--right {
  right: 0;
}

.page-flare--mirror {
  transform: scaleX(-1);
}

.page-flare-anchor--hero-summary .page-flare,
.page-flare-anchor--series-speakers .page-flare,
.page-flare-anchor--logos-booklet .page-flare {
  top: -390px;
}

.page-flare--projects,
.page-flare--earlier {
  top: 50%;
  transform: translateY(-50%);
}

.page-flare--projects {
  top: 0;
  transform: translateY(-35%);
}

.page-flare--projects.page-flare--mirror,
.page-flare--earlier.page-flare--mirror {
  transform: translateY(-50%) scaleX(-1);
}

.page-flare--projects.page-flare--mirror {
  transform: translateY(-35%) scaleX(-1);
}

#hero-top-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__wrapper {
  max-width: 1096px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero__caption {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
}

.hero__left {
  max-width: 648px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero__heading {
  font-family: var(--font-serif);
  font-size: 61px;
}

.hero__subheading {
  font-size: 16px;
  font-weight: normal;
}

.hero__media {
  aspect-ratio: 312/154;
  max-width: 312px;
  position: relative;
}

.hero__media__img {
  width: 100%;
  height: 100%;
}

.hero__media__content {
  position: absolute;
  inset: 0;
  padding: 8px;
  padding-bottom: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__media__caption {
  font-size: 13px;
  opacity: 0.6;
}


.hero__media__title {
  font-size: 16px;
  text-align: center;
}


.hero__media__link {
  font-size: 13px;
  max-width: 120px;
  margin-left: auto;
}

.navbar-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

.navbar-light .navbar-toggler {
  border-color: transparent;
}

.navbar-light .navbar-toggler:focus {
  outline: none;
}

.navbar-toggler__bars {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 24px;
}

.navbar-toggler__bar {
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: white;
  transform-origin: center;
  transition: width 180ms ease, opacity 160ms ease, transform 220ms ease;
}

.navbar-toggler__bar:nth-child(2) {
  width: 22px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.section-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
  scroll-margin-top: 24px;
}


#summary {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.summary {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.summary__title {
  font-family: var(--font-sans);
  font-size: 20px;
}

.summary__item {
  display: flex;
  align-items: center;
  padding: 0px 12px;
  min-width: 200px;
}

.summary__desc {
  font-size: 13px;
}

.summary__item__icon
{
  margin-right: 24px;
  color: var(--brand-orange);
}

.section__title {
  font-size: var(--section-title-font-size);
  font-family: var(--font-sans);
  font-weight: 600;
}

.series-events__timeline {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  gap: 24px;
  cursor: pointer;
  transition: color 0.2s;
}

.series-events__timeline:hover {
  color: rgba(255, 255, 255, 0.8);
}

.series-events__timeline:hover .series-events__timeline__date {
  color: rgba(255, 255, 255, 0.8);
}

.series-events__timeline--active {
  color: rgba(255, 255, 255, 0.5);
}

.series-events__content {
  margin-top: 64px;
}

.series-events__timeline__label {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.series-events__timeline__date {
  font-size: 16px;
  color: white;
  line-height: 1.2;
  margin: 0;
  width: 150px;
  text-align: right;
  flex-shrink: 0;
}

.series-events__timeline-marker {
  display: flex;
  align-items: center;
  height: 44px;
  position: relative;
}

.series-events__timeline__dot {
  position: relative;
  z-index: 1;
  align-self: center;
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background-color: white;
  margin: 0;
}

.series-events__timeline__dot__wrapper {
  position: relative;
}
.series-events__timeline-marker::after {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  background: white;
  left: 7px;
  top: 0;
}

.series-events__timeline__arrow {
  line-height: 0;
  display: none;
  color: white;
  font-size: 48px;
  margin-left: 8px;
}

.series-events__timeline--active .series-events__timeline__arrow {
  display: block;
}

.series-events__timeline--active .series-events__timeline__dot {
  background-color: var(--brand-orange);
}


.series-events__timeline--active .series-events__timeline__label {
  color: white;
}

.series-events__wrapper {
  display: flex;
}


.series-events__content {
  display: flex;
  flex-direction: column;
  gap: 40px;

}


.series-events__speaker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.series-events__wrapper {
  margin-top: 80px;
}

.series-events__speaker__item {
  display: flex;
}

.series-events__heading {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  margin: 0 0 16px;
}

.series-events__description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
}

.series-events__speaker__heading {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.series-events__speaker__subheading {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 2px 0 0;
}

.series-events__speaker__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.series-events__action {
  margin-top: 8px;
  text-align: center;
}

.event-speakers__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
  text-align: left;
}

.event-speakers__nav {
  flex-shrink: 0;
}

.carousel-nav {
  display: flex;
  gap: 12px;
}

.carousel-nav .owl-prev,
.carousel-nav .owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  opacity: 0.5;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.carousel-nav .owl-prev:hover,
.carousel-nav .owl-prev:focus,
.carousel-nav .owl-next:hover,
.carousel-nav .owl-next:focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  outline: none;
  opacity: 1;
}

.carousel-nav .owl-prev:hover,
.carousel-nav .owl-prev:focus {
  transform: translateX(-2px);
}

.carousel-nav .owl-next:hover,
.carousel-nav .owl-next:focus {
  transform: translateX(2px);
}

.carousel-nav__icon {
  display: block;
  color: white;
  font-size: 22px;
  line-height: 1;
}

.event-speakers__content {
  text-align: center;
}

.event-speakers__item {
  text-align: center;
  padding: 0px 16px;
}

.event-speakers__avatar {
  width: 180px;
  height: 180px;
  max-width: 100%;
  margin: 0 auto 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
}

.event-speakers__name {
  text-align: center;
  font-size: 25px;
}

.event-speakers__role {
  text-align: center;
  font-size: 16px;
}

.event-speakers__list .owl-stage {
  display: flex;
}

.event-speakers__list .owl-item {
  display: flex;
}

.event-speakers__list .owl-item .event-speakers__item {
  width: 100%;
}

.event-speakers__footer {
  margin-top: 64px;
}

.event-speakers__link-wrap {
  text-align: center;
}

.event-speakers__link {
  color: white;
  font-size: 24px;
}

@media (max-width: 575.98px) {
  .event-speakers__header {
    align-items: flex-start;
    flex-direction: column;
  }
}

.projects__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 0.6;
  padding-top: 30%;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.projects__image-wrap:focus {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

.projects__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners__item {
  text-align: center;
}

.partners__logo {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
}

.projects__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, black, transparent 70%);
}

.projects__detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.projects__image-wrap:hover .projects__detail,
.projects__image-wrap:focus .projects__detail,
.projects__image-wrap:focus-within .projects__detail,
.projects__image-wrap--detail-visible .projects__detail {
  opacity: 1;
  transform: translateY(0);
}

.projects__detail-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.projects__detail-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.projects__detail-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.projects__detail-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: #fff;
}

.projects__detail-row--block {
  flex-direction: column;
  gap: 2px;
}

.projects__detail-label {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.projects__detail-value {
  color: rgba(255,255,255,0.85);
}

.projects__detail-address {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.5;
}

.projects__detail-coords {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.projects__detail-link {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s;
}

.projects__detail-link:hover {
  color: var(--brand-orange);
  text-decoration: none;
}

.projects__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.projects__nav {
  flex-shrink: 0;
}

.projects__wrap {
  margin-top: 64px;
}

.projects__item {
  position: relative;
}

.projects__wrap .owl-stage {
  display: flex;
}

.projects__wrap .owl-item {
  display: flex;
}

.projects__wrap .owl-item .projects__item {
  width: 100%;
}

.projects__title {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 3px;
}

@media (max-width: 575.98px) {
  .projects__header {
    align-items: flex-start;
    flex-direction: column;
  }
}

.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 64px;
}


.partners__item img {
  opacity: 0.4;
}


.partners__item:hover img {
  opacity: 1;
}

.partners__isf {
  max-width: 760px;
  margin: 76px auto 0;
  opacity: 0.5;
  text-align: center;
}

.partners__isf-description {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.25;
}

.partners__isf-logo {
  display: block;
  width: 250px;
  max-width: 100%;
  height: auto;
  margin: 48px auto 0;
}

#booklet {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 120px;
}

.booklet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 48px;
  margin: 0 auto;
}

.booklet__media {
  position: relative;
  min-height: 640px;
}

.booklet__title {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0;
}

.booklet__image {
  position: absolute;
  left: -70px;
  top: 72px;
  display: block;
  width: min(760px, 118%);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 42px 48px rgba(0, 0, 0, 0.38));
}

.booklet__content {
  max-width: 560px;
  padding-top: 74px;
}

.booklet__description {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.3;
}

.booklet__action {
  margin-top: 46px;
  text-align: center;
}

.booklet__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 12px 22px;
  border-radius: 18px;
  background: var(--brand-orange);
  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.booklet__button:hover,
.booklet__button:focus {
  background: #ff8d5c;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

#earlier-jif {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}

.earlier-jif {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(520px, 0.8fr);
  align-items: start;
  gap: 80px;
  max-width: 1220px;
  margin: 0 auto;
}

.earlier-jif__intro {
  padding-top: 12px;
}

.earlier-jif__title {
  max-width: 640px;
  font-family: var(--font-sans);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0;
}

.earlier-jif__description {
  max-width: 560px;
  margin-top: 72px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.2;
}

.earlier-jif__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 74px;
  row-gap: 66px;
}

.earlier-jif__stat {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  column-gap: 22px;
  min-height: 118px;
}

.earlier-jif__icon {
  color: white;
  font-size: 76px;
  line-height: 1;
  text-align: center;
}

.earlier-jif__value {
  color: white;
  font-family: var(--font-sans);
  font-size: 43px;
  font-weight: 700;
  line-height: 1;
}

.earlier-jif__unit {
  margin-top: 2px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.earlier-jif__label {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.15;
}

.earlier-jif__unit + .earlier-jif__label {
  margin-top: 20px;
}

@media (max-width: 1199.98px) {
  .earlier-jif {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .earlier-jif__description {
    margin-top: 40px;
  }

  .earlier-jif__stats {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 40px;
  }
}

@media (max-width: 767.98px) {
  #earlier-jif {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .earlier-jif__title {
    font-size: 38px;
  }

  .earlier-jif__description {
    font-size: 18px;
  }

  .earlier-jif__stats {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .earlier-jif__stat {
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: auto;
  }

  .earlier-jif__icon {
    font-size: 62px;
  }

  .earlier-jif__value {
    font-size: 36px;
  }

  .earlier-jif__label {
    margin-top: 12px;
    font-size: 18px;
  }
}

#last-event-gallery {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 96px;
}

.last-event-gallery {
  max-width: 1320px;
  margin: 0 auto;
}

.last-event-gallery__main {
  min-width: 0;
}

.last-event-gallery__image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    #5f5f5f;
}

.last-event-gallery__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.last-event-gallery__image--large {
  aspect-ratio: 850 / 500;
}

.last-event-gallery__carousel .owl-stage {
  display: flex;
}

.last-event-gallery__carousel .owl-item {
  display: flex;
}

.last-event-gallery__slide {
  width: 100%;
}

.last-event-gallery__nav {
  margin-top: 22px;
}

.last-event-gallery__body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 48px;
  align-items: start;
  margin-top: 46px;
}

.last-event-gallery__title {
  font-family: var(--font-sans);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.last-event-gallery__description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.18;
}

.last-event-gallery__description + .last-event-gallery__description {
  margin-top: 24px;
}

#publications {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 120px;
}

.publications__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.publications__nav {
  flex-shrink: 0;
}

.publications__list {
  margin-top: 76px;
}

.publications__list .owl-stage {
  display: flex;
}

.publications__list .owl-item {
  display: flex;
}

.publications__list .owl-item .publications__item {
  width: 100%;
}

.publications__item {
  display: flex;
  flex-direction: column;
  color: white;
}

.publications__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    #5f5f5f;
}

.publications__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.publications__content {
  padding-top: 28px;
}

.publications__date {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.2;
}

.publications__title {
  margin-top: 12px;
  color: white;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}

#footer {
  position: relative;
  min-height: 350px;
  padding-top: 250px;
  padding-bottom: 60px;
  isolation: isolate;
}

.footer__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  transform: rotate(180deg);
  z-index: -1;
}

.footer {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand {
  margin-bottom: 70px;
  text-align: center;
}

.footer__logo {
  display: inline-block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.footer__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 36px;
}

.footer__link,
.footer__email,
.footer__social {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.footer__link {
  font-size: 17px;
  line-height: 1.2;
}

.footer__link:hover,
.footer__link:focus,
.footer__email:hover,
.footer__email:focus,
.footer__social:hover,
.footer__social:focus {
  color: white;
  text-decoration: none;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
}

.footer__contact-label,
.footer__email {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.footer__contact-icon {
  font-size: 26px;
  line-height: 1;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  position: relative;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.2;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 575.98px) {
  .publications__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .publications__list {
    margin-top: 48px;
  }
}

@media (max-width: 991.98px) {
  .footer__bar,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__contact {
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  #footer {
    padding-top: 72px;
    padding-bottom: 48px;
  }

  .footer__brand {
    margin-bottom: 52px;
    text-align: left;
  }

  .footer__nav {
    flex-direction: column;
  }
}

@media (max-width: 991.98px) {
  .last-event-gallery__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .last-event-gallery__title {
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  #last-event-gallery {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .last-event-gallery__title {
    font-size: 36px;
  }

}

@media (max-width: 991.98px) {
  :root {
    --section-padding: 64px;
    --section-title-font-size: 40px;
  }

  .navbar {
    position: relative;
  }

  .navbar-brand,
  .navbar-toggler {
    position: relative;
    z-index: 1051;
  }

  .navbar-toggler {
    padding-right: 0;
  }

  .navbar-collapse {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100vh !important;
    min-height: 100vh;
    padding: 96px 24px 64px;
    background:
      linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1)),
      url("images/page-bg.png") center / cover no-repeat;
    opacity: 0;
    pointer-events: none;
    clip-path: circle(0 at calc(100% - 48px) 48px);
    transition: clip-path 460ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    opacity: 1;
    pointer-events: auto;
    clip-path: circle(150vmax at calc(100% - 48px) 48px);
  }

  .navbar-collapse.menu-items-hiding {
    opacity: 0;
    clip-path: circle(0 at calc(100% - 48px) 48px);
    transition-delay: 260ms;
  }

  .navbar-nav {
    align-items: center;
    gap: 18px;
    margin: 0 !important;
    text-align: center;
  }

  .navbar-nav .nav-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 280ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .navbar-collapse.menu-items-visible .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .navbar-collapse.menu-items-hiding .nav-item {
    transition-delay: 0ms;
  }

  .navbar-collapse.menu-items-visible .nav-item:nth-child(1) {
    transition-delay: 80ms;
  }

  .navbar-collapse.menu-items-visible .nav-item:nth-child(2) {
    transition-delay: 130ms;
  }

  .navbar-collapse.menu-items-visible .nav-item:nth-child(3) {
    transition-delay: 180ms;
  }

  .navbar-collapse.menu-items-visible .nav-item:nth-child(4) {
    transition-delay: 230ms;
  }

  .navbar-collapse.menu-items-visible .nav-item:nth-child(5) {
    transition-delay: 280ms;
  }

  .navbar-collapse.menu-items-visible .nav-item:nth-child(6) {
    transition-delay: 330ms;
  }

  .navbar-collapse.menu-items-visible .nav-item:nth-child(7) {
    transition-delay: 380ms;
  }

  .navbar-light .navbar-nav .nav-link {
    color: white;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
  }

  .hero__wrapper {
    align-items: flex-start;
    flex-direction: column;
    gap: 48px;
    padding: 72px 0;
  }

  .hero__left {
    max-width: 100%;
  }

  .hero__right {
    justify-content: flex-start;
  }

  .hero__media {
    width: 100%;
    max-width: none;
  }

  .summary {
    flex-wrap: wrap;
  }

  .series-events__wrapper {
    display: block;
  }

  .series-events__timelines {
    overflow-x: visible;
    padding-bottom: 0;
  }

  .series-events__timeline {
    min-width: 0;
    width: 100%;
  }

  .series-events__content {
    margin-top: 48px;
  }

  .series-events__speaker {
    grid-template-columns: 1fr;
  }

  .booklet {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .booklet__media {
    min-height: auto;
  }

  .booklet__image {
    position: relative;
    left: 50%;
    top: auto;
    width: min(720px, 112vw);
    transform: translateX(-50%);
  }

  .booklet__content {
    max-width: 720px;
    padding-top: 0;
  }

  .page-flare {
    width: 220px;
    height: 600px;
  }

  .page-flare-anchor--hero-summary .page-flare,
  .page-flare-anchor--series-speakers .page-flare,
  .page-flare-anchor--logos-booklet .page-flare {
    top: -300px;
  }
}

@media (max-width: 767.98px) {
  section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .hero__heading {
    font-size: 44px;
  }

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

  .summary__item {
    min-width: 0;
    width: 100%;
  }

  .partners {
    gap: 40px 32px;
  }

  .partners__logo {
    max-width: 140px;
  }

  .partners__isf {
    margin-top: 56px;
  }

  .partners__isf-logo {
    width: 220px;
    margin-top: 36px;
  }

  #booklet {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .booklet__title {
    font-size: 36px;
  }

  .last-event-gallery__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-padding: 48px;
    --section-title-font-size: 34px;
  }

  .section-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__wrapper {
    gap: 36px;
    padding: 48px 0;
  }

  .hero__heading {
    font-size: 36px;
  }

  .hero__caption {
    font-size: 18px;
  }

  .series-events__wrapper {
    margin-top: 48px;
  }

  .series-events__timelines {
    overflow-x: visible;
    padding-bottom: 0;
  }

  .series-events__timeline {
    min-width: 0;
    width: 100%;
    gap: 16px;
  }

  .series-events__timeline__date {
    width: 72px;
  }

  .series-events__heading {
    font-size: 28px;
  }

  .series-events__speaker__item {
    align-items: flex-start;
  }

  .series-events__speaker__avatar {
    width: 72px;
    height: 72px;
    margin-right: 16px;
  }

  .booklet__image {
    left: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .booklet__action,
  .series-events__action {
    text-align: left;
  }

  .booklet__button {
    width: 100%;
    border-radius: 14px;
  }

  .earlier-jif__stat {
    column-gap: 16px;
  }

  .publications__title,
  .event-speakers__name {
    font-size: 21px;
  }

  .footer__logo {
    width: 180px;
  }

  .page-flare {
    width: 140px;
    height: 382px;
  }

  .page-flare-anchor--hero-summary .page-flare,
  .page-flare-anchor--series-speakers .page-flare,
  .page-flare-anchor--logos-booklet .page-flare {
    top: -191px;
  }

  .page-flare--projects {
    transform: translateY(-25%);
  }
}
