:root {
  --ink: #18213a;
  --muted: #667085;
  --line: #e8ecf3;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --accent: #e73b4c;
  --accent-strong: #c71f36;
  --blue: #1d5f9d;
  --navy: #14264a;
  --page-bg:
    radial-gradient(circle at 82% 22%, rgba(244, 185, 66, 0.16), transparent 28%),
    radial-gradient(circle at 12% 76%, rgba(29, 95, 157, 0.11), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 46%, #fff8ec 100%);
  --shadow: 0 24px 70px rgba(22, 34, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scrollbar-color: var(--navy) #f7fbff;
  scrollbar-width: thin;
}

body {
  margin: 0;
  background: var(--page-bg);
  background-attachment: fixed, fixed, fixed;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: var(--page-bg);
}

::-webkit-scrollbar-thumb {
  border: 4px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: #1c3567;
  background-clip: padding-box;
}

::-webkit-scrollbar-button:single-button {
  height: 14px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 7px 7px;
}

::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 2 9 7H1z' fill='%2314264a'/%3E%3C/svg%3E");
}

::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8 1 3h8z' fill='%2314264a'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 112px;
  padding: 16px 0;
  background: transparent;
  transition: height 220ms ease, padding 220ms ease, background 220ms ease, box-shadow 220ms ease, border-radius 220ms ease;
}

.sticky-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: auto;
  width: 100vw;
  height: 76px;
  background: var(--page-bg);
  background-attachment: fixed, fixed, fixed;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.sticky-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(1180px, calc(100% - 50px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  max-width: min(100%, 70vw);
  height: auto;
  transition: max-height 220ms ease, transform 220ms ease;
}

.logo-brand {
  --brand-signet-width: 68px;
  --brand-signet-height: 64px;
  --brand-font-size: clamp(1.16rem, 1.55vw, 1.42rem);
  --brand-line-height: 0.92;
  gap: 12px;
  color: #05094b;
}

.brand-signet {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: var(--brand-signet-width);
  height: var(--brand-signet-height);
  overflow: hidden;
}

.brand-signet img {
  width: 100%;
  max-width: none;
  max-height: none;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: var(--brand-signet-height);
  color: #05094b;
  font-size: var(--brand-font-size);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: var(--brand-line-height);
  white-space: nowrap;
}

.sticky-brand {
  --brand-signet-width: 54px;
  --brand-signet-height: 52px;
  --brand-font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.header-right {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-end;
  min-width: 0;
}

.menu-link:hover,
.dropdown-menu a:hover,
.language-list a:hover,
.contact-link:hover {
  color: var(--accent-strong);
}

.main-menu {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.8vw, 34px);
  transition: gap 220ms ease;
}

.sticky-header .main-menu {
  gap: clamp(16px, 2.2vw, 26px);
}

.menu-item {
  position: relative;
}

.menu-dropdown::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
  content: "";
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(0.92rem, 1.18vw, 1.03rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
  transition: font-size 220ms ease, min-height 220ms ease, padding 220ms ease, background 180ms ease, color 180ms ease;
}

.sticky-header .menu-link {
  font-size: 0.88rem;
}

.contact-link {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.sticky-header .contact-link {
  min-height: 36px;
  padding: 0 14px;
}

.contact-link:hover {
  background: #1c3567;
  color: #fff;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.menu-dropdown.is-open .chevron,
.menu-dropdown:focus-within .chevron,
.menu-dropdown:hover .chevron {
  transform: translateY(2px) rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 230px;
  padding: 12px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.dropdown-menu a {
  padding: 11px 16px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero {
  position: sticky;
  top: 112px;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  height: calc(100svh - 112px);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(18px, 4vh, 42px) 0 76px;
  background: transparent;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 45%);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
.hero-title {
  max-width: 660px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

h1 span,
.hero-title span {
  display: block;
}

.lead {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.32vw, 1.08rem);
  line-height: 1.68;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
}

.slide-cta:hover {
  background: #1c3567;
  color: #fff;
}

.slide-cta span {
  display: inline-block;
  animation: arrow-nudge 1100ms ease-in-out infinite;
}

@keyframes arrow-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

.language-list {
  display: flex;
  position: absolute;
  bottom: clamp(18px, 3vh, 28px);
  left: 50%;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  width: min(100%, calc(100vw - 40px));
  margin-top: 0;
  overflow: hidden;
  justify-content: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.language-list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.label-short {
  display: none;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  transform: translateY(-34px);
}

.hero-visual img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 452px);
  max-height: min(564px, calc(100svh - 156px));
  object-fit: contain;
}

.hero-person {
  object-fit: contain;
}

.hero-person-primary {
  transform: scale(0.8);
  transform-origin: center bottom;
}

.flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 21px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 58, 0.14);
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(24, 33, 58, 0.08);
}

.flag-gb {
  background:
    linear-gradient(33deg, transparent 39%, #fff 40%, #fff 45%, #c8102e 46%, #c8102e 52%, #fff 53%, #fff 58%, transparent 59%),
    linear-gradient(147deg, transparent 39%, #fff 40%, #fff 45%, #c8102e 46%, #c8102e 52%, #fff 53%, #fff 58%, transparent 59%),
    linear-gradient(90deg, transparent 42%, #fff 43%, #fff 57%, transparent 58%),
    linear-gradient(0deg, transparent 35%, #fff 36%, #fff 64%, transparent 65%),
    linear-gradient(90deg, transparent 46%, #c8102e 47%, #c8102e 53%, transparent 54%),
    linear-gradient(0deg, transparent 42%, #c8102e 43%, #c8102e 57%, transparent 58%),
    #012169;
}

.flag-es {
  background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.flag-fr {
  background: linear-gradient(90deg, #002654 0 33.33%, #fff 33.33% 66.66%, #ce1126 66.66% 100%);
}

.flag-it {
  background: linear-gradient(90deg, #009246 0 33.33%, #fff 33.33% 66.66%, #ce2b37 66.66% 100%);
}

.flag-de {
  background: linear-gradient(#000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.trust-section {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: 0;
  width: calc(100% - 50px);
  margin-right: auto;
  margin-left: auto;
  padding: 96px 20px 92px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(9, 19, 38, 0.82), rgba(9, 19, 38, 0.9)),
    linear-gradient(135deg, #0f1f3d 0%, #14264a 48%, #0b1930 100%);
  color: #fff;
  box-shadow: 0 -22px 60px rgba(20, 38, 74, 0.14);
}

.trust-map {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.trust-map img {
  display: block;
  position: sticky;
  top: 0;
  width: 100%;
  height: auto;
  min-height: 0;
  opacity: 0.3;
  object-fit: contain;
  object-position: center top;
}

.trust-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(7, 16, 32, 0.82) 0%, rgba(7, 16, 32, 0.58) 52%, rgba(7, 16, 32, 0.76) 100%);
  opacity: 0.9;
}

.trust-parallax {
  position: absolute;
  z-index: 1;
  inset: -18% 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.07), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(29, 95, 157, 0.1), transparent 28%);
  opacity: 1;
  transform: translate3d(0, var(--trust-parallax, 0px), 0);
  transition: transform 120ms linear;
}

.trust-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.trust-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.section-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -12px;
  color: #f4c867;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-heading h2 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.trust-heading h2 span {
  display: block;
}

.trust-heading p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.trust-grid article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
  backdrop-filter: none;
}

.trust-grid span {
  color: #f4c867;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.trust-grid h3,
.accreditations-copy h3 {
  margin: 18px 0 0;
  font-size: 1.18rem;
  line-height: 1.16;
  font-weight: 700;
}

.trust-grid p,
.accreditations-copy p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.96rem;
  line-height: 1.72;
}

.seo-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 6vw, 84px);
  row-gap: 30px;
  position: relative;
  margin-top: 34px;
}

.seo-copy::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.seo-copy article {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.seo-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.22;
  font-weight: 700;
}

.seo-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  line-height: 1.72;
}

.accreditations {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
}

.accreditations-copy h3 {
  margin-top: 0;
}

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

.accreditation-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.accreditation-logos img {
  display: block;
  max-width: 100%;
  max-height: 104px;
  object-fit: contain;
}

.teachers-section {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 116px 20px 96px;
  background: var(--page-bg);
  background-attachment: fixed, fixed, fixed;
  color: var(--ink);
}

.teachers-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  column-gap: clamp(44px, 6vw, 88px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.teachers-left {
  display: grid;
  gap: clamp(18px, 2.2vw, 26px);
}

.light-kicker {
  color: var(--blue);
}

.teachers-heading .section-kicker {
  margin: 0 0 20px;
}

.teachers-heading h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

.teachers-heading h2 span {
  display: block;
}

.teachers-text {
  display: grid;
  gap: 18px;
  margin-top: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.74;
}

.teachers-text p {
  margin: 0;
}

.certificate-slider {
  display: grid;
  align-self: center;
  justify-items: center;
  gap: 18px;
}

.certificate-frame {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 717 / 1111;
  overflow: hidden;
  border: 1px solid rgba(20, 38, 74, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 54px rgba(20, 38, 74, 0.14);
}

.certificate-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.certificate-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.certificate-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.certificate-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.certificate-nav,
.certificate-dots button,
.certificate-modal-close,
.certificate-modal-backdrop {
  border: 0;
  cursor: pointer;
}

.certificate-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

.certificate-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.certificate-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(20, 38, 74, 0.22);
}

.certificate-dots button.is-active {
  width: 26px;
  background: var(--navy);
}

.certificate-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.certificate-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.certificate-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 32, 0.76);
}

.certificate-modal-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92vw, 760px);
  max-height: 92svh;
}

.certificate-modal-content img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 92svh;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.certificate-modal-close {
  position: fixed;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
}

.didactics-section {
  position: relative;
  z-index: 2;
  padding: 96px 20px 72px;
  background: var(--page-bg);
  background-attachment: fixed, fixed, fixed;
  color: var(--ink);
}

.didactics-inner {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  column-gap: clamp(44px, 6vw, 86px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.didactics-copy {
  order: 2;
}

.didactics-copy .section-kicker {
  margin: 0 0 20px;
}

.didactics-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

.didactics-copy h2 span {
  display: block;
}

.didactics-text {
  display: grid;
  gap: 18px;
  margin-top: clamp(18px, 2.2vw, 26px);
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.74;
}

.didactics-text p {
  margin: 0;
}

.facebook-panel {
  order: 1;
  display: flex;
  align-self: start;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-width: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.facebook-panel iframe {
  display: block;
  width: 100%;
  height: 680px;
  min-height: 680px;
  flex: 0 0 auto;
  background: #fff;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 22px 20px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.site-footer p:last-child a {
  color: #fff;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-footer p:last-child a:hover {
  color: #f4b942;
}

.footer-heart {
  color: #f4b942;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #f4b942;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    gap: 20px;
  }

  .header-right {
    align-items: flex-end;
  }

  .main-menu {
    gap: 16px 22px;
  }

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 38%);
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual img {
    max-width: min(100%, 330px);
    max-height: calc(100svh - 230px);
  }

  .trust-heading,
  .accreditations,
  .teachers-inner,
  .didactics-inner {
    grid-template-columns: 1fr;
  }

  .facebook-panel {
    position: static;
    order: 2;
  }

  .facebook-panel iframe {
    height: 620px;
    min-height: 620px;
  }

  .didactics-copy {
    order: 1;
  }

  .certificate-slider {
    grid-column: 1;
    grid-row: auto;
    align-self: start;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .seo-copy {
    grid-template-columns: 1fr;
  }

  .seo-copy::before {
    display: none;
  }

  .trust-grid article {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 28px);
    height: 160px;
    flex-direction: column;
    align-items: stretch;
    padding-top: 16px;
  }

  .sticky-header {
    left: 0;
    right: auto;
    width: 100vw;
    height: 116px;
  }

  .sticky-header-inner {
    width: calc(100% - 50px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .logo-brand {
    --brand-signet-width: 58px;
    --brand-signet-height: 54px;
    --brand-font-size: 1.02rem;
  }

  .sticky-brand {
    --brand-signet-width: 44px;
    --brand-signet-height: 42px;
    --brand-font-size: 0.92rem;
  }

  .brand {
    justify-content: center;
  }

  .header-right,
  .main-menu {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .main-menu {
    gap: 16px 18px;
  }

  .sticky-header .main-menu {
    gap: 10px 14px;
  }

  .menu-link {
    font-size: 0.88rem;
  }

  .sticky-header .menu-link {
    font-size: 0.78rem;
  }

  .contact-link {
    min-height: 38px;
    padding: 0 14px;
  }

  .sticky-header .contact-link {
    min-height: 32px;
    padding: 0 12px;
  }

  .dropdown-menu {
    left: 50%;
    min-width: 220px;
    transform: translate(-50%, 8px);
  }

  .menu-item {
    position: static;
  }

  .menu-dropdown.is-open .dropdown-menu,
  .menu-dropdown:focus-within .dropdown-menu,
  .menu-dropdown:hover .dropdown-menu {
    transform: translate(-50%, 0);
  }

  .hero {
    grid-template-columns: 1fr;
    top: 160px;
    width: calc(100% - 28px);
    gap: 16px;
    height: calc(100svh - 160px);
    min-height: 0;
    padding: 20px 0 14px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  h1 {
    font-size: clamp(1.72rem, 7.7vw, 2.35rem);
  }

  .lead {
    margin-top: 16px;
    font-size: 0.96rem;
  }

  .slide-cta {
    min-height: 38px;
    margin-top: 14px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .language-list {
    bottom: 14px;
    left: 50%;
    gap: clamp(9px, 3vw, 14px);
    width: 100%;
    justify-content: center;
    margin-top: 0;
  }

  .language-list a {
    gap: 5px;
    font-size: 0.76rem;
  }

  .label-full {
    display: none;
  }

  .label-short {
    display: inline;
  }

  .flag {
    width: 24px;
    height: 17px;
  }

  .trust-section {
    margin-top: 0;
    width: calc(100% - 50px);
    padding: 72px 14px 64px;
    border-radius: 24px;
  }

  .trust-heading {
    gap: 18px;
  }

  .section-kicker {
    margin-bottom: 0;
  }

  .trust-heading h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .trust-grid {
    margin-top: 34px;
  }

  .trust-grid article,
  .accreditations {
    padding: 20px;
  }

  .accreditation-logos {
    grid-template-columns: 1fr;
  }

  .accreditation-logos a {
    min-height: 104px;
  }

  .teachers-section {
    margin-top: -24px;
    padding: 82px 14px 68px;
  }

  .teachers-heading h2 {
    font-size: clamp(1.72rem, 7.7vw, 2.35rem);
  }

  .certificate-frame {
    width: min(100%, 300px);
  }

  .didactics-section {
    padding: 72px 14px 54px;
  }

  .didactics-copy h2 {
    font-size: clamp(1.72rem, 7.7vw, 2.35rem);
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p:last-child {
    justify-self: center;
  }
}

@media (max-width: 430px) {
  .main-menu {
    gap: 14px;
  }

  .hero-visual img {
    max-width: min(62vw, 205px);
    max-height: 255px;
  }
}
