:root {
  --ink: #17191f;
  --ink-2: #22252d;
  --paper: #ffffff;
  --soft: #f3f3f5;
  --line: #dedfe3;
  --muted: #697181;
  --muted-dark: #a8abb4;
  --red: #e52b20;
  --red-dark: #bd1e16;
  --shell: 1180px;
  --radius: 3px;
  --shadow: 0 24px 60px rgba(16, 19, 26, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--red);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 110;
  color: var(--paper);
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  gap: 28px;
}

.announcement a {
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand__mark {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  background: var(--red);
}

.brand__text {
  overflow: hidden;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 27px 0 24px;
  color: #dedfe3;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle__icon::before { top: -7px; }
.menu-toggle__icon::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(229, 43, 32, 0.35);
  outline-offset: 3px;
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.button--red {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.button--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button--ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.42);
}

.button--ghost:hover {
  border-color: var(--paper);
}

.button--outline {
  color: var(--ink);
  border-color: #c9cbd1;
}

.button--outline:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  top: -240px;
  right: -100px;
  width: 580px;
  height: 580px;
  border: 94px solid rgba(229, 43, 32, 0.14);
  content: "";
  transform: rotate(11deg);
}

.hero::after {
  position: absolute;
  right: -72px;
  bottom: 0;
  width: 210px;
  height: 210px;
  border-top: 56px solid var(--red);
  border-left: 56px solid var(--red);
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  gap: 92px;
  align-items: center;
  min-height: 640px;
  padding-top: 86px;
  padding-bottom: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  background: var(--red);
  content: "";
}

.eyebrow--light {
  color: var(--muted-dark);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5.4vw, 77px);
  font-weight: 750;
}

h1 span {
  display: block;
  color: var(--red);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 750;
}

h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.hero__intro {
  max-width: 680px;
  margin-bottom: 34px;
  color: #b8bbc3;
  font-size: 19px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  margin: 18px 0 0;
  color: #9296a1;
  font-size: 13px;
}

.level-card {
  position: relative;
  padding: 28px;
  background: #20232a;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
}

.level-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 48px;
  height: 5px;
  background: var(--red);
  content: "";
}

.level-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 6px;
}

.level-card__top .eyebrow {
  margin-bottom: 20px;
}

.level-card__top > span {
  color: #7e828d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.level-step {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 17px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.level-step__code {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #aeb1ba;
  background: #292c34;
  font-size: 17px;
  font-weight: 800;
}

.level-step--active .level-step__code {
  color: var(--paper);
  background: var(--red);
}

.level-step strong {
  display: block;
  font-size: 15px;
}

.level-step p {
  margin: 3px 0 0;
  color: #9599a4;
  font-size: 12px;
  line-height: 1.45;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.text-link::after,
.card-link::after {
  font-size: 18px;
  content: "↗";
  transition: transform 160ms ease;
}

.text-link:hover::after,
.card-link:hover::after {
  transform: translate(2px, -2px);
}

.text-link--light {
  margin-top: 16px;
  color: var(--paper);
}

.hero__metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 26px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero__metrics > div {
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__metrics > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__metrics strong,
.hero__metrics span {
  display: block;
}

.hero__metrics strong {
  margin-bottom: 3px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.hero__metrics span {
  color: #9296a0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 118px 0;
}

.section--white { background: var(--paper); }
.section--soft { background: var(--soft); }
.section--dark { color: var(--paper); background: var(--ink); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.section-heading .eyebrow {
  margin-bottom: 0;
}

.section-heading .eyebrow {
  margin-bottom: 26px;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--compact {
  grid-template-columns: 1fr;
  margin-bottom: 50px;
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.programme-card {
  position: relative;
  min-height: 390px;
  padding: 34px 27px 30px;
  border-left: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.programme-card:first-child {
  border-left: 0;
}

.programme-card:hover {
  z-index: 2;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-8px);
}

.programme-card:hover .card-number,
.programme-card:hover p {
  color: #9da1ac;
}

.programme-card:hover .card-link {
  color: var(--paper);
}

.programme-card:hover .icon-box {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.card-number {
  position: absolute;
  top: 32px;
  right: 26px;
  color: #a7abb4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 80px;
  place-items: center;
  color: var(--red);
  border: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.icon-box svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
}

.programme-card p {
  min-height: 78px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.programme-card h3 {
  font-size: 23px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 90px;
  align-items: center;
}

.requirements-copy > p:not(.eyebrow) {
  max-width: 530px;
  color: var(--muted);
  font-size: 18px;
}

.legal-note {
  margin-top: 34px;
  padding: 18px 20px;
  background: var(--paper);
  border-left: 4px solid var(--red);
}

.legal-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.goal-planner {
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.goal-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
}

.goal-tabs button {
  min-height: 62px;
  padding: 10px;
  color: #aeb1ba;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.goal-tabs button:first-child {
  border-left: 0;
}

.goal-tabs button[aria-selected="true"] {
  color: var(--paper);
  background: var(--red);
}

.goal-panel {
  display: grid;
  grid-template-columns: 115px 24px 115px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 245px;
  padding: 36px 38px 30px;
}

.goal-panel__level {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.goal-panel__level span {
  display: grid;
  width: 96px;
  height: 96px;
  margin-bottom: 8px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-size: 37px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.goal-panel__level small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.goal-panel__plus {
  color: var(--red);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.goal-panel__copy {
  padding-left: 14px;
}

.goal-panel__copy h3 {
  font-size: 22px;
}

.goal-panel__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.goal-source {
  margin: 0;
  padding: 14px 38px;
  color: var(--muted);
  background: #f8f8f9;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.goal-source a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fast-track {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  color: var(--paper);
  background: var(--ink);
}

.fast-track::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: var(--red);
  content: "";
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.fast-track__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 100px;
  align-items: center;
}

.fast-track__copy > p:not(.eyebrow) {
  max-width: 570px;
  color: #a8abb4;
  font-size: 17px;
}

.fast-track__prices {
  display: flex;
  gap: 38px;
  margin: 32px 0;
}

.fast-track__prices span {
  font-size: 19px;
  font-weight: 750;
}

.fast-track__prices small {
  display: block;
  color: #9296a0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cefr-visual {
  position: relative;
  min-height: 330px;
  padding: 46px 42px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cefr-visual__top {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 84px;
}

.cefr-visual__top strong {
  color: var(--red);
  font-size: 66px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.cefr-visual__top span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cefr-line {
  display: flex;
  align-items: center;
}

.cefr-line span {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.cefr-line span:nth-of-type(4) {
  background: var(--red);
}

.cefr-line i {
  width: 100%;
  height: 1px;
  background: #cacbd0;
}

.cefr-visual__result {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 14px 22px;
  color: var(--paper);
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 100px;
}

.method-intro {
  position: sticky;
  top: 132px;
  align-self: start;
}

.method-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.method-list {
  border-top: 1px solid var(--line);
}

.method-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 26px;
  padding: 37px 0;
  border-bottom: 1px solid var(--line);
}

.method-item > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.method-item h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.method-item p {
  margin: 0;
  color: var(--muted);
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.journey-list li {
  position: relative;
  padding: 32px 30px 24px;
  border-top: 4px solid var(--line);
  border-left: 1px solid var(--line);
}

.journey-list li:first-child {
  border-left: 0;
}

.journey-list li::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--red);
  content: "";
  transition: width 280ms ease;
}

.journey-list li:hover::before {
  width: 100%;
}

.journey-list span {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.journey-list h3 {
  font-size: 21px;
}

.journey-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 35px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.price-card--featured {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.price-card__label {
  margin-bottom: 38px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 28px;
}

.price-card__subtitle {
  color: var(--muted);
  font-style: italic;
}

.price-card--featured .price-card__subtitle {
  color: #a8abb4;
}

.price-card ul {
  margin: 26px 0 32px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card--featured ul {
  border-top-color: #3c4049;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
  font-size: 14px;
}

.price-card li span {
  color: var(--muted);
}

.price-card--featured li span {
  color: #a8abb4;
}

.price-card li strong {
  text-align: right;
}

.price-card .button {
  margin-top: auto;
}

.price-card--featured .button {
  color: var(--paper);
}

.pricing-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted-dark);
}

.accordion {
  border-top: 1px solid #3a3d45;
}

.accordion details {
  border-bottom: 1px solid #3a3d45;
}

.accordion summary {
  position: relative;
  padding: 26px 54px 26px 0;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary::before,
.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 2px;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 670px;
  margin: -4px 54px 25px 0;
  color: var(--muted-dark);
}

.contact {
  padding: 116px 0;
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: 100px;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.contact-details a,
.contact-details p {
  display: grid;
  grid-template-columns: 67px 1fr;
  gap: 16px;
  margin: 0;
  font-size: 14px;
}

.contact-details a:hover {
  color: var(--red);
}

.contact-details span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form {
  padding: 38px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label:not(.checkbox) {
  display: block;
  margin-bottom: 19px;
  color: #c4c6cc;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  color: var(--paper);
  background: #22252d;
  border: 1px solid #3a3d46;
  border-radius: 0;
  outline: 0;
}

.contact-form input,
.contact-form select {
  height: 51px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

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

.contact-form textarea::placeholder {
  color: #747985;
  text-transform: none;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 22px;
  color: #aeb1ba;
  font-size: 12px;
}

.checkbox input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 3px 0 0;
  accent-color: var(--red);
}

.form-note {
  margin: 13px 0 0;
  color: #858995;
  font-size: 11px;
  text-align: center;
}

.form-note.is-error {
  color: #ff8f88;
}

.site-footer {
  color: var(--paper);
  background: #111318;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  gap: 30px;
  border-bottom: 1px solid #2e3139;
}

.footer-top p {
  margin: 0;
  color: #8d919c;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  padding-bottom: 24px;
  color: #858995;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
}

.footer-bottom a:hover {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-sm { transition-delay: 70ms; }
.reveal--delay,
.reveal--delay-md { transition-delay: 130ms; }
.reveal--delay-lg { transition-delay: 190ms; }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .brand__text {
    font-size: 11px;
    letter-spacing: 0.17em;
  }

  .main-nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero__grid {
    gap: 44px;
  }

  .programme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programme-card:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .programme-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .requirements-grid,
  .fast-track__grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .fast-track::before {
    width: 24%;
  }

  .goal-planner,
  .cefr-visual {
    max-width: 760px;
  }

  .method-grid,
  .faq-grid {
    gap: 54px;
  }

  .pricing-grid {
    gap: 14px;
  }

  .price-card {
    padding: 27px 23px;
  }
}

@media (max-width: 1120px) {
  html {
    scroll-padding-top: 78px;
  }

  .announcement__inner {
    justify-content: space-between;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 104px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 26px 24px 40px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-scrolled .main-nav {
    top: 70px;
  }

  .main-nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid #31343c;
    font-size: 19px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 14px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 76px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .level-card {
    max-width: 660px;
  }

  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 23px;
  }

  .hero__metrics > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .section,
  .contact,
  .fast-track {
    padding: 88px 0;
  }

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

  .method-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .method-intro {
    position: static;
  }

  .journey-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-list li:nth-child(3) {
    border-left: 0;
  }

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

  .price-card {
    min-height: auto;
  }

  .price-card__label {
    margin-bottom: 24px;
  }
}

/* Multi-page content */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 102px;
  color: var(--paper);
  background: var(--ink);
}

.page-hero::after {
  position: absolute;
  right: -56px;
  bottom: -96px;
  width: 250px;
  height: 250px;
  border: 58px solid rgba(229, 43, 32, 0.18);
  content: "";
  transform: rotate(11deg);
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: center;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6vw, 82px);
}

.page-hero p:not(.eyebrow) {
  max-width: 740px;
  margin-bottom: 0;
  color: #afb2bb;
  font-size: 19px;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero--center .eyebrow {
  justify-content: center;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
  color: #7f838e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--paper);
}

.breadcrumbs--center {
  justify-content: center;
}

.page-hero__motif {
  position: relative;
  min-height: 250px;
}

.page-hero__motif span {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 30px solid var(--red);
}

.page-hero__motif span:nth-child(1) { top: 0; right: 30px; }
.page-hero__motif span:nth-child(2) { right: 130px; bottom: 0; border-color: #343740; }
.page-hero__motif span:nth-child(3) { right: 0; bottom: 20px; width: 78px; height: 78px; border-width: 0; background: var(--paper); }

.page-hero__motif--levels {
  display: grid;
  grid-template-columns: repeat(2, 90px);
  gap: 12px;
  align-content: center;
  justify-content: end;
}

.page-hero__motif--levels b {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  background: #282b33;
  font-size: 24px;
}

.page-hero__motif--levels b:nth-child(3) {
  background: var(--red);
}

.page-hero__motif--certificate span {
  top: 16px;
  right: 30px;
  width: 210px;
  height: 220px;
  background: var(--paper);
  border: 0;
  transform: rotate(5deg);
}

.page-hero__motif--certificate b {
  position: absolute;
  z-index: 1;
  right: 100px;
  bottom: 50px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  border-radius: 50%;
  font-size: 40px;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 110px;
}

.prose {
  max-width: 680px;
}

.prose p {
  color: var(--muted);
  font-size: 17px;
}

.prose .lead,
.lead {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
  align-items: center;
}

.portrait-slot {
  position: relative;
  display: flex;
  min-height: 480px;
  align-items: flex-end;
  padding: 40px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.portrait-slot::before,
.portrait-slot::after {
  position: absolute;
  content: "";
}

.portrait-slot::before {
  top: 48px;
  right: 54px;
  width: 250px;
  height: 250px;
  border: 54px solid #292c34;
  border-radius: 50%;
}

.portrait-slot::after {
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  background: var(--red);
}

.portrait-slot > div {
  position: relative;
  z-index: 1;
}

.portrait-slot small,
.portrait-slot strong {
  display: block;
}

.portrait-slot small {
  margin-bottom: 12px;
  color: #a8abb4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-slot strong {
  font-size: 35px;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-tile {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-tile > span {
  display: block;
  margin-bottom: 70px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-tile h3 {
  font-size: 22px;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reach-grid,
.professional-grid,
.prep-grid,
.skills-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
  align-items: center;
}

.reach-grid > div:first-child > p:not(.eyebrow),
.professional-grid > div:first-child > p:not(.eyebrow),
.prep-grid > div:first-child > p:not(.eyebrow) {
  color: #a8abb4;
  font-size: 17px;
}

.city-cloud,
.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-cloud span,
.sector-list span {
  padding: 12px 16px;
  color: #d7d9de;
  background: #24272e;
  border: 1px solid #363943;
  font-size: 13px;
  font-weight: 700;
}

.city-cloud span:last-child,
.sector-list span:last-child {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.cta-band {
  padding: 72px 0;
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid #343740;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
}

.cta-band .eyebrow {
  margin-bottom: 20px;
}

.cta-band__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

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

.language-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.language-card > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 66px;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.language-card--more {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.language-card--more > span {
  background: #33363e;
}

.language-card h3 {
  font-size: 25px;
}

.language-card p {
  min-height: 50px;
  color: var(--muted);
  font-size: 14px;
}

.language-card--more p {
  color: #a8abb4;
}

.language-card--more .card-link {
  color: var(--paper);
}

.format-grid,
.center-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.format-card,
.center-card,
.info-card {
  padding: 28px;
  border: 1px solid var(--line);
}

.format-card > span,
.center-card > span {
  display: block;
  margin-bottom: 70px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.format-card h3,
.center-card h3,
.info-card h3 {
  font-size: 22px;
}

.format-card p,
.center-card p,
.info-card p {
  color: var(--muted);
  font-size: 14px;
}

.format-card ul,
.cert-card ul {
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.format-card li,
.cert-card li {
  padding: 5px 0;
  color: var(--muted);
  font-size: 13px;
}

.skill-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.skill-cards div {
  display: flex;
  min-height: 130px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.skill-cards strong {
  color: var(--red);
  font-size: 12px;
}

.skill-cards span {
  font-size: 21px;
  font-weight: 750;
}

.compact-rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.compact-rate {
  min-height: 220px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.compact-rate p {
  min-height: 52px;
  color: var(--muted);
}

.compact-rate strong,
.compact-rate span {
  display: block;
}

.compact-rate strong {
  font-size: 38px;
  letter-spacing: -0.05em;
}

.compact-rate span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.compact-rate--dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.compact-rate--dark p,
.compact-rate--dark span {
  color: #a8abb4;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cert-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.cert-card > span {
  margin-bottom: 54px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cert-card h3 {
  font-size: 31px;
}

.cert-card > p {
  color: var(--muted);
  font-size: 14px;
}

.cert-card .button,
.cert-card .text-link {
  margin-top: auto;
}

.cert-card--featured {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.cert-card--featured > p,
.cert-card--featured li {
  color: #a8abb4;
}

.cert-card--featured ul {
  border-color: #383b44;
}

.cert-card--question {
  background: transparent;
  border: 2px dashed #c7c9cf;
}

.fide-offer {
  padding: 100px 0;
  color: var(--paper);
  background: var(--ink);
}

.fide-offer__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
  align-items: center;
}

.fide-offer__grid > div:first-child > p:not(.eyebrow) {
  color: #a8abb4;
}

.fide-offer__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fide-offer__facts div {
  padding: 32px 24px;
  border-left: 1px solid #3a3d45;
}

.fide-offer__facts strong,
.fide-offer__facts span {
  display: block;
}

.fide-offer__facts strong {
  color: var(--red);
  font-size: 30px;
}

.fide-offer__facts span {
  color: #a8abb4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steps-split,
.exam-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 100px;
}

.numbered-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.numbered-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.numbered-steps li > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.numbered-steps h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.numbered-steps p {
  margin: 0;
  color: var(--muted);
}

.test-intro {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 55px;
  align-items: center;
  max-width: 900px;
  margin-bottom: 70px;
}

.test-intro > strong {
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  font-size: 33px;
}

.test-intro h2 {
  margin-bottom: 12px;
}

.test-intro p {
  margin: 0;
  color: var(--muted);
}

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

.test-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 18px;
  align-items: end;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(14, 24, 43, 0.18);
}

.test-card::before,
.test-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.test-card::before {
  z-index: -2;
  transition: transform 240ms ease, filter 240ms ease;
}

.test-card::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 14, 25, 0.08), rgba(9, 14, 25, 0.82));
}

.test-card:hover::before {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.test-card--french::before {
  background: linear-gradient(90deg, #142d76 0 33.333%, #f2f2f2 33.333% 66.666%, #c82832 66.666%);
}

.test-card--english::before {
  background:
    linear-gradient(90deg, transparent 40%, #f3f3f3 40% 44%, #c51f31 44% 56%, #f3f3f3 56% 60%, transparent 60%),
    linear-gradient(transparent 36%, #f3f3f3 36% 42%, #c51f31 42% 58%, #f3f3f3 58% 64%, transparent 64%),
    linear-gradient(34deg, transparent 43%, #f3f3f3 43% 47%, #c51f31 47% 53%, #f3f3f3 53% 57%, transparent 57%),
    linear-gradient(-34deg, transparent 43%, #f3f3f3 43% 47%, #c51f31 47% 53%, #f3f3f3 53% 57%, transparent 57%),
    #18316e;
}

.test-card--spanish::before {
  background: linear-gradient(#a51f2b 0 25%, #f1c735 25% 75%, #a51f2b 75%);
}

.test-card--italian::before {
  background: linear-gradient(90deg, #16834b 0 33.333%, #f3f3f3 33.333% 66.666%, #c82e37 66.666%);
}

.test-card--german::before {
  background: linear-gradient(#17191f 0 33.333%, #c42432 33.333% 66.666%, #e2b53f 66.666%);
}

.test-card h3,
.test-card p {
  margin: 0;
}

.test-card h3 {
  color: var(--paper);
  font-size: 25px;
}

.test-card p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.test-card > b {
  color: var(--paper);
  font-size: 20px;
}

.test-card--help {
  color: var(--paper);
  background: var(--ink);
}

.fide-badge {
  display: flex;
  width: 250px;
  height: 250px;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--paper);
  border: 14px solid var(--red);
}

.fide-badge small,
.fide-badge span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fide-badge strong {
  color: var(--red);
  font-size: 55px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.center-card {
  background: var(--paper);
}

.center-card > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 70px;
  place-items: center;
  color: var(--paper);
  background: var(--red);
}

.exam-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.exam-modules article {
  padding: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.exam-modules article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.exam-modules h3 {
  margin: 40px 0 28px;
  font-size: 23px;
}

.exam-modules article > div {
  display: inline-flex;
  margin-right: 22px;
  flex-direction: column;
}

.exam-modules strong {
  font-size: 23px;
}

.exam-modules small {
  color: var(--muted);
}

.exam-modules p {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.prep-price {
  display: grid;
  max-width: 360px;
  padding: 34px;
  background: var(--paper);
  justify-self: end;
}

.prep-price small,
.prep-price span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prep-price strong {
  color: var(--ink);
  font-size: 54px;
  letter-spacing: -0.06em;
}

.prep-price .button {
  margin-top: 25px;
}

.info-card {
  min-height: 220px;
}

.contact--page {
  padding-top: 105px;
}

.contact-form--extended {
  max-width: 760px;
}

.response-card {
  margin-top: 44px;
  padding: 22px;
  background: var(--soft);
  border-left: 4px solid var(--red);
}

.response-card strong {
  display: block;
  margin-bottom: 5px;
}

.response-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1050px) {
  .page-hero__grid,
  .editorial-split,
  .founder-grid,
  .reach-grid,
  .professional-grid,
  .prep-grid,
  .skills-grid,
  .fide-offer__grid,
  .steps-split,
  .exam-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .page-hero__motif,
  .fide-badge {
    display: none;
  }

  .language-grid,
  .cert-grid,
  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-grid,
  .center-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prep-price {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .page-hero {
    padding: 68px 0 75px;
  }

  .page-hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .feature-grid,
  .language-grid,
  .format-grid,
  .cert-grid,
  .test-grid,
  .center-grid,
  .info-grid,
  .compact-rate-grid,
  .exam-modules {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    min-height: 230px;
  }

  .feature-tile > span,
  .format-card > span,
  .center-card > span,
  .language-card > span {
    margin-bottom: 40px;
  }

  .portrait-slot {
    min-height: 390px;
  }

  .cta-band__inner,
  .cta-band__actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .fide-offer__facts {
    grid-template-columns: 1fr;
  }

  .fide-offer__facts div {
    border-top: 1px solid #3a3d45;
    border-left: 0;
  }

  .test-intro {
    grid-template-columns: 1fr;
  }

  .test-intro > strong {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .announcement {
    font-size: 9px;
  }

  .announcement__inner {
    min-height: 32px;
    gap: 10px;
  }

  .announcement__inner span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    top: 0;
  }

  .main-nav {
    top: 102px;
  }

  .brand__text {
    max-width: 220px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 59px);
  }

  h2 {
    font-size: 39px;
  }

  .hero__grid {
    gap: 48px;
    padding-top: 62px;
    padding-bottom: 54px;
  }

  .hero__intro {
    font-size: 17px;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .level-card {
    padding: 23px 19px;
  }

  .level-step {
    grid-template-columns: 55px 1fr;
  }

  .hero__metrics {
    padding-top: 22px;
  }

  .hero__metrics > div {
    padding: 0 12px;
  }

  .hero__metrics strong {
    font-size: 22px;
  }

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

  .programme-card,
  .programme-card:nth-child(2),
  .programme-card:nth-child(4) {
    min-height: 350px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .programme-card:first-child {
    border-top: 0;
  }

  .icon-box {
    margin-bottom: 60px;
  }

  .goal-tabs button {
    min-height: 58px;
    font-size: 11px;
  }

  .goal-panel {
    grid-template-columns: 1fr 18px 1fr;
    gap: 8px;
    padding: 28px 20px;
  }

  .goal-panel__copy {
    grid-column: 1 / -1;
    padding: 22px 0 0;
    text-align: center;
  }

  .goal-source {
    padding: 13px 20px;
  }

  .fast-track::before {
    display: none;
  }

  .fast-track__prices {
    flex-direction: column;
    gap: 12px;
  }

  .cefr-visual {
    min-height: 280px;
    padding: 33px 22px;
  }

  .cefr-visual__top {
    margin-bottom: 60px;
  }

  .cefr-visual__top strong {
    font-size: 58px;
  }

  .cefr-line span {
    width: 30px;
    height: 30px;
    font-size: 9px;
  }

  .method-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

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

  .journey-list li,
  .journey-list li:nth-child(3) {
    border-left: 0;
  }

  .journey-list span {
    margin-bottom: 26px;
  }

  .contact-form {
    padding: 27px 20px;
  }

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

  .contact-details a,
  .contact-details p {
    grid-template-columns: 55px minmax(0, 1fr);
    overflow-wrap: anywhere;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-top {
    min-height: 160px;
  }

  .brand--footer .brand__text {
    max-width: 260px;
  }
}

/* Full navigation based on the original SLA site map. */
.menu-toggle {
  display: flex;
}

.main-nav {
  position: fixed;
  z-index: 95;
  top: 112px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  overflow-y: auto;
  color: var(--ink);
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.main-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-scrolled .main-nav {
  top: 78px;
}

.main-nav__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  gap: 64px 110px;
  min-height: 100%;
  padding-top: 58px;
  padding-bottom: 48px;
}

.menu-tree {
  align-self: start;
}

.menu-group,
.menu-direct {
  border-bottom: 1px solid var(--line);
}

.menu-group__toggle,
.menu-direct {
  width: 100%;
  min-height: 64px;
  padding: 15px 0;
  color: #253451;
  background: transparent;
  border: 0;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
}

.menu-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}

.menu-direct {
  display: flex;
  align-items: center;
}

.menu-group__chevron {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 180ms ease;
}

.menu-group.is-open .menu-group__chevron {
  transform: rotate(225deg) translate(-2px, -1px);
}

.menu-submenu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 260ms ease, opacity 180ms ease;
}

.menu-submenu > a {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 0 34px;
  color: #292d36;
  font-size: 17px;
  font-weight: 600;
  line-height: 0;
  transition: padding 220ms ease, color 160ms ease, line-height 220ms ease;
}

.menu-group.is-open .menu-submenu {
  max-height: 520px;
  padding-bottom: 18px;
  opacity: 1;
}

.menu-group.is-open .menu-submenu > a {
  padding-top: 7px;
  padding-bottom: 7px;
  line-height: 1.35;
}

.menu-submenu a:hover,
.menu-submenu a:focus-visible,
.menu-submenu a[aria-current="page"],
.menu-direct:hover,
.menu-direct:focus-visible,
.menu-direct[aria-current="page"] {
  color: var(--red);
}

.menu-contact {
  align-self: start;
  padding: 34px;
  color: var(--paper);
  background: var(--ink);
}

.menu-contact .eyebrow {
  color: var(--muted-dark);
}

.menu-contact a,
.menu-contact p:not(.eyebrow) {
  display: block;
  margin: 0 0 12px;
}

.menu-contact a {
  font-weight: 700;
}

.menu-contact a:hover,
.menu-contact a:focus-visible {
  color: var(--red);
}

.menu-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-self: end;
}

.menu-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px 24px;
  color: #253451;
  border: 2px solid #253451;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 750;
}

.menu-action:hover,
.menu-action:focus-visible {
  color: var(--paper);
  background: #253451;
}

@media (max-width: 1120px) {
  .main-nav {
    top: 104px;
    display: block;
    padding: 0;
    background: var(--paper);
  }

  .site-header.is-scrolled .main-nav {
    top: 70px;
  }

  .main-nav__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 36px;
  }

  .main-nav > a:not(.button) {
    padding: 0;
    border-bottom: 0;
  }

  .menu-contact {
    display: none;
  }

  .menu-actions {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .main-nav__inner {
    width: min(calc(100% - 32px), var(--shell));
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .menu-group__toggle,
  .menu-direct {
    min-height: 54px;
    font-size: 24px;
  }

  .menu-submenu > a {
    padding-left: 22px;
    font-size: 15px;
  }

  .menu-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-action {
    min-height: 52px;
    font-size: 15px;
  }
}

/* Exact legacy copy layouts */

.page-hero--exact {
  padding-block: 78px;
}

.page-hero--exact h1 {
  margin: 0;
}

.exact-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.inline-link {
  color: var(--red);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.exact-heading-link {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--red);
}

.exact-heading-link h3 {
  margin: 0;
  font-size: 25px;
}

.exact-section-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.exact-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
  counter-reset: exact-features;
  list-style: none;
}

.exact-feature-list li {
  position: relative;
  min-height: 150px;
  padding: 58px 30px 28px;
  background: var(--paper);
  counter-increment: exact-features;
  font-size: 15px;
}

.exact-feature-list li::before {
  position: absolute;
  top: 23px;
  left: 30px;
  color: var(--red);
  content: counter(exact-features, decimal-leading-zero);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.exact-skills-intro {
  margin-bottom: 60px;
}

.exact-skills-intro .prose p {
  color: var(--muted);
  font-size: 17px;
}

.exact-skill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.exact-skill-grid article {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-left: 1px solid var(--line);
}

.exact-skill-grid article:first-child {
  border-left: 0;
}

.exact-skill-grid strong {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.exact-skill-grid span {
  font-size: 27px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.exact-reasons-heading {
  max-width: 870px;
  margin-bottom: 56px;
}

.exact-reasons-heading > p:not(.eyebrow) {
  max-width: 760px;
  color: #a8abb4;
  font-size: 17px;
}

.exact-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #383b44;
  border-left: 1px solid #383b44;
}

.exact-reason-grid article {
  min-height: 175px;
  padding: 28px;
  border-right: 1px solid #383b44;
  border-bottom: 1px solid #383b44;
}

.exact-reason-grid span {
  display: block;
  margin-bottom: 35px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.exact-reason-grid p {
  margin: 0;
  color: #d4d6dc;
  font-size: 16px;
}

@media (max-width: 840px) {
  .exact-intro,
  .exact-skills-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .exact-skill-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exact-skill-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .exact-skill-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .exact-feature-list,
  .exact-reason-grid,
  .exact-skill-grid {
    grid-template-columns: 1fr;
  }

  .exact-skill-grid article,
  .exact-skill-grid article:nth-child(4) {
    min-height: 170px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .exact-skill-grid article:first-child {
    border-top: 0;
  }
}

/* CEO page */

.ceo-page__title {
  max-width: 1050px;
  margin: 0 0 58px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.ceo-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 92px;
  align-items: start;
}

.ceo-profile {
  min-width: 0;
}

.ceo-photo-placeholder {
  position: relative;
  display: grid;
  width: min(100%, 340px);
  aspect-ratio: 4 / 4.6;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(145deg, transparent 48%, rgba(229, 43, 32, 0.4) 48%, rgba(229, 43, 32, 0.4) 53%, transparent 53%),
    var(--ink);
}

.ceo-photo-placeholder::before {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.32);
  content: "";
  transform: rotate(45deg);
}

.ceo-photo-placeholder span {
  position: relative;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.ceo-identity {
  padding: 24px 0 25px;
  border-bottom: 3px solid #253451;
}

.ceo-identity h3 {
  margin: 0 0 8px;
  color: #253451;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.ceo-identity p,
.ceo-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.ceo-emails {
  display: grid;
  gap: 3px;
  padding: 24px 0;
  border-bottom: 3px solid #253451;
  overflow-wrap: anywhere;
}

.ceo-emails a {
  color: #253451;
}

.ceo-emails a:hover,
.ceo-emails a:focus-visible {
  color: var(--red);
}

.ceo-facts section {
  padding: 25px 0;
  border-bottom: 3px solid #253451;
}

.ceo-facts h3 {
  margin: 0 0 12px;
  color: #253451;
  font-size: 24px;
  line-height: 1.1;
}

.ceo-languages {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 6px 24px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.ceo-languages dt,
.ceo-languages dd {
  margin: 0;
}

.ceo-copy {
  color: #5f6673;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}

.ceo-copy > p {
  margin: 0 0 24px;
}

.ceo-copy ul {
  margin: 0;
  padding-left: 1.25em;
}

.ceo-copy li {
  margin-bottom: 5px;
  padding-left: 3px;
}

@media (max-width: 900px) {
  .ceo-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .ceo-profile {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .ceo-page__title {
    margin-bottom: 42px;
  }

  .ceo-photo-placeholder {
    width: 100%;
  }

  .ceo-languages {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 6px 14px;
    font-size: 15px;
  }

  .ceo-copy {
    font-size: 16px;
  }
}

/* Intensive Program page */

.intensive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: 76px;
  align-items: start;
}

.intensive-copy {
  min-width: 0;
}

.intensive-copy > h2 {
  margin: 0 0 42px;
  color: #253451;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.intensive-intro,
.intensive-ending {
  color: var(--muted);
  font-size: 18px;
}

.intensive-intro p,
.intensive-ending > p {
  margin: 0 0 26px;
}

.intensive-standout {
  margin: 48px 0;
}

.intensive-standout h3 {
  margin: 0 0 26px;
  color: #253451;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.intensive-standout ul {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.intensive-standout li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.intensive-standout li > span {
  font-size: 20px;
}

.intensive-standout li p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.intensive-standout li strong {
  color: var(--ink);
}

.intensive-ending > p > strong {
  color: var(--red);
}

.intensive-clients {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 14px;
}

.button--outline {
  color: #253451;
  background: transparent;
  border-color: #253451;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--paper);
  background: #253451;
}

.intensive-sidebar {
  position: sticky;
  top: 110px;
}

.intensive-sidebar__label {
  padding: 9px 18px;
  color: var(--paper);
  background: #253451;
  font-size: 18px;
  text-align: center;
}

.intensive-form {
  padding: 30px;
  box-shadow: none;
}

.intensive-form h2 {
  margin: 0 0 4px;
  color: var(--paper);
  font-size: 28px;
  line-height: 1.05;
}

.intensive-form > p:not(.form-note):not(.intensive-form__warning) {
  margin: 0 0 24px;
  color: var(--muted-dark);
}

.intensive-form__warning {
  margin: 22px 0;
  color: #ff7770;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

@media (max-width: 1000px) {
  .intensive-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .intensive-sidebar {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .intensive-copy > h2 {
    margin-bottom: 32px;
  }

  .intensive-intro,
  .intensive-ending {
    font-size: 16px;
  }

  .intensive-standout li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .intensive-standout li p {
    font-size: 15px;
  }

  .intensive-form {
    padding: 26px 20px;
  }
}

/* FIDE preparation page */

.fide-prep-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: 76px;
  align-items: start;
}

.fide-prep-copy {
  min-width: 0;
  color: var(--muted);
  font-size: 17px;
}

.fide-prep-section {
  padding: 0 0 54px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.fide-prep-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.fide-prep-section h2 {
  margin: 0 0 24px;
  color: #253451;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.fide-prep-section h3 {
  margin: 34px 0 13px;
  color: #253451;
  font-size: 24px;
  line-height: 1.15;
}

.fide-prep-section > p {
  margin: 0 0 24px;
}

.fide-module-list {
  display: grid;
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}

.fide-module-list p {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.fide-module-list strong,
.fide-schedule strong {
  color: var(--ink);
}

.fide-schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 24px 0 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fide-schedule p {
  margin: 0;
  padding: 25px;
  background: var(--soft);
}

.fide-inline-action,
.fide-final-actions p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.fide-pointers > p {
  padding-left: 20px;
  border-left: 3px solid var(--line);
}

.fide-pointers > h3 + p {
  border-left-color: var(--red);
}

.fide-final-actions {
  display: grid;
  gap: 14px;
  margin-top: 38px;
  padding: 28px;
  color: var(--ink);
  background: var(--soft);
}

.fide-final-actions p {
  margin: 0;
}

.fide-prep-sidebar {
  position: sticky;
  top: 110px;
}

@media (max-width: 1000px) {
  .fide-prep-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .fide-prep-sidebar {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .fide-prep-copy {
    font-size: 15px;
  }

  .fide-prep-section {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }

  .fide-schedule {
    grid-template-columns: 1fr;
  }

  .fide-pointers > p {
    padding-left: 14px;
  }

  .fide-final-actions {
    padding: 22px 18px;
  }
}

/* DELF, DALF and TCF page */

.diploma-hero h1 {
  max-width: 920px;
  font-size: clamp(45px, 7vw, 92px);
  line-height: 0.92;
}

.diploma-section__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  gap: 90px;
  align-items: start;
}

.diploma-section__grid > div:first-child {
  position: sticky;
  top: 120px;
}

.diploma-section h2 {
  margin: 0;
  color: #253451;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section--dark.diploma-section h2 {
  color: var(--paper);
}

.diploma-prose {
  min-width: 0;
  color: var(--muted);
  font-size: 17px;
}

.diploma-prose > p {
  margin: 0 0 25px;
}

.diploma-prose--light {
  color: #c8cad0;
}

.diploma-version-list,
.diploma-characteristics {
  display: grid;
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.diploma-version-list li,
.diploma-characteristics li {
  position: relative;
  padding: 18px 18px 18px 42px;
  border-bottom: 1px solid var(--line);
}

.diploma-version-list li::before,
.diploma-characteristics li::before {
  position: absolute;
  top: 21px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--red);
  content: "";
}

.diploma-characteristics {
  border-top-color: #3b3e47;
}

.diploma-characteristics li {
  border-bottom-color: #3b3e47;
}

.diploma-hours {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.diploma-hours p {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.diploma-hours strong {
  color: #253451;
}

@media (max-width: 850px) {
  .diploma-section__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .diploma-section__grid > div:first-child {
    position: static;
  }
}

@media (max-width: 620px) {
  .diploma-prose {
    font-size: 15px;
  }

  .diploma-version-list li,
  .diploma-characteristics li {
    padding-right: 0;
    padding-left: 30px;
  }

  .diploma-hours p {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* Swiss Citizenship page */

.citizenship-section__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: 90px;
  align-items: start;
}

.citizenship-section h2 {
  position: sticky;
  top: 120px;
  margin: 0;
  color: #253451;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section--dark.citizenship-section h2 {
  color: var(--paper);
}

.citizenship-prose {
  color: var(--muted);
  font-size: 18px;
}

.citizenship-prose p {
  margin: 0 0 27px;
}

.citizenship-prose p:last-child {
  margin-bottom: 0;
}

.citizenship-prose--light {
  color: #c8cad0;
}

/* FLE page */

.fle-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
}

.fle-page h2 {
  margin: 0;
  color: #253451;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.fle-prose {
  color: var(--muted);
  font-size: 18px;
}

.fle-prose p {
  margin: 0 0 25px;
}

.fle-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
}

.fle-content-grid h2 {
  min-height: 145px;
  font-size: clamp(28px, 3vw, 42px);
}

.fle-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.fle-list li {
  position: relative;
  padding: 18px 8px 18px 36px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.fle-list li::before {
  position: absolute;
  top: 24px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--red);
  content: "";
}

.fle-ending {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 80px;
  align-items: start;
}

.fle-prose--light {
  color: #c8cad0;
}

.fle-facts {
  border-top: 1px solid #3b3e47;
}

.fle-facts p {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 20px 0;
  color: #c8cad0;
  border-bottom: 1px solid #3b3e47;
}

.fle-facts strong {
  color: var(--red);
}

/* FIDE Welcome page */

.fide-welcome-offer {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.fide-welcome-price {
  padding: 34px;
  color: var(--paper);
  background: var(--ink);
  border-top: 8px solid var(--red);
}

.fide-welcome-price h2 {
  margin: 0 0 28px;
  font-size: 29px;
  line-height: 1.15;
}

.fide-welcome-price p {
  margin: 0;
  color: var(--red);
  font-size: 26px;
  font-weight: 800;
}

.fide-welcome-intro h2 {
  margin: 0 0 24px;
  color: #253451;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.fide-welcome-intro h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.2;
}

.fide-welcome-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.fide-coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
}

.fide-coaching-grid article {
  min-height: 260px;
  padding: 34px;
  background: var(--paper);
}

.fide-coaching-grid h2 {
  margin: 0 0 28px;
  color: #253451;
  font-size: 27px;
  line-height: 1.1;
}

.fide-coaching-grid p {
  margin: 0;
  color: var(--muted);
}

.fide-welcome-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 90px;
  align-items: start;
}

.fide-welcome-statement > p {
  margin: 0;
  color: #d2d4da;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.fide-welcome-statement h2 {
  margin: 0 0 18px;
  color: var(--paper);
  font-size: 38px;
}

.fide-welcome-statement div p {
  margin: 0;
  color: #b8bbc4;
}

.fide-center-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
}

.fide-center-grid article {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--paper);
}

.fide-center-grid a {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fide-center-grid span {
  color: var(--muted);
  font-size: 14px;
}

.fide-center-grid strong {
  color: #253451;
  font-size: 25px;
}

@media (max-width: 900px) {
  .citizenship-section__grid,
  .fle-intro,
  .fle-ending,
  .fide-welcome-offer,
  .fide-welcome-statement {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .citizenship-section h2 {
    position: static;
  }

  .fle-content-grid {
    grid-template-columns: 1fr;
  }

  .fle-content-grid h2 {
    min-height: 0;
  }

  .fide-center-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .citizenship-prose,
  .fle-prose,
  .fide-welcome-intro p {
    font-size: 15px;
  }

  .fle-list li {
    padding-left: 28px;
    font-size: 15px;
  }

  .fide-coaching-grid,
  .fide-center-grid {
    grid-template-columns: 1fr;
  }

  .fide-coaching-grid article {
    min-height: 0;
    padding: 28px 22px;
  }

  .fide-center-grid article {
    min-height: 180px;
  }
}

/* Individual language test pages */

.language-test-hero {
  position: relative;
  display: flex;
  min-height: 510px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: #253451;
}

.language-test-hero::before,
.language-test-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.language-test-hero::after {
  background: linear-gradient(90deg, rgba(10, 12, 18, 0.78), rgba(10, 12, 18, 0.1));
}

.language-test-page--french .language-test-hero::before {
  background: linear-gradient(90deg, #142d76 0 33.333%, #f2f2f2 33.333% 66.666%, #c82832 66.666%);
}

.language-test-page--english .language-test-hero::before {
  background:
    linear-gradient(34deg, transparent 43%, #f3f3f3 43% 47%, #c51f31 47% 53%, #f3f3f3 53% 57%, transparent 57%),
    linear-gradient(-34deg, transparent 43%, #f3f3f3 43% 47%, #c51f31 47% 53%, #f3f3f3 53% 57%, transparent 57%),
    #18316e;
}

.language-test-page--spanish .language-test-hero::before {
  background: linear-gradient(#a51f2b 0 25%, #f1c735 25% 75%, #a51f2b 75%);
}

.language-test-page--italian .language-test-hero::before {
  background: linear-gradient(90deg, #16834b 0 33.333%, #f3f3f3 33.333% 66.666%, #c82e37 66.666%);
}

.language-test-page--german .language-test-hero::before {
  background: linear-gradient(#17191f 0 33.333%, #c42432 33.333% 66.666%, #e2b53f 66.666%);
}

/* Clients */

.clients-heading {
  max-width: 870px;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-logo-card {
  display: flex;
  min-width: 0;
  min-height: 176px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 30px 22px 22px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.client-logo-card:hover {
  z-index: 1;
  border-color: var(--red);
  box-shadow: 0 18px 34px rgba(17, 19, 24, 0.1);
  transform: translateY(-3px);
}

.client-logo-card img {
  width: auto;
  max-width: 84%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.client-logo-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.client-logo-grid--partners .client-logo-card {
  min-height: 210px;
}

.client-logo-grid--partners .client-logo-card img {
  max-width: 78%;
  max-height: 82px;
}

.clients-fide {
  color: var(--paper);
  background: var(--ink);
}

.clients-fide__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 90px;
  align-items: center;
}

.clients-fide__copy h2 {
  max-width: 620px;
  margin-bottom: 24px;
}

.clients-fide__copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--muted-dark);
  font-size: 18px;
}

.clients-fide__logo {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 46px;
  background: var(--paper);
}

.clients-fide__logo img {
  width: min(100%, 620px);
  height: auto;
}

@media (max-width: 1000px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clients-fide__grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
}

@media (max-width: 700px) {
  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-card,
  .client-logo-grid--partners .client-logo-card {
    min-height: 158px;
    gap: 20px;
    padding: 24px 14px 18px;
  }

  .clients-fide__grid {
    grid-template-columns: 1fr;
  }

  .clients-fide__logo {
    min-height: 250px;
    padding: 28px;
  }
}

.language-test-hero .shell {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.language-test-hero .breadcrumbs {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
}

.language-test-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(58px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.language-test-hero__code {
  position: absolute;
  right: 0;
  bottom: 60px;
  color: rgba(255, 255, 255, 0.36);
  font-size: clamp(100px, 17vw, 220px);
  font-weight: 850;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.language-test-entry {
  max-width: 980px;
}

.language-test-entry h2 {
  margin: 0 0 13px;
  color: #253451;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.language-test-entry > p:not(.language-test-warning) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
}

.language-test-warning {
  max-width: 900px;
  margin: 0 0 30px;
  color: var(--red-dark);
  font-size: 17px;
  font-weight: 800;
}

.test-entry-form {
  display: grid;
  max-width: 900px;
  gap: 19px;
}

.test-entry-form > label:not(.test-entry-optout) {
  display: grid;
  gap: 7px;
  color: #253451;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.test-entry-form input[type="email"] {
  width: 100%;
  height: 64px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #aeb2bc;
  border-radius: 0;
  outline: 0;
}

.test-entry-form input[type="email"]:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(229, 43, 32, 0.12);
}

.test-entry-optout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.test-entry-optout input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--red);
}

.button--dark {
  max-width: 360px;
  color: var(--paper);
  background: #253451;
  border-color: #253451;
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

@media (max-width: 620px) {
  .language-test-hero {
    min-height: 390px;
  }

  .language-test-hero .shell {
    padding-bottom: 48px;
  }

  .language-test-hero__code {
    right: 8px;
    bottom: 40px;
    font-size: 100px;
  }

  .language-test-entry > p:not(.language-test-warning),
  .language-test-warning {
    font-size: 15px;
  }

  .test-entry-form input[type="email"] {
    height: 56px;
  }
}

/* 2026 editorial redesign — original SLA direction inspired by luxury hospitality rhythm. */

:root {
  --ink: #171411;
  --ink-2: #26211d;
  --paper: #faf7f1;
  --soft: #eee8de;
  --line: #d8d0c4;
  --muted: #736d65;
  --muted-dark: #bdb5aa;
  --red: #9f2229;
  --red-dark: #7e171d;
  --gold: #a88a63;
  --shell: 1280px;
  --radius: 0;
  --shadow: 0 30px 70px rgba(28, 22, 16, 0.14);
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
.menu-group__toggle,
.menu-direct,
.price-card strong,
.hero__metrics strong {
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(64px, 7.2vw, 112px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1;
}

h3 {
  font-size: clamp(27px, 2.4vw, 38px);
  line-height: 1.08;
}

.shell {
  width: min(calc(100% - 80px), var(--shell));
}

.announcement {
  color: #e5dfd5;
  background: #0f0d0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.announcement__inner {
  min-height: 36px;
}

.announcement a {
  border-bottom-color: var(--gold);
}

.site-header {
  color: var(--ink);
  background: #fff;
  backdrop-filter: none;
  border-bottom-color: #d8d2c9;
}

.nav-wrap {
  min-height: 90px;
}

.brand {
  gap: 12px;
}

.brand__mark {
  width: 66px;
  height: 50px;
  background: url("assets/images/logo-sla.png") center / contain no-repeat;
}

.brand--footer .brand__mark {
  width: 84px;
  height: 64px;
}

.brand__text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.29em;
}

.menu-toggle {
  gap: 16px;
  color: var(--ink);
}

.menu-toggle__label {
  font-size: 11px;
  letter-spacing: 0.25em;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  width: 30px;
  height: 1px;
}

.main-nav {
  top: 126px;
  color: var(--ink);
  background: #f6f1e9;
}

.site-header.is-scrolled .main-nav {
  top: 90px;
}

.main-nav__inner {
  padding-top: 72px;
  padding-bottom: 60px;
}

.menu-group,
.menu-direct {
  border-bottom-color: #cfc5b8;
}

.menu-group__toggle,
.menu-direct {
  min-height: 78px;
  color: var(--ink);
  font-size: clamp(34px, 3.1vw, 52px);
}

.menu-submenu > a {
  color: #514a42;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.menu-contact {
  padding: 46px;
  background: #211d19;
}

.menu-action {
  min-height: 62px;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  min-height: 54px;
  padding: 0 29px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button--red {
  background: var(--red);
  border-color: var(--red);
}

.button--outline {
  border-color: #9e9589;
}

.eyebrow {
  gap: 14px;
  margin-bottom: 28px;
  color: #766f66;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.28em;
}

.eyebrow::before {
  width: 20px;
  height: 1px;
  background: var(--red);
}

.eyebrow--light {
  color: #d4ccc2;
}

.section {
  padding: 150px 0;
}

.section--white {
  background: var(--paper);
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  color: var(--paper);
  background: #1a1714;
}

.section-heading {
  gap: 110px;
  margin-bottom: 76px;
}

.section-heading > p,
.prose,
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

/* Home */

.hero {
  min-height: 850px;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.86) 0%, rgba(12, 10, 9, 0.52) 47%, rgba(12, 10, 9, 0.06) 100%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.48), transparent 48%),
    url("assets/images/editorial/hero-language-academy.jpg") center / cover no-repeat;
}

.hero::before,
.hero::after {
  display: none;
}

.hero__grid {
  grid-template-columns: minmax(0, 820px);
  min-height: 710px;
  padding-top: 118px;
  padding-bottom: 92px;
}

.hero__copy {
  align-self: end;
}

.hero h1 {
  max-width: 940px;
  margin-bottom: 32px;
  color: #fffdf8;
}

.hero h1 span {
  margin-top: 12px;
  color: #d8c6ae;
  font-size: 0.5em;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.hero__intro {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.55;
}

.hero__note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.level-card {
  display: none;
}

.hero__metrics {
  width: 100%;
  max-width: none;
  padding: 31px max(40px, calc((100vw - var(--shell)) / 2));
  color: var(--ink);
  background: rgba(250, 247, 241, 0.96);
  border-top: 0;
}

.hero__metrics > div {
  padding: 0 38px;
  border-left-color: #cfc5b8;
}

.hero__metrics strong {
  font-size: 34px;
  font-weight: 400;
}

.hero__metrics span {
  color: var(--muted);
  letter-spacing: 0.2em;
}

.programme-grid {
  border-color: #cfc5b8;
}

.programme-card {
  min-height: 470px;
  padding: 42px 34px 38px;
  border-color: #cfc5b8;
}

.programme-card:hover {
  color: var(--paper);
  background: #211d19;
  transform: translateY(-6px);
}

.programme-card h3 {
  font-size: 33px;
}

.programme-card p {
  color: var(--muted);
  line-height: 1.75;
}

.programme-card:hover p,
.programme-card:hover .card-link {
  color: #d4ccc2;
}

.card-number,
.method-item > span,
.journey-list > li > span {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.icon-box {
  margin-bottom: 88px;
}

.requirements-grid {
  gap: 120px;
}

.goal-planner,
.cefr-visual,
.price-card,
.contact-form {
  border-radius: 0;
  box-shadow: none;
}

.goal-planner {
  border: 1px solid #c8beb0;
}

.goal-tabs button {
  background: transparent;
  border-color: #c8beb0;
}

.goal-tabs button[aria-selected="true"] {
  color: var(--paper);
  background: var(--red);
}

.goal-panel__level span {
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-weight: 400;
}

.fast-track {
  position: relative;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(19, 16, 14, 0.94), rgba(19, 16, 14, 0.7) 57%, rgba(19, 16, 14, 0.34)),
    url("assets/images/editorial/exam-preparation.jpg") center / cover no-repeat;
}

.fast-track::before,
.fast-track::after {
  display: none;
}

.fast-track__grid {
  min-height: 760px;
  gap: 100px;
}

.fast-track__copy {
  max-width: 630px;
}

.fast-track__copy h2 {
  color: var(--paper);
}

.cefr-visual {
  color: var(--paper);
  background: rgba(27, 23, 20, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.method-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 105px;
}

.method-intro::before {
  display: block;
  width: 100%;
  min-height: 470px;
  margin-bottom: 56px;
  background: url("assets/images/editorial/private-coaching.jpg") center / cover no-repeat;
  content: "";
}

.method-item {
  padding: 37px 0;
  border-color: #cfc5b8;
}

.journey-list {
  border-top: 1px solid #c9bfb2;
  border-bottom: 1px solid #c9bfb2;
}

.journey-list li {
  min-height: 330px;
  padding: 42px 30px;
  border-color: #c9bfb2;
}

.journey-list h3 {
  font-size: 30px;
}

.price-card {
  min-height: 550px;
  padding: 44px 38px;
  background: transparent;
  border: 1px solid #c9bfb2;
}

.price-card--featured {
  color: var(--paper);
  background: #211d19;
  border-color: #211d19;
}

.price-card h3 {
  font-size: 39px;
}

.faq {
  background: #1b1815;
}

.accordion details {
  border-color: rgba(255, 255, 255, 0.2);
}

.accordion summary {
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.contact {
  background: #e8e0d5;
}

.contact-grid {
  gap: 100px;
}

.contact-copy::before {
  display: block;
  width: 100%;
  min-height: 360px;
  margin-bottom: 48px;
  background: url("assets/images/editorial/private-coaching.jpg") center / cover no-repeat;
  content: "";
}

.contact-form {
  background: #1b1815;
}

input,
select,
textarea {
  border-radius: 0 !important;
}

/* Interior pages */

.page-hero {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 170px 0 96px;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.83), rgba(15, 13, 11, 0.42) 60%, rgba(15, 13, 11, 0.18)),
    url("assets/images/editorial/hero-language-academy.jpg") center / cover no-repeat;
}

.page-hero::after,
.page-hero__motif {
  display: none;
}

.page-hero__grid {
  grid-template-columns: minmax(0, 940px);
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 0;
  color: var(--paper);
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: 22px;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
}

body[data-page="about"] .page-hero,
body[data-page="ceo"] .page-hero,
body[data-page="courses"] .page-hero,
body[data-page="fle"] .page-hero,
body[data-page="clients"] .page-hero {
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.84), rgba(15, 13, 11, 0.38) 68%, rgba(15, 13, 11, 0.1)),
    url("assets/images/editorial/private-coaching.jpg") center / cover no-repeat;
}

body[data-page="certifications"] .page-hero,
body[data-page="delf-dalf-tcf"] .page-hero,
body[data-page="fide-preparation"] .page-hero,
body[data-page="fide-test"] .page-hero,
body[data-page="intensive-program"] .page-hero,
body[data-page="swiss-citizenship"] .page-hero {
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.86), rgba(15, 13, 11, 0.44) 62%, rgba(15, 13, 11, 0.16)),
    url("assets/images/editorial/exam-preparation.jpg") center / cover no-repeat;
}

.editorial-split,
.exact-intro,
.diploma-section__grid,
.intensive-page__grid,
.fide-prep-layout,
.ceo-page__grid {
  gap: 100px;
}

.prose p,
.citizenship-section p,
.diploma-section p,
.intensive-copy p,
.fide-prep-content p,
.fle-page p,
.ceo-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.section--dark p,
.clients-fide p,
.fast-track p,
.fide-offer p {
  color: #c9c1b7;
}

.fide-offer,
.cta-band,
.clients-fide {
  background: #201c18;
}

.cta-band {
  padding: 90px 0;
}

.cta-band h2 {
  max-width: 850px;
}

.exact-feature-list li,
.exact-reason-grid article,
.fide-benefit-grid article,
.format-card,
.language-card,
.cert-card,
.center-card,
.info-card {
  border-radius: 0;
}

.exact-feature-list li,
.fide-benefit-grid article,
.format-card,
.language-card,
.cert-card,
.center-card,
.info-card {
  background: transparent;
  border-color: #c9bfb2;
}

.client-logo-card {
  background: #fffdfa;
  border-color: #d4cbbf;
}

.clients-fide__logo {
  background: #fffdfa;
}

.test-card {
  min-height: 230px;
  border-color: #c8beb0;
}

.test-card h3 {
  font-size: 34px;
}

.language-test-hero {
  min-height: 610px;
}

.language-test-hero::after {
  background: linear-gradient(90deg, rgba(15, 13, 11, 0.8), rgba(15, 13, 11, 0.2));
}

.language-test-hero h1,
.language-test-entry h2 {
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-weight: 400;
}

.language-test-entry h2 {
  color: var(--ink);
}

.test-entry-form input[type="email"] {
  background: #fffdfa;
  border-color: #a99f93;
}

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

.site-footer {
  background: #100e0c;
}

.footer-top {
  min-height: 190px;
  border-bottom-color: #332d27;
}

.footer-top p {
  color: #aaa196;
  font-family: "Bodoni 72", Didot, "Times New Roman", serif;
  font-size: 21px;
}

.footer-bottom {
  padding-top: 32px;
  padding-bottom: 32px;
  color: #958c82;
  letter-spacing: 0.08em;
}

@media (max-width: 1050px) {
  .section {
    padding: 115px 0;
  }

  .hero__grid {
    min-height: 680px;
  }

  .programme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programme-card,
  .programme-card:nth-child(2),
  .programme-card:nth-child(4) {
    min-height: 420px;
    border-top: 1px solid #cfc5b8;
    border-left: 1px solid #cfc5b8;
  }

  .programme-card:nth-child(odd) {
    border-left: 0;
  }

  .method-grid,
  .contact-grid,
  .requirements-grid {
    gap: 65px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .announcement__inner {
    min-height: 32px;
    gap: 12px;
    font-size: 8px;
    text-align: center;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand__text {
    max-width: 180px;
    font-size: 8px;
    letter-spacing: 0.13em;
  }

  .brand__mark {
    width: 48px;
    height: 36px;
  }

  .brand--footer .brand__mark {
    width: 64px;
    height: 48px;
  }

  .main-nav {
    top: 106px;
  }

  .site-header.is-scrolled .main-nav {
    top: 74px;
  }

  .main-nav__inner {
    padding-top: 28px;
  }

  .menu-group__toggle,
  .menu-direct {
    min-height: 58px;
    font-size: 28px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 74px);
  }

  h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    gap: 26px;
    margin-bottom: 54px;
  }

  .hero {
    min-height: 830px;
    background-position: 62% center;
  }

  .hero__grid {
    min-height: 650px;
    padding-top: 100px;
    padding-bottom: 64px;
  }

  .hero__intro {
    font-size: 18px;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 16px;
  }

  .hero__metrics > div,
  .hero__metrics > div:first-child {
    padding: 14px 16px;
    border-top: 1px solid #d8d0c4;
    border-left: 1px solid #d8d0c4;
  }

  .hero__metrics > div:nth-child(odd) {
    border-left: 0;
  }

  .hero__metrics > div:nth-child(-n + 2) {
    border-top: 0;
  }

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

  .programme-card,
  .programme-card:nth-child(2),
  .programme-card:nth-child(4) {
    min-height: 360px;
    border-left: 0;
  }

  .icon-box {
    margin-bottom: 55px;
  }

  .fast-track {
    background-position: 64% center;
  }

  .fast-track__grid {
    min-height: 820px;
  }

  .cefr-visual {
    background: rgba(27, 23, 20, 0.82);
  }

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

  .method-intro::before,
  .contact-copy::before {
    min-height: 330px;
  }

  .journey-list li {
    min-height: 260px;
  }

  .price-card {
    min-height: auto;
  }

  .page-hero {
    min-height: 520px;
    padding: 130px 0 68px;
    background-position: 62% center;
  }

  .page-hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .page-hero p:not(.eyebrow) {
    font-size: 18px;
  }

  .editorial-split,
  .exact-intro,
  .diploma-section__grid,
  .intensive-page__grid,
  .fide-prep-layout,
  .ceo-page__grid {
    gap: 54px;
  }

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

  .test-card {
    min-height: 190px;
  }

  .language-test-hero {
    min-height: 470px;
  }

  .footer-top {
    min-height: 160px;
  }
}

/* Desktop navigation: horizontal hotel-style menu. */
@media (min-width: 1024px) {
  .nav-wrap {
    gap: 30px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav,
  .site-header.is-scrolled .main-nav {
    position: static;
    z-index: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: auto;
    margin-left: auto;
    overflow: visible;
    color: var(--ink);
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .main-nav__inner,
  .main-nav__inner.shell {
    display: block;
    width: auto;
    min-height: 0;
    padding: 0;
  }

  .menu-tree {
    display: flex;
    align-items: stretch;
    gap: clamp(14px, 1.55vw, 28px);
  }

  .menu-group,
  .menu-direct {
    position: relative;
    flex: 0 0 auto;
    border: 0;
  }

  .menu-group__toggle,
  .menu-direct {
    display: flex;
    align-items: center;
    width: auto;
    min-height: 90px;
    padding: 2px 0 0;
    color: var(--ink);
    border: 0;
    font-size: clamp(9px, 0.76vw, 11px);
    font-weight: 650;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .menu-group__toggle {
    justify-content: flex-start;
    gap: 8px;
  }

  .menu-group__toggle::after,
  .menu-direct::after {
    position: absolute;
    right: 0;
    bottom: 23px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }

  .menu-group:hover .menu-group__toggle::after,
  .menu-group:focus-within .menu-group__toggle::after,
  .menu-group.has-current .menu-group__toggle::after,
  .menu-direct:hover::after,
  .menu-direct:focus-visible::after,
  .menu-direct[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .menu-group__chevron {
    width: 6px;
    height: 6px;
    margin: -4px 1px 0 0;
    border-width: 0 1px 1px 0;
  }

  .menu-group.is-open .menu-group__chevron {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .menu-submenu,
  .menu-group.is-open .menu-submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: -22px;
    display: grid;
    min-width: 230px;
    max-height: none;
    padding: 18px 0;
    overflow: visible;
    background: #fff;
    border-top: 1px solid var(--red);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  #menu-programs {
    min-width: 285px;
  }

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

  .menu-submenu > a,
  .menu-group.is-open .menu-submenu > a {
    min-height: 0;
    padding: 10px 22px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 550;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .menu-submenu a:hover,
  .menu-submenu a:focus-visible,
  .menu-submenu a[aria-current="page"] {
    color: var(--ink);
    background: rgba(18, 16, 14, 0.07);
  }

  .menu-contact,
  .menu-actions {
    display: none;
  }
}
