:root {
  --ink: #2a2a30;
  --ink-soft: #43475a;
  --text-gray: #6b6b72;
  --text-muted: #8d91a2;
  --line: #d8d8dd;
  --line-soft: #e7e8ef;
  --surface: #ffffff;
  --surface-alt: #f7f7fb;
  --footer: #271b68;
  --footer-top: #302277;
  --accent: #2f3377;
  --cursor-blue: #271b68;
  --cursor-crown: #e5bb4f;

  /* Modular scale inspired by the golden section for clearer hierarchy. */
  --fs-xxs: 0.75rem;
  --fs-xs: 0.875rem;
  --fs-sm: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.4375rem;
  --fs-xl: 1.875rem;
  --fs-2xl: 2.4375rem;
  --fs-3xl: 3.1875rem;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-header: 0 2px 12px rgba(25, 24, 52, 0.05);
  --shadow-soft: 0 16px 34px rgba(27, 25, 64, 0.1);
  --content-max: 1312px;
  --content-gutter: clamp(16px, 8.34vw, 160px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #ffffff;
  color: var(--ink);
  font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.page-transition {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.page-transition.is-visible {
  opacity: 1;
}

body.page-transition.is-leaving {
  opacity: 0;
}

body.preloader-active {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  background: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.46s ease, visibility 0.46s ease;
}

.site-preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(37, 28, 103, 0.08) 0, rgba(37, 28, 103, 0) 52%),
    #ffffff;
}

.site-preloader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.site-preloader__logo {
  width: clamp(170px, 24vw, 260px);
  height: auto;
  object-fit: contain;
}

.site-preloader__counter {
  margin: 0;
  color: #302277;
  font-size: clamp(1.05rem, 1.4vw, 1.34rem);
  font-weight: 400;
  letter-spacing: 0.14em;
}

.site-preloader__percent {
  padding-left: 2px;
  font-weight: 400;
}

.site-preloader.is-ready .site-preloader__counter {
  color: #302277;
}

.site-preloader.is-fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  body.page-transition {
    opacity: 1;
    transition: none;
  }

  body.page-transition.is-leaving {
    opacity: 1;
  }

  .site-preloader {
    transition: none;
  }
}

.fluid-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--cursor-blue);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 1300;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: opacity 0.16s ease, border-color 0.14s ease;
  will-change: transform, opacity;
}

.fluid-cursor.is-visible {
  opacity: 1;
}

.fluid-cursor.is-light {
  border-color: #ffffff;
}

.fluid-cursor::before,
.fluid-cursor::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity 0.18s ease,
    transform 0.22s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.fluid-cursor::before {
  border: 1px solid transparent;
}

.fluid-cursor::after {
  background: transparent;
}

.fluid-cursor.is-send-hover {
  border-color: var(--cursor-crown);
}

.fluid-cursor.is-send-hover::before {
  opacity: 1;
  transform: scale(1.16);
  border: 1.4px solid rgba(229, 187, 79, 0.62);
  animation: sendClickHintRing 0.72s ease-in-out infinite alternate;
}

.fluid-cursor.is-send-hover::after {
  opacity: 1;
  transform: scale(0.42);
  background: rgba(229, 187, 79, 0.24);
  animation: sendClickHintCore 0.72s ease-in-out infinite alternate;
}

@keyframes sendClickHintRing {
  from {
    transform: scale(1.08);
    opacity: 0.46;
  }
  to {
    transform: scale(1.34);
    opacity: 0.82;
  }
}

@keyframes sendClickHintCore {
  from {
    transform: scale(0.34);
    opacity: 0.18;
  }
  to {
    transform: scale(0.56);
    opacity: 0.32;
  }
}

@media (hover: hover) and (pointer: fine) {
  html.custom-cursor-on,
  html.custom-cursor-on body,
  html.custom-cursor-on a,
  html.custom-cursor-on button,
  html.custom-cursor-on [role="button"],
  html.custom-cursor-on input,
  html.custom-cursor-on textarea,
  html.custom-cursor-on select,
  html.custom-cursor-on label,
  html.custom-cursor-on .nav-trigger,
  html.custom-cursor-on .menu-toggle {
    cursor: none !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(47, 51, 119, 0.42);
  outline-offset: 2px;
  border-radius: 6px;
}

.page-shell {
  width: 100%;
  margin: 0;
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  height: 78px;
  border-bottom: 1px solid var(--line-soft);
  padding: 0 clamp(22px, 3.55vw, 68px) 0 clamp(18px, 1.78vw, 34px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.67vw, 32px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(4px) saturate(120%);
  z-index: 60;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 143px;
  height: auto;
  display: block;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav > .nav-link,
.nav-trigger {
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(14px, 0.84vw, 18px);
  font-weight: 400;
  letter-spacing: 0.072em;
  text-transform: uppercase;
  color: #3f3f46;
  position: relative;
  line-height: 1.12;
  padding: 4px 0 6px;
  display: inline-flex;
  align-items: center;
  height: auto;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav > .nav-link {
  display: inline-flex;
}

.main-nav > .nav-link:hover,
.nav-trigger:hover,
.nav-dropdown.open .nav-trigger {
  color: #251c67;
  transform: translateY(-1px);
}

.main-nav > .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  border-radius: 999px;
  background: var(--accent);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  top: 100%;
  height: 16px;
}

.nav-trigger {
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav-trigger::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-right: 1px solid #6c6d75;
  border-bottom: 1px solid #6c6d75;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.nav-dropdown.open .nav-trigger::after {
  transform: translateY(-50%) rotate(225deg);
}

.nav-trigger:hover::after,
.nav-dropdown.open .nav-trigger::after {
  border-color: #251c67;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  min-width: 244px;
  background: var(--surface);
  border: 1px solid #e8e8f2;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(28, 26, 62, 0.14);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #e8e8f0;
  border-top: 1px solid #e8e8f0;
  transform: rotate(45deg);
}

.dropdown-menu a {
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  display: block;
  color: #4d4f5d;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease,
    transform 0.18s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: #f4f3fc;
  color: #251c67;
  transform: translateX(2px);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav > .nav-link.nav-lang-switch {
  gap: 7px;
  padding-right: 0;
  font-size: clamp(13px, 0.79vw, 16px);
}

.nav-lang-switch .lang-icon {
  font-size: 0.85em;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 34px;
  border: 0;
  background: transparent;
  margin-left: auto;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #363640;
  margin: 7px 0;
}

.hero-wrap {
  width: min(var(--content-max), calc(100% - (var(--content-gutter) * 2)));
  margin: clamp(8px, 1.1vw, 16px) auto 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.hero-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.24) 0%,
    rgba(0, 0, 0, 0.46) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-slogan {
  position: absolute;
  left: clamp(20px, 4.8vw, 72px);
  right: clamp(20px, 4.8vw, 72px);
  bottom: clamp(20px, 4.5vw, 56px);
  max-width: 980px;
  z-index: 2;
  color: #ffffff;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.hero-slogan p {
  margin: 0;
}

.hero-slogan-main {
  font-size: clamp(24px, 2.7vw, 46px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

main {
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-weight: 300;
}

.news-section {
  width: min(var(--content-max), calc(100% - (var(--content-gutter) * 2)));
  margin: clamp(58px, 4.8vw, 92px) auto 0;
  min-height: 0;
  padding-bottom: clamp(76px, 6.25vw, 120px);
}

.news-top-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: clamp(34px, 2.71vw, 52px);
}

.news-top-row h1 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(40px, 2.92vw, 56px);
  letter-spacing: 0.06em;
  color: #35353c;
  line-height: 1;
}

.news-top-row h1.one-line-title {
  white-space: nowrap;
}

.news-main-title {
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-weight: 200;
}

.crumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.32em;
  font-weight: 300;
  font-size: clamp(12px, 0.84vw, 14px);
  letter-spacing: 0.018em;
  line-height: 1.2;
  color: var(--text-muted);
}

.crumb > span[aria-hidden="true"] {
  opacity: 0.82;
}

a.crumb:hover {
  color: #595d71;
}

.crumb-link {
  color: inherit;
  text-decoration: none;
}

.crumb-link:hover,
.crumb-link:focus-visible {
  color: #595d71;
}

.timeline {
  position: relative;
  padding-left: 0;
  max-width: 1120px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 7px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(47, 51, 119, 0.14) 0%,
    rgba(47, 51, 119, 0.46) 18%,
    rgba(47, 51, 119, 0.46) 82%,
    rgba(47, 51, 119, 0.14) 100%
  );
}

.timeline-item {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 26px 104px;
  border-bottom: 1px solid #dbdde7;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.timeline-item:hover {
  border-color: #c8cada;
  transform: translateX(2px);
}

.timeline-item .dot {
  position: absolute;
  left: 22px;
  top: 14px;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #2f3377;
  box-shadow: 0 0 0 4px rgba(47, 51, 119, 0.08);
}

.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline-title {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(23px, 1.46vw, 34px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.36;
  max-width: 37ch;
}

.timeline-meta {
  margin: 0 0 11px;
  color: #8a8d9c;
  font-size: clamp(10px, 0.7vw, 14px);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.timeline-desc {
  margin: 12px 0 0;
  color: #686d7e;
  font-size: clamp(16px, 1.02vw, 21px);
  font-weight: 300;
  line-height: 1.56;
  max-width: 52ch;
}

.overview-copy {
  max-width: 980px;
  color: #4a4f61;
  text-align: justify;
  text-justify: inter-word;
}

.overview-copy p {
  margin: 0 0 20px;
  font-size: clamp(17px, 1.08vw, 21px);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.overview-copy h2 {
  margin: 28px 0 12px;
  color: #353a4d;
  font-size: clamp(24px, 1.7vw, 30px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.overview-copy ul {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.overview-copy li {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.08vw, 21px);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.overview-copy p:last-child {
  margin-bottom: 0;
}

.project-news-list {
  display: grid;
  gap: 0;
  margin: 4px 0 22px;
  border-top: 1px solid #e2e6f0;
}

.project-news-item {
  padding: clamp(18px, 1.35vw, 22px) 0;
  border-bottom: 1px solid #e2e6f0;
  background: transparent;
}

.overview-copy .project-news-item h3 {
  margin: 0 0 8px;
  color: #30364a;
  font-size: clamp(18px, 1.12vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.overview-copy .project-news-item p {
  margin-bottom: 12px;
}

.overview-copy .project-news-item p:last-child {
  margin-bottom: 0;
}

.camp-toggle-list {
  display: grid;
  gap: 16px;
  margin: 8px 0 30px;
}

.camp-toggle {
  border: 1px solid #d4d7e6;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcff 100%);
  box-shadow: 0 10px 24px rgba(27, 25, 64, 0.07);
  overflow: hidden;
  transition: box-shadow 0.24s ease, border-color 0.24s ease;
}

.camp-toggle:hover {
  border-color: #c7cbdf;
  box-shadow: 0 14px 30px rgba(27, 25, 64, 0.1);
}

.camp-toggle summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 18px;
  color: #2f3650;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.camp-toggle summary::-webkit-details-marker {
  display: none;
}

.camp-toggle summary::marker {
  content: "";
}

.camp-toggle summary::before {
  content: "+";
  width: 24px;
  height: 24px;
  border: 1px solid #c7cade;
  border-radius: 999px;
  color: #2f3377;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.camp-toggle[open] summary::before {
  content: "-";
  transform: rotate(180deg);
  border-color: #b9bfd8;
  background: #f3f5ff;
}

.camp-toggle[open] summary {
  color: #252c46;
  background: linear-gradient(180deg, #f9faff 0%, #f1f4ff 100%);
}

.camp-panel {
  padding: 14px 18px 18px;
  border-top: 1px solid #dfe2ef;
  background: #ffffff;
}

.camp-panel h3 {
  margin: 0 0 12px;
  color: #30364a;
  font-size: clamp(18px, 1.13vw, 22px);
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.01em;
}

.camp-table-wrap {
  margin: 12px 0 18px;
  overflow-x: auto;
  border: 1px solid #d8dbea;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.camp-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: #ffffff;
}

.camp-table caption {
  caption-side: top;
  text-align: center;
  margin: 0;
  padding: 11px 12px;
  color: #2f3650;
  background: #f4f6ff;
  border-bottom: 1px solid #d8dbea;
  font-size: clamp(15px, 0.98vw, 19px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.01em;
}

.camp-table th,
.camp-table td {
  border: 1px solid #d8dbea;
  padding: 10px 12px;
  color: #4a4f61;
  font-size: clamp(14px, 0.89vw, 17px);
  font-weight: 300;
  line-height: 1.42;
  text-align: center;
  vertical-align: middle;
}

.camp-table th {
  background: #f8f9ff;
  color: #30364a;
  font-weight: 500;
}

.camp-table th:first-child,
.camp-table td:first-child {
  text-align: left;
}

.camp-table tbody tr:nth-child(even) {
  background: #fbfbff;
}

.group-schedule-table {
  min-width: 860px;
}

.group-schedule-table th:not(:first-child),
.group-schedule-table td:not(:first-child) {
  white-space: nowrap;
}

.group-schedule-table-competition {
  min-width: 960px;
}

.group-schedule-table-competition th:last-child,
.group-schedule-table-competition td:last-child {
  white-space: normal;
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  font-size: clamp(13px, 0.83vw, 15px);
  line-height: 1.35;
}

.camp-contribution-title {
  margin: 2px 0 8px;
  padding-left: 10px;
  border-left: 3px solid #2f3377;
  color: #30364a;
  font-size: clamp(16px, 1.02vw, 20px);
  font-weight: 500;
  line-height: 1.42;
}

.camp-contribution-list {
  margin: 0 0 18px;
  padding-left: 22px;
}

.camp-contribution-list li {
  margin-bottom: 6px;
  font-size: clamp(15px, 0.96vw, 18px);
  line-height: 1.56;
}

.camp-panel > :last-child {
  margin-bottom: 0;
}

.intensive-schedule-block {
  margin: 12px 0 30px;
  padding: clamp(12px, 1.2vw, 18px);
  border: 1px solid #d8ddef;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 14px 32px rgba(29, 28, 67, 0.08);
}

.intensive-table-wrap {
  margin: 0 0 14px;
  border: 1px solid #cfd5ea;
  border-radius: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  background: #ffffff;
  box-shadow:
    0 10px 22px rgba(27, 25, 64, 0.09),
    inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.intensive-table {
  min-width: 620px;
}

.intensive-table caption {
  padding: 0;
  border-bottom: 1px solid #cad1ea;
  background: linear-gradient(120deg, #2f3377 0%, #404a8a 62%, #5d68a1 100%);
  color: #ffffff;
  text-align: center;
}

.intensive-table-kicker {
  display: block;
  padding: 10px 14px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
  text-align: center;
}

.intensive-table-title {
  display: block;
  padding: 4px 14px 11px;
  font-size: clamp(16px, 1.08vw, 21px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
}

.intensive-table th {
  background: #eef2ff;
  color: #242c4a;
  border-color: #cfd5eb;
  font-weight: 600;
}

.intensive-table td {
  border-color: #d7dcef;
}

.intensive-table th:first-child,
.intensive-table td:first-child {
  text-align: center;
}

.intensive-table td:first-child {
  font-weight: 500;
  color: #2f3757;
}

.intensive-table tbody tr:nth-child(even) {
  background: #f7f9ff;
}

.intensive-table tbody tr:hover {
  background: #eef3ff;
}

.intensive-contribution-title {
  margin: 0 0 6px;
  padding: 0;
  border-left: 0;
  color: #2d3456;
  font-size: clamp(16px, 1.02vw, 20px);
  font-weight: 600;
  line-height: 1.4;
}

.intensive-note {
  margin: 0 0 6px;
  font-size: clamp(15px, 0.96vw, 18px);
  line-height: 1.6;
  color: #4a4f61;
}

.overview-copy p.intensive-note {
  margin: 0 0 6px;
}

.intensive-note-compact {
  margin-bottom: 2px;
  line-height: 1.45;
}

.overview-copy p.intensive-note-compact {
  margin: 0 0 1px;
  line-height: 1.35;
}

.intensive-note:last-child {
  margin-bottom: 0;
}

.intensive-toggle .intensive-schedule-block {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.location-address {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.38em;
  align-items: start;
}

.location-pin {
  line-height: 1.75;
}

.location-text {
  display: block;
}

.research-publications-space {
  min-height: clamp(28px, 5vh, 56px);
}

.research-email-link {
  color: #2f3377;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.14em;
}

.research-email-link-plain {
  text-decoration: none;
}

.research-email-link:hover,
.research-email-link:focus-visible {
  color: #251c67;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 26px;
}

.contact-card {
  background: #fff;
  border: 1px solid #d9ddeb;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 8px 20px rgba(27, 25, 64, 0.06);
}

.contact-lead {
  margin: 0 0 10px;
  font-size: clamp(16px, 1.02vw, 20px);
  line-height: 1.65;
}

.contact-card address {
  margin: 0;
  font-style: normal;
  color: #50566a;
  font-size: clamp(16px, 1.02vw, 20px);
  line-height: 1.68;
}

.contact-email {
  margin: 14px 0 0;
}

.contact-email a {
  color: #2f3377;
  font-weight: 500;
}

.contact-socials {
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.contact-socials a {
  color: #50566a;
  font-size: clamp(14px, 0.94vw, 18px);
}

.contact-socials a:hover {
  color: #2f3377;
}

.contact-form-panel {
  background: #fff;
  border: 1px solid #d9ddeb;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(27, 25, 64, 0.06);
}

.contact-form-panel h2 {
  margin: 0 0 10px;
  color: #353a4d;
  font-size: clamp(24px, 1.7vw, 30px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.contact-mandatory {
  margin: 0 0 14px;
  color: #7a8092;
  font-size: clamp(13px, 0.84vw, 16px);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.contact-field {
  display: block;
}

.contact-field span {
  display: block;
  margin-bottom: 6px;
  color: #4f5567;
  font-size: clamp(14px, 0.89vw, 17px);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #cfd4e3;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  color: #3f4659;
  background: #fff;
}

.contact-field textarea {
  resize: vertical;
  min-height: 136px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #6167a8;
  box-shadow: 0 0 0 3px rgba(47, 51, 119, 0.12);
}

.contact-radio {
  margin: 0;
  border: 0;
  padding: 0;
}

.contact-radio legend {
  margin-bottom: 8px;
  color: #4f5567;
  font-size: clamp(14px, 0.89vw, 17px);
}

.contact-radio label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  color: #4f5567;
  font-size: clamp(14px, 0.89vw, 17px);
}

.contact-attachments {
  border-top: 1px solid #e4e7f0;
  border-bottom: 1px solid #e4e7f0;
  padding: 14px 0;
}

.contact-attach-title {
  margin: 0 0 2px;
  color: #4f5567;
  font-size: clamp(14px, 0.89vw, 17px);
}

.contact-attach-note {
  margin: 0 0 12px;
  color: #7a8092;
  font-size: clamp(12px, 0.79vw, 15px);
}

.contact-submit {
  justify-self: start;
  border: 0;
  border-radius: 10px;
  background: #2f3377;
  color: #fff;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: #262a66;
  transform: translateY(-1px);
}

body.contact-page {
  background: #ffffff;
}

.contact-main {
  padding-top: clamp(8px, 1vw, 14px);
}

.contact-hero {
  width: min(var(--content-max), calc(100% - (var(--content-gutter) * 2)));
  margin: 0 auto;
  overflow: hidden;
  background: #111111;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(20, 20, 27, 0.12);
}

.contact-hero img {
  display: block;
  width: 100%;
  height: clamp(190px, 29vw, 430px);
  object-fit: cover;
}

.contact-content {
  width: min(1120px, calc(100% - (var(--content-gutter) * 2)));
  margin: clamp(56px, 5vw, 88px) auto 0;
  padding-bottom: clamp(90px, 7vw, 130px);
}

.contact-title {
  margin: 0 0 26px;
  color: #2f2f36;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(40px, 2.92vw, 56px);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
}

.contact-copy {
  max-width: 1000px;
  color: #373942;
}

.contact-copy p {
  margin: 0 0 22px;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(16px, 1.02vw, 20px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.68;
}

.contact-copy-intro {
  color: #666872;
}

.contact-copy-address strong,
.contact-copy-training strong {
  font-weight: 600;
  color: #25272f;
}

.contact-copy-email a {
  color: #4f5260;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-copy-email {
  margin-bottom: 30px;
}

.contact-copy-email a:hover,
.contact-copy-email a:focus-visible {
  color: #2f3377;
}

.contact-copy-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.contact-copy-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  line-height: 1;
}

.contact-copy-socials a:hover,
.contact-copy-socials a:focus-visible {
  color: inherit;
}

.social-round {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--footer);
  color: #ffffff;
  font-size: 16px;
}

.contact-copy-socials .social-round i {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.contact-copy-socials .social-round .fa-linkedin-in,
.contact-copy-socials .social-round .fa-facebook-f,
.contact-copy-socials .social-round .fa-tiktok {
  font-size: 17px;
}

.contact-form-wrap {
  margin-top: clamp(74px, 7vw, 118px);
  max-width: 1120px;
}

.contact-form-wrap h2 {
  margin: 0 0 22px;
  color: #33353d;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(24px, 1.7vw, 30px);
  font-weight: 400;
  line-height: 1.25;
}

.contact-form-ref {
  display: grid;
  gap: 16px;
}

.contact-row {
  display: grid;
  gap: 16px;
}

.contact-row-three {
  grid-template-columns: minmax(76px, 0.36fr) 1fr 1fr;
}

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

.contact-field-ref {
  display: block;
}

.contact-field-ref span {
  display: block;
  margin-bottom: 5px;
  color: #4f525c;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(14px, 0.89vw, 17px);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.contact-field-ref input,
.contact-field-ref textarea {
  width: 100%;
  border: 1px solid #d3d4d9;
  border-radius: 2px;
  background: #ffffff;
  color: #30323a;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.3;
  padding: 8px 14px;
}

.contact-field-ref input {
  height: 42px;
}

.contact-field-ref textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-field-ref input::placeholder,
.contact-field-ref textarea::placeholder {
  color: #b8bbc4;
}

.contact-field-ref input:focus,
.contact-field-ref textarea:focus {
  outline: none;
  border-color: #8f92a2;
  box-shadow: 0 0 0 2px rgba(143, 146, 162, 0.2);
}

.contact-radio-ref {
  margin: 0;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 34px;
}

.contact-radio-ref legend,
.contact-radio-ref label {
  color: #4f525c;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(14px, 0.89vw, 17px);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.contact-radio-ref legend {
  margin: 0;
}

.contact-radio-ref label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-radio-ref input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #111111;
}

.contact-upload-title,
.contact-upload-note {
  margin: 0;
  color: #4f525c;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(14px, 0.89vw, 17px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.22;
}

.contact-upload-note {
  margin-bottom: 10px;
  color: #7a8092;
  font-size: clamp(12px, 0.79vw, 15px);
}

.contact-upload-drop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cfd1d7;
  border-radius: 2px;
  background: #ffffff;
  min-height: 108px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-upload-drop:hover {
  border-color: #aeb0ba;
  background: #fafafa;
}

.contact-upload-drop > span {
  color: #4f525c;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(28px, 1.8vw, 36px);
  font-weight: 300;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.contact-upload-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.contact-captcha {
  margin-top: 2px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.contact-captcha .g-recaptcha {
  display: inline-block;
}

.contact-comments-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 24px;
  align-items: end;
}

.contact-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 42px;
  margin-bottom: 10px;
  border: 0;
  border-radius: 2px;
  background: #5d5d62;
  color: #f5f5f5;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 300;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

a.contact-send {
  text-decoration: none;
}

.contact-send-wide {
  width: auto;
  padding-left: 24px;
  padding-right: 24px;
  white-space: nowrap;
}

.contact-send:hover,
.contact-send:focus-visible {
  background: #2f3377;
}

.contact-status {
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0 0 20px;
  border: 1px solid transparent;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.contact-status.is-success {
  background: #edf8f0;
  border-color: #b6e1c2;
  color: #1f5a2f;
}

.contact-status.is-error {
  background: #fff2f2;
  border-color: #f0b8b8;
  color: #892626;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.camp-reg-binding-title {
  margin: 0;
  color: #4f525b;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(25px, 1.74vw, 34px);
  font-weight: 300;
  line-height: 1.36;
  letter-spacing: 0.045em;
  text-align: center;
}

.camp-reg-form-wrap {
  margin-top: 16px;
  max-width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.camp-reg-form-wrap h2 {
  margin: 0 0 28px;
  text-align: left;
  color: #5a5d65;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(30px, 2vw, 42px);
  font-weight: 300;
  letter-spacing: 0.055em;
  line-height: 1.18;
}

.camp-reg-form-wrap .contact-form-ref {
  gap: 30px;
}

.camp-reg-section {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 14px;
}

.camp-reg-section[hidden] {
  display: none !important;
}

.camp-reg-section h3 {
  margin: 0;
  color: #50545f;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(24px, 1.56vw, 31px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.camp-reg-section p {
  margin: 0;
  color: #5c606b;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.58;
  letter-spacing: 0.015em;
}

.camp-reg-options {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.camp-reg-options legend {
  margin-bottom: 4px;
}

.camp-reg-join-options {
  width: 100%;
}

.camp-reg-join-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 12px 28px;
  align-items: start;
}

.camp-reg-join-main,
.camp-reg-join-one-day {
  display: grid;
  gap: 8px;
  align-content: start;
}

.camp-reg-join-one-day input[type="text"] {
  width: 100%;
  max-width: 42ch;
  justify-self: start;
}

.irga-reg-group-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}

.irga-reg-group-grid label {
  align-items: flex-start;
}

.irga-reg-group-grid label:last-child {
  grid-column: 1 / -1;
}

.camp-reg-legend-inline {
  white-space: nowrap;
}

.camp-reg-subheading {
  color: #3e4250;
  font-weight: 400;
}

.camp-reg-muted {
  color: #6d7387;
}

.camp-reg-inline-note-head {
  margin-top: 12px;
  margin-bottom: 2px;
  padding-top: 10px;
  border-top: 1px solid #dde1ea;
}

.camp-reg-inline-note-text {
  margin-top: 0;
  margin-bottom: 2px;
}

.camp-reg-check-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: #5a5f68;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(15px, 0.93vw, 18px);
  font-weight: 300;
  line-height: 1.56;
  letter-spacing: 0.02em;
}

.camp-reg-check-label input[type="checkbox"] {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  accent-color: #838894;
  flex-shrink: 0;
}

.camp-reg-one-day {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.85fr);
  gap: 10px 14px;
  align-items: center;
}

.camp-reg-one-day input[type="text"],
.camp-reg-join-one-day input[type="text"] {
  width: 100%;
  height: 42px;
  border: 1px solid #d3d4d9;
  border-radius: 2px;
  background: #ffffff;
  color: #30323a;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.3;
  padding: 8px 14px;
}

.camp-reg-one-day input[type="text"]:focus,
.camp-reg-join-one-day input[type="text"]:focus {
  outline: none;
  border-color: #8f92a2;
  box-shadow: 0 0 0 2px rgba(143, 146, 162, 0.2);
}

.camp-reg-yesno {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.camp-reg-yesno label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #595d67;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(15px, 0.93vw, 18px);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.camp-reg-yesno input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: #838894;
}

.camp-reg-declaration {
  display: grid;
  gap: 10px;
}

.camp-reg-declaration + .camp-reg-declaration {
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid #e3e6f0;
}

.camp-reg-submit-row {
  display: flex;
  justify-content: flex-end;
}

.camp-reg-submit-row .contact-send {
  width: auto;
  min-width: 200px;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
}

.camp-reg-success-copy p {
  margin-bottom: 14px;
}

.success-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.success-action-row .contact-send {
  width: auto;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
}

.camp-reg-form-wrap .contact-field-ref span,
.camp-reg-form-wrap .camp-reg-options legend,
.camp-reg-form-wrap .camp-reg-options label {
  color: #5d626d;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(15px, 0.93vw, 18px);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.42;
}

.camp-reg-form-wrap .contact-field-ref input,
.camp-reg-form-wrap .contact-field-ref textarea {
  border: 1px solid #d3d4d9;
  border-radius: 2px;
  background: #ffffff;
  color: #30323a;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.camp-reg-form-wrap .contact-field-ref input::placeholder,
.camp-reg-form-wrap .contact-field-ref textarea::placeholder,
.camp-reg-one-day input::placeholder {
  color: #b8bbc4;
}

.camp-reg-form-wrap .contact-field-ref input:focus,
.camp-reg-form-wrap .contact-field-ref textarea:focus {
  border-color: #8f92a2;
  box-shadow: 0 0 0 2px rgba(143, 146, 162, 0.2);
}

.camp-reg-form-wrap .contact-field-ref input[type="date"] {
  padding-right: 42px;
  font-variant-numeric: tabular-nums;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555b67' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4.5' width='18' height='16.5' rx='2.5'/%3E%3Cpath d='M8 2.8v3.4M16 2.8v3.4M3 9.2h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
}

.camp-reg-form-wrap .contact-field-ref input[type="date"]::-webkit-calendar-picker-indicator {
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0;
}

.camp-reg-form-wrap .contact-field-ref input[type="date"]::-webkit-clear-button,
.camp-reg-form-wrap .contact-field-ref input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

.camp-reg-form-wrap .contact-field-ref input[type="date"]::-webkit-datetime-edit {
  color: #30323a;
}

.camp-reg-form-wrap .contact-field-ref input[type="date"]:required:invalid::-webkit-datetime-edit {
  color: #b8bbc4;
}

.camp-reg-form-wrap .contact-radio-ref input[type="radio"],
.camp-reg-form-wrap .contact-radio-ref input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #838894;
}

@media (max-width: 900px) {
  .camp-reg-one-day {
    grid-template-columns: 1fr;
  }

  .camp-reg-join-grid {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }

  .irga-reg-group-grid {
    grid-template-columns: 1fr;
  }

  .camp-reg-submit-row {
    justify-content: flex-start;
  }
}

.site-footer {
  background: linear-gradient(
    180deg,
    var(--footer-top) 0%,
    var(--footer) 36%,
    var(--footer) 100%
  );
  color: #fff;
  padding: clamp(56px, 3.96vw, 76px) clamp(18px, 2.71vw, 52px)
    clamp(14px, 0.94vw, 18px);
  width: 100%;
  font-family: "Albert Sans", "Montserrat", "Avenir Next", "Helvetica Neue",
    Arial, sans-serif;
  position: relative;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.18fr 1.6fr 1.22fr 1.06fr;
  grid-template-areas:
    "academy programs activities contact"
    "brand brand legal socials";
  column-gap: clamp(30px, 3.23vw, 62px);
  row-gap: 12px;
  align-items: start;
}

.footer-block {
  min-width: 0;
}

.footer-academy {
  grid-area: academy;
}

.footer-programs {
  grid-area: programs;
}

.footer-activities {
  grid-area: activities;
}

.footer-contact {
  grid-area: contact;
}

.footer-legal {
  grid-area: legal;
  margin-top: 0;
  align-self: end;
  margin-bottom: clamp(40px, 3vw, 58px);
}

.footer-socials {
  grid-area: socials;
  margin-top: 0;
  border-left: 1px solid rgba(228, 229, 255, 0.52);
  padding-left: 18px;
}

.footer-brand {
  grid-area: brand;
  padding-top: 24px;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 200;
  letter-spacing: 0.014em;
  line-height: 1.2;
}

.footer-links {
  border-left: 1px solid rgba(228, 229, 255, 0.52);
  padding-left: 18px;
}

.footer-academy .footer-links,
.footer-programs .footer-links,
.footer-activities .footer-links,
.footer-contact .footer-links {
  min-height: 96px;
}

.footer-activities .footer-links {
  min-height: 96px;
  position: relative;
  border-left: 0;
}

.footer-activities .footer-links::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: calc(100% + clamp(170px, 11vw, 220px));
  background: rgba(228, 229, 255, 0.58);
}

.footer-links a {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  letter-spacing: 0.028em;
  font-weight: 200;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 0.2em;
}

.footer-social-links .social-link:hover,
.footer-social-links .social-link:focus-visible {
  text-decoration: none;
}

.social-text {
  text-decoration: none;
}

.footer-social-links .social-link:hover .social-text,
.footer-social-links .social-link:focus-visible .social-text {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 0.2em;
}

.footer-social-links {
  padding-top: 4px;
  margin-bottom: 20px;
  margin-left: -9px;
  border-left: 0;
  padding-left: 0;
}

.footer-social-links .social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1px;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.018em;
  text-transform: none;
}

.footer-social-links .social-link:last-child {
  margin-bottom: 0;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  flex: 0 0 42px;
}

.footer-logo {
  width: min(640px, 100%);
  max-width: 100%;
  display: block;
  margin-left: -102px;
  margin-top: 32px;
}

.footer-visitors {
  border-left: 0;
  padding-left: 0;
  padding-top: 0;
}

.footer-visitors p {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.38;
}

.copyright {
  margin: -20px 0 0;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
}

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

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

@media (prefers-reduced-motion: no-preference) {
  .hero-wrap {
    animation: heroReveal 0.62s ease both;
  }

  .timeline-item {
    opacity: 0;
    animation: itemReveal 0.52s ease both;
  }

  .timeline-item:nth-child(1) {
    animation-delay: 0.08s;
  }

  .timeline-item:nth-child(2) {
    animation-delay: 0.16s;
  }

  .timeline-item:nth-child(3) {
    animation-delay: 0.24s;
  }

  .timeline-item:nth-child(4) {
    animation-delay: 0.32s;
  }
}

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

@media (max-width: 1300px) {
  :root {
    --content-gutter: clamp(16px, 3.7vw, 96px);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 24px;
    height: 70px;
    gap: 18px;
    z-index: 1200;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .logo img {
    width: 96px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 32px;
    height: 28px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1210;
  }

  .menu-toggle span {
    width: 22px;
    height: 1.8px;
    margin: 0;
    border-radius: 999px;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

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

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

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

  .main-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    height: 100dvh;
    padding: calc(88px + env(safe-area-inset-top))
      clamp(20px, 6vw, 34px)
      calc(24px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 64%, #eff3ff 100%);
    border-bottom: 0;
    border-top: 1px solid #e5e8f2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    transform: translate3d(0, -102%, 0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    z-index: 1190;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    will-change: transform, opacity;
  }

  .main-nav.open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 24px 48px rgba(24, 28, 64, 0.16);
  }

  .main-nav > .nav-link,
  .nav-trigger {
    width: 100%;
    font-size: clamp(18px, 5vw, 22px);
    display: block;
    height: auto;
    line-height: 1.26;
    padding: 13px 0;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #e3e6f3;
    color: #2d3040;
    transform: none;
  }

  .nav-dropdown {
    width: 100%;
  }

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

  .nav-trigger {
    width: 100%;
    text-align: left;
    padding: 13px 28px 13px 0;
    border: 0;
    color: #2d3040;
  }

  .nav-trigger::after {
    right: 6px;
    top: 45%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #6c6d75;
    border-bottom: 1.5px solid #6c6d75;
  }

  .main-nav > .nav-link.nav-lang-switch {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    padding: 10px 14px;
    margin-top: 16px;
    border: 1px solid #d5daec;
    border-radius: 999px;
    letter-spacing: 0.08em;
    color: #2f3377;
    background: #fff;
    border-bottom: 0;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    border-left: 2px solid #d7dcef;
    margin-left: 6px;
    padding: 0 0 0 14px;
    max-height: 0;
    opacity: 1;
    pointer-events: auto;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    transition: max-height 0.25s ease, padding 0.25s ease, margin 0.25s ease;
  }

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

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    max-height: 0;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 360px;
    padding: 6px 0 8px 14px;
  }

  .dropdown-menu a {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    text-transform: none;
    letter-spacing: 0.05em;
    color: #596076;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    background: transparent;
    color: #251c67;
    transform: none;
  }

  .main-nav > .nav-link:hover,
  .nav-trigger:hover,
  .nav-dropdown.open .nav-trigger {
    transform: none;
  }

  .hero-wrap,
  .news-section {
    width: calc(100% - 32px);
  }

  .hero-wrap {
    border-radius: var(--radius-md);
  }

  .hero-slogan {
    left: 18px;
    right: 18px;
    bottom: 20px;
    max-width: none;
  }

  .hero-slogan-main {
    font-size: clamp(18px, 5.1vw, 28px);
  }

  .news-section {
    margin-top: 44px;
    min-height: 0;
    padding-bottom: 60px;
  }

  .news-top-row {
    margin-bottom: 36px;
    gap: 8px;
  }

  .news-top-row h1 {
    font-size: 40px;
  }

  .news-top-row h1.one-line-title {
    white-space: normal;
  }

  .crumb {
    font-size: 12px;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 14px;
    top: 10px;
    bottom: 16px;
  }

  .timeline-item {
    margin-bottom: 24px;
    padding: 0 0 18px 56px;
  }

  .timeline-item .dot {
    left: 14px;
    top: 12px;
    width: 10px;
    height: 10px;
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(47, 51, 119, 0.08);
  }

  .timeline-title {
    font-size: 19px;
    line-height: 1.35;
  }

  .timeline-meta {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .timeline-desc {
    font-size: 14px;
    margin-top: 9px;
  }

  .overview-copy p {
    font-size: 15px;
    line-height: 1.72;
    margin-bottom: 16px;
  }

  .overview-copy h2 {
    font-size: 22px;
    margin: 22px 0 10px;
  }

  .overview-copy li {
    font-size: 15px;
    line-height: 1.66;
    margin-bottom: 7px;
  }

  .camp-toggle summary {
    padding: 13px 14px;
    font-size: 15px;
    gap: 10px;
  }

  .camp-panel {
    padding: 12px 14px 14px;
  }

  .camp-panel h3 {
    font-size: 17px;
  }

  .camp-table {
    min-width: 560px;
  }

  .camp-table caption {
    font-size: 14px;
    padding: 10px 10px;
  }

  .camp-table th,
  .camp-table td {
    font-size: 13px;
    padding: 8px 9px;
  }

  .camp-contribution-title {
    font-size: 15px;
  }

  .camp-contribution-list li {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .intensive-schedule-block {
    margin: 10px 0 24px;
    padding: 12px;
    border-radius: 14px;
  }

  .intensive-table {
    min-width: 560px;
  }

  .intensive-table-kicker {
    font-size: 10px;
    padding: 9px 11px 0;
  }

  .intensive-table-title {
    font-size: 15px;
    padding: 3px 11px 9px;
  }

  .intensive-note {
    font-size: 14px;
  }

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

  .contact-form-panel,
  .contact-card {
    padding: 18px;
  }

  .contact-hero,
  .contact-content {
    width: calc(100% - 32px);
  }

  .contact-hero {
    border-radius: var(--radius-md);
  }

  .contact-title {
    font-size: clamp(38px, 7vw, 52px);
    margin-bottom: 18px;
  }

  .contact-copy p,
  .contact-field-ref span,
  .contact-radio-ref legend,
  .contact-radio-ref label,
  .contact-upload-title,
  .contact-upload-note {
    font-size: clamp(14px, 1.7vw, 17px);
  }

  .contact-form-wrap h2 {
    font-size: clamp(22px, 3.2vw, 28px);
    margin-bottom: 18px;
  }

  .contact-field-ref input,
  .contact-field-ref textarea {
    font-size: 14px;
  }

  .contact-upload-drop > span {
    font-size: clamp(20px, 3.8vw, 28px);
  }

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

  .contact-send {
    justify-self: start;
  }

  .site-footer {
    padding: 42px 20px 16px;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "academy programs"
      "activities contact"
      "brand brand"
      "legal socials";
    column-gap: 20px;
    row-gap: 20px;
  }

  .footer-title {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .footer-legal {
    margin-top: 0;
    align-self: start;
    margin-bottom: 0;
  }

  .footer-links {
    padding-left: 12px;
  }

  .footer-links a {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .footer-activities .footer-links {
    min-height: 0;
    border-left: 1px solid rgba(228, 229, 255, 0.58);
  }

  .footer-activities .footer-links::before {
    display: none;
  }

  .footer-logo {
    width: min(360px, 100%);
    margin-left: -48px;
    margin-top: 32px;
  }

  .footer-social-links {
    margin-bottom: 6px;
    margin-left: -6px;
  }

  .footer-social-links .social-link {
    gap: 8px;
    font-size: 12px;
    margin-bottom: 1px;
  }

  .social-icon {
    width: 27px;
    height: 27px;
    font-size: 18px;
    flex-basis: 27px;
  }

  .footer-visitors {
    padding-left: 12px;
  }

  .footer-visitors p {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .copyright {
    font-size: 10px;
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .contact-row-three,
  .contact-row-two {
    grid-template-columns: 1fr;
  }

  .contact-radio-ref {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: 100%;
  }

  .hero-slogan {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-slogan-main {
    font-size: clamp(16px, 5.4vw, 22px);
    line-height: 1.15;
  }

  .news-top-row {
    align-items: flex-start;
    gap: 7px;
  }

  .news-top-row h1 {
    font-size: 33px;
  }

  .crumb {
    font-size: 11px;
  }

  .timeline {
    padding-left: 0;
    max-width: 100%;
  }

  .timeline::before {
    left: 11px;
    top: 8px;
    bottom: 12px;
  }

  .timeline-item {
    margin-bottom: 17px;
    padding: 0 0 14px 44px;
  }

  .timeline-item .dot {
    left: 11px;
    top: 11px;
    width: 9px;
    height: 9px;
    border-width: 2px;
    box-shadow: 0 0 0 2.5px rgba(47, 51, 119, 0.08);
  }

  .timeline-title {
    font-size: 16px;
  }

  .timeline-meta {
    font-size: 9px;
    margin-bottom: 6px;
  }

  .timeline-desc {
    font-size: 12px;
    margin-top: 8px;
  }

  .overview-copy p {
    font-size: 13px;
    line-height: 1.68;
    margin-bottom: 14px;
  }

  .overview-copy h2 {
    font-size: 18px;
    margin: 20px 0 9px;
  }

  .overview-copy ul {
    padding-left: 18px;
    margin-bottom: 14px;
  }

  .overview-copy li {
    font-size: 13px;
    line-height: 1.62;
    margin-bottom: 6px;
  }

  .camp-toggle-list {
    gap: 12px;
    margin-bottom: 20px;
  }

  .camp-toggle {
    border-radius: 12px;
  }

  .camp-toggle summary {
    padding: 12px 12px;
    font-size: 14px;
    gap: 8px;
  }

  .camp-toggle summary::before {
    width: 20px;
    height: 20px;
    font-size: 13px;
  }

  .camp-panel {
    padding: 10px 12px 12px;
  }

  .camp-panel h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .camp-table-wrap {
    margin: 10px 0 14px;
    border-radius: 10px;
  }

  .camp-table {
    min-width: 520px;
  }

  .camp-table caption {
    font-size: 13px;
    padding: 8px 9px;
    text-align: left;
  }

  .camp-table th,
  .camp-table td {
    font-size: 12px;
    padding: 7px 8px;
  }

  .camp-contribution-title {
    font-size: 14px;
    padding-left: 8px;
  }

  .camp-contribution-list {
    padding-left: 18px;
  }

  .camp-contribution-list li {
    font-size: 12px;
    line-height: 1.5;
  }

  .intensive-schedule-block {
    margin: 8px 0 18px;
    padding: 10px;
    border-radius: 12px;
  }

  .intensive-table-wrap {
    border-radius: 10px;
  }

  .intensive-table {
    min-width: 500px;
  }

  .intensive-table-kicker {
    letter-spacing: 0.12em;
  }

  .intensive-table-title {
    font-size: 14px;
  }

  .intensive-contribution-title {
    font-size: 14px;
  }

  .intensive-note {
    font-size: 13px;
    line-height: 1.55;
  }

  .contact-card,
  .contact-form-panel {
    border-radius: 12px;
    padding: 14px;
  }

  .contact-lead,
  .contact-card address {
    font-size: 13px;
    line-height: 1.62;
  }

  .contact-socials {
    gap: 8px 10px;
  }

  .contact-socials a,
  .contact-field span,
  .contact-radio legend,
  .contact-radio label {
    font-size: 13px;
  }

  .contact-attach-note {
    font-size: 11px;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 14px;
  }

  .contact-submit {
    width: 100%;
    justify-self: stretch;
  }

  .contact-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .contact-copy p,
  .contact-field-ref span,
  .contact-radio-ref legend,
  .contact-radio-ref label,
  .contact-upload-title,
  .contact-upload-note {
    font-size: 13px;
    line-height: 1.38;
  }

  .contact-form-wrap {
    margin-top: 52px;
  }

  .contact-form-wrap h2 {
    font-size: clamp(20px, 7vw, 26px);
  }

  .contact-upload-drop {
    min-height: 94px;
  }

  .contact-upload-drop > span {
    font-size: clamp(18px, 6vw, 24px);
    gap: 10px;
  }

  .contact-captcha {
    overflow: visible;
    min-height: 72px;
  }

  .contact-captcha .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left top;
  }

  .contact-send {
    width: 100%;
    margin-bottom: 0;
  }

  .site-footer {
    padding: 30px 14px 12px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "academy"
      "programs"
      "activities"
      "contact"
      "socials"
      "brand"
      "legal";
    row-gap: 16px;
  }

  .footer-title {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .footer-legal {
    margin-top: 0;
    align-self: start;
    margin-bottom: 0;
  }

  .footer-links {
    padding-left: 10px;
  }

  .footer-links a {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .footer-activities .footer-links {
    min-height: 0;
    border-left: 1px solid rgba(228, 229, 255, 0.58);
  }

  .footer-activities .footer-links::before {
    display: none;
  }

  .footer-social-links {
    margin-bottom: 3px;
    margin-left: -5px;
  }

  .footer-social-links .social-link {
    font-size: 11px;
    margin-bottom: 1px;
  }

  .social-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
    flex-basis: 24px;
  }

  .footer-visitors {
    padding-left: 10px;
  }

  .footer-visitors p {
    font-size: 11px;
    margin-bottom: 3px;
  }

  .footer-brand {
    padding-top: 6px;
  }

  .footer-logo {
    width: min(290px, 100%);
    margin-left: -34px;
    margin-top: 18px;
  }

  .copyright {
    margin-top: 10px;
    font-size: 10px;
  }
}
