:root {
  --yellow: #ffc400;
  --yellow-deep: #d9a500;
  --yellow-soft: #fff6ce;
  --ink: #080b0d;
  --ink-2: #101419;
  --ink-3: #1a1f24;
  --paper: #ffffff;
  --canvas: #f5f6f7;
  --line: #dfe3e7;
  --text: #121417;
  --muted: #5f6872;
  --muted-light: #a6aeb6;
  --shell: 1240px;
  --shadow-soft: 0 2px 18px rgba(9, 13, 17, 0.07);
  --shadow-float: 0 18px 46px rgba(9, 13, 17, 0.14);
  --radius: 12px;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - clamp(40px, 8vw, 128px)), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--paper);
  background: rgba(8, 11, 13, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 11, 13, 0.98);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.brand-mark {
  color: var(--yellow);
  font-size: 31px;
  font-weight: 950;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.08em;
}

.brand-name {
  color: var(--paper);
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.primary-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #edf0f2;
  font-size: 13px;
  font-weight: 680;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 12px;
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(255, 196, 0, 0.18);
}

.button-yellow:hover {
  background: #ffd028;
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(8, 11, 13, 0.18);
}

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

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

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center right;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 7, 9, 0.98) 0%, rgba(4, 7, 9, 0.93) 28%, rgba(4, 7, 9, 0.54) 53%, rgba(4, 7, 9, 0.1) 75%),
    linear-gradient(0deg, rgba(3, 5, 7, 0.48) 0%, transparent 38%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 100px;
}

.hero-copy {
  width: min(610px, 54%);
}

.eyebrow {
  margin-bottom: 12px;
  color: #8c6b00;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: var(--yellow);
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 24px;
  color: #e6e9eb;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: #edf0f2;
  font-size: 14px;
  font-weight: 670;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points span,
.check-list span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

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

.benefits {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -54px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(223, 227, 231, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
}

.benefit-card {
  min-height: 164px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 24px;
}

.benefit-card + .benefit-card {
  border-left: 1px solid var(--line);
}

.number-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #8a6800;
  background: var(--yellow-soft);
  border: 1px solid #f5dd80;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.benefit-card h2 {
  margin: 1px 0 7px;
  font-size: 16px;
  line-height: 1.25;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 96px 0;
}

.booking-section {
  padding-top: 108px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 196, 0, 0.07), transparent 25%),
    var(--canvas);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(520px, 1.4fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.section-copy h2,
.section-heading-row h2,
.language-copy h2,
.contact-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 880;
  line-height: 1.06;
}

.accent-text {
  color: #b98d00;
}

.section-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 650;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.booking-card {
  padding: clamp(24px, 3.5vw, 40px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 27px;
}

.micro-label {
  margin-bottom: 5px;
  color: #8a6800;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.card-heading h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.status-chip,
.card-tag,
.role-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  color: #695000;
  background: var(--yellow-soft);
  border: 1px solid #f2dc87;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label,
.time-fieldset legend {
  color: #30363c;
  font-size: 13px;
  font-weight: 760;
}

.field input,
.field select {
  width: 100%;
  min-height: 49px;
  padding: 0 13px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid #cfd5da;
  border-radius: 6px;
}

.field input:hover,
.field select:hover {
  border-color: #a9b1b8;
}

[aria-invalid="true"] {
  border-color: #b42318 !important;
  box-shadow: 0 0 0 2px rgba(180, 35, 24, 0.12);
}

.time-fieldset {
  margin: 24px 0 18px;
  padding: 0;
  border: 0;
}

.time-fieldset legend {
  margin-bottom: 10px;
}

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

.time-option {
  position: relative;
  cursor: pointer;
}

.time-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.time-option span {
  min-height: 47px;
  display: grid;
  place-items: center;
  padding: 9px;
  border: 1px solid #d4d9de;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.time-option:hover span {
  border-color: #9ca5ad;
}

.time-option input:checked + span {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow-deep);
  box-shadow: inset 0 0 0 1px rgba(8, 11, 13, 0.24);
}

.time-option input:focus-visible + span {
  outline: 3px solid var(--yellow-deep);
  outline-offset: 3px;
}

.form-note {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.error-summary,
.selection-result {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 7px;
  font-size: 14px;
}

.error-summary {
  color: #7a271a;
  background: #fef3f2;
  border: 1px solid #fecdca;
}

.error-summary ul {
  margin: 6px 0 0;
  padding-left: 20px;
}

.selection-result {
  margin: 16px 0 0;
  color: #184c32;
  background: #ecfdf3;
  border: 1px solid #abefc6;
}

.selection-result p,
.selection-result small {
  display: block;
  margin: 4px 0 0;
}

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

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

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

.section-heading-row > p {
  max-width: 470px;
  margin: 0 0 4px auto;
  color: var(--muted);
}

.training-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 18px;
}

.training-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  background: #f8f9fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.training-card-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 196, 0, 0.21), transparent 28%),
    var(--ink-2);
  border-color: var(--ink-2);
}

.training-index {
  color: #947100;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.training-card-dark .training-index {
  color: var(--yellow);
}

.training-card h3 {
  margin: 44px 0 12px;
  font-size: 29px;
}

.training-card p {
  margin-bottom: 26px;
  color: var(--muted);
}

.training-card-dark p {
  color: #cbd1d6;
}

.training-card .card-tag {
  margin-top: auto;
}

.language-section {
  overflow: hidden;
  background: var(--canvas);
}

.language-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 196, 0, 0.2), transparent 29%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.language-copy {
  z-index: 2;
  padding: 54px 0 54px 54px;
}

.language-copy > p:not(.eyebrow):not(.persian-copy) {
  max-width: 520px;
  color: var(--muted);
}

.persian-copy {
  max-width: 480px;
  margin: 22px 0;
  padding: 14px 16px;
  color: #2c3338;
  background: #f7f8f9;
  border-right: 4px solid var(--yellow);
  border-radius: 6px;
  font-size: 16px;
  text-align: right;
}

.language-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 70px 20px 0;
}

.language-visual::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 80%;
  height: 35%;
  background: rgba(255, 196, 0, 0.13);
  border-radius: 50%;
  filter: blur(30px);
}

.language-visual img {
  position: relative;
  z-index: 1;
  width: min(720px, 112%);
  max-width: none;
  margin-bottom: -15%;
  object-fit: contain;
}

.speech-bubble {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 28px;
  min-width: 190px;
  padding: 13px 18px;
  background: var(--paper);
  border: 1px solid var(--ink-2);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  text-align: center;
}

.speech-bubble small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

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

.leadership-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 24px 28px 24px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.leadership-monogram {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 196, 0, 0.3), transparent 25%),
    linear-gradient(145deg, #11161a, #2d343a);
  border-radius: 9px;
}

.leadership-monogram span {
  position: relative;
  z-index: 2;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.leadership-monogram i {
  position: absolute;
  right: -25px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  background: var(--yellow);
  border-radius: 50%;
}

.leadership-copy h3 {
  margin: 9px 0 7px;
  font-size: 27px;
}

.leadership-copy p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 820;
}

.text-link span {
  color: var(--yellow-deep);
  font-size: 20px;
}

.contact-cta {
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 196, 0, 0.16), transparent 24%),
    var(--ink-2);
}

.contact-cta-inner {
  min-height: 380px;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: center;
  gap: 80px;
  padding-block: 74px;
}

.contact-cta h2 {
  margin-bottom: 0;
}

.contact-cta-side p {
  margin-bottom: 24px;
  color: #cbd1d6;
}

.site-footer {
  color: #d6dbe0;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr 1fr;
  gap: 54px;
  padding-block: 64px 52px;
}

.footer-brand p,
.footer-status p {
  max-width: 270px;
  margin: 20px 0 0;
  color: var(--muted-light);
  font-size: 14px;
}

.site-footer h2 {
  margin-bottom: 15px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li,
.site-footer a {
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--yellow);
}

.status-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 7px 11px;
  color: #e4e8eb;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status-pill i {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8e979f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.has-js .reveal,
.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 15px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .brand-name {
    display: none;
  }

  .hero-copy {
    width: min(620px, 62%);
  }

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

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

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

  .booking-grid {
    gap: 48px;
  }

  .language-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .primary-nav {
    justify-self: end;
  }

  .hero {
    min-height: 640px;
  }

  .hero-inner {
    min-height: 640px;
  }

  .hero-copy {
    width: min(650px, 72%);
  }

  .booking-grid,
  .section-heading-row,
  .contact-cta-inner {
    grid-template-columns: 1fr;
  }

  .booking-grid {
    align-items: stretch;
  }

  .section-copy {
    max-width: 620px;
  }

  .section-heading-row {
    gap: 16px;
  }

  .section-heading-row > p {
    margin-left: 0;
  }

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

  .training-card-dark {
    grid-column: span 2;
  }

  .language-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .language-copy {
    padding: 48px 48px 0;
  }

  .language-visual {
    min-height: 390px;
    padding-top: 62px;
  }

  .language-visual img {
    width: min(700px, 90%);
  }

  .leadership-card {
    grid-template-columns: 130px 1fr;
  }

  .leadership-card .text-link {
    grid-column: 2;
  }

  .contact-cta-inner {
    gap: 26px;
  }

  .contact-cta-side {
    max-width: 580px;
  }

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

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

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

  .header-inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .brand-name {
    display: inline;
    max-width: 150px;
    white-space: normal;
    line-height: 1.15;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--paper);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    cursor: pointer;
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .menu-toggle-lines {
    display: grid;
    gap: 5px;
  }

  .menu-toggle-lines i {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

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

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 68px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 68px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 14px 16px 24px;
    overflow-y: auto;
    background: rgba(8, 11, 13, 0.99);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 200ms ease, visibility 200ms ease;
  }

  .menu-open .primary-nav {
    transform: translateY(0);
    visibility: visible;
  }

  .menu-open {
    overflow: hidden;
  }

  .primary-nav a {
    min-height: 52px;
    padding: 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 15px;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-media {
    object-position: 69% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(4, 7, 9, 0.97) 0%, rgba(4, 7, 9, 0.8) 58%, rgba(4, 7, 9, 0.42) 100%),
      linear-gradient(0deg, rgba(3, 5, 7, 0.82) 0%, rgba(3, 5, 7, 0.12) 60%);
  }

  .hero-inner {
    align-items: flex-end;
    padding: 120px 0 64px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-lead {
    max-width: 560px;
    font-size: 17px;
  }

  .benefits {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .benefit-card {
    min-height: 0;
    padding: 23px 20px;
  }

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

  .section {
    padding: 76px 0;
  }

  .booking-section {
    padding-top: 76px;
  }

  .form-grid,
  .training-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .training-card-dark {
    grid-column: auto;
  }

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

  .language-copy {
    padding: 38px 28px 0;
  }

  .language-visual {
    min-height: 330px;
    padding-inline: 0;
  }

  .language-visual img {
    width: 112%;
  }

  .speech-bubble {
    top: 20px;
    right: 16px;
  }

  .leadership-card {
    grid-template-columns: 92px 1fr;
    gap: 20px;
    padding: 20px;
  }

  .leadership-copy h3 {
    font-size: 22px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
  }
}

@media (max-width: 520px) {
  .brand-name {
    font-size: 12px;
  }

  .brand-mark {
    font-size: 27px;
  }

  .hero-points {
    display: grid;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .booking-card {
    margin-inline: -4px;
    padding: 22px 18px;
  }

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

  .section-heading-row h2,
  .section-copy h2,
  .language-copy h2,
  .contact-cta h2 {
    font-size: 36px;
  }

  .leadership-card {
    grid-template-columns: 1fr;
  }

  .leadership-monogram {
    width: 100px;
  }

  .leadership-card .text-link {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
