:root {
  --burgundy: #8A0D1E;
  --navy: #0A2342;
  --ink: #333333;
  --muted: #515151;
  --soft: #F5F5F5;
  --line: #CCCCCC;
  --white: #FFFFFF;
  --focus: #B10F28;
  font-family: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

html[dir="rtl"] body {
  text-align: right;
}

a {
  color: var(--navy);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  left: 1rem;
  position: absolute;
  top: -4rem;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
}

.site-header__inner,
.site-footer__inner,
.section__inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 82px;
}

.brand-logo {
  display: inline-flex;
}

.brand-logo img {
  height: 58px;
  width: 150px;
}

.nav-toggle {
  background: var(--navy);
  border: 0;
  color: var(--white);
  display: none;
  font-weight: 700;
  padding: .7rem .9rem;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--burgundy);
}

.language-control {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  margin-left: auto;
}

html[dir="rtl"] .language-control {
  margin-left: 0;
  margin-right: auto;
}

.language-control span {
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  font-size: .74rem;
  font-weight: 800;
  min-width: 38px;
  padding: .45rem .55rem;
  justify-content: center;
}

.language-control select,
.language-modal select {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  max-width: 190px;
  min-height: 40px;
  padding: .45rem .55rem;
}

.language-modal {
  align-items: center;
  background: rgba(10, 35, 66, .62);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 20;
}

.language-modal__panel {
  background: var(--white);
  border-top: 6px solid var(--burgundy);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  max-width: 520px;
  padding: 28px;
  width: 100%;
}

.language-modal__panel h2 {
  font-size: 1.7rem;
}

.language-modal__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero {
  background: var(--soft);
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.35) 56%, rgba(255,255,255,0) 76%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

html[dir="rtl"] .hero::before {
  background: linear-gradient(270deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.35) 56%, rgba(255,255,255,0) 76%);
}

.hero::after {
  background: linear-gradient(135deg, rgba(138,13,30,.92), rgba(10,35,66,.2));
  clip-path: polygon(82% 0, 100% 0, 100% 100%, 70% 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

html[dir="rtl"] .hero::after {
  clip-path: polygon(0 0, 18% 0, 30% 100%, 0 100%);
}

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

.hero__content {
  margin: 0 auto;
  max-width: 1180px;
  min-height: 660px;
  padding: 128px 24px 72px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  color: var(--burgundy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
  font-weight: 800;
  max-width: 760px;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 800;
}

h3 {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 720px;
}

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

.button {
  align-items: center;
  background: var(--burgundy);
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: .8rem 1.1rem;
  text-decoration: none;
}

.button--secondary {
  background: var(--navy);
}

.section {
  padding: 76px 0;
}

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

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

.section--navy h2,
.section--navy h3,
.section--navy .lead {
  color: var(--white);
}

.section__header {
  margin-bottom: 34px;
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--burgundy);
  border-radius: 6px;
  min-height: 190px;
  padding: 24px;
}

.section--navy .card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}

.icon-card__mark {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  min-width: 56px;
  padding: 0 14px;
  transform: skewX(-16deg);
  white-space: nowrap;
}

.icon-card__mark span {
  display: block;
  transform: skewX(16deg);
}

.split {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
}

.diagonal-panel {
  background: var(--navy);
  color: var(--white);
  min-height: 340px;
  overflow: hidden;
  padding: 42px;
  position: relative;
}

.diagonal-panel::after {
  background: rgba(138,13,30,.82);
  clip-path: polygon(55% 0, 100% 0, 80% 100%, 30% 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.diagonal-panel > * {
  position: relative;
  z-index: 1;
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 18px;
}

.timeline__item {
  border-left: 4px solid var(--burgundy);
  padding-left: 20px;
}

html[dir="rtl"] .timeline__item {
  border-left: 0;
  border-right: 4px solid var(--burgundy);
  padding-left: 0;
  padding-right: 20px;
}

.disclosure {
  background: #fff8f8;
  border-left: 6px solid var(--burgundy);
  color: var(--ink);
  padding: 18px 22px;
}

html[dir="rtl"] .disclosure {
  border-left: 0;
  border-right: 6px solid var(--burgundy);
}

.article-meta {
  color: var(--burgundy);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.contact-form label {
  display: grid;
  font-weight: 700;
  gap: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line);
  font: inherit;
  padding: .8rem;
}

.contact-form textarea,
.contact-form .full,
.contact-form__actions {
  grid-column: 1 / -1;
}

.checkbox-row {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.site-footer {
  background: #111;
  color: var(--white);
  padding: 44px 0;
}

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

.site-footer__inner {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.5fr 2fr;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

html[dir="rtl"] .footer-links {
  justify-content: flex-start;
}

.legal-copy {
  max-width: 860px;
}

@media (max-width: 900px) {
  .site-header__inner {
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: var(--white);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 20px 24px;
    position: absolute;
    right: 0;
    top: 82px;
  }

  .language-control {
    order: 2;
  }

  .nav-toggle {
    order: 3;
  }

  .site-nav.is-open {
    display: flex;
  }

  .grid--3,
  .grid--4,
  .split,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero__content {
    min-height: 600px;
  }

  .hero__content {
    padding-top: 90px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
