:root {
  --brand-blue: #303C4C;
  --brand-gold: #B79746;
  --navy-950: #061f3d;
  --navy-900: #082c55;
  --navy-800: #123f70;
  --blue-600: #0f6f9f;
  --blue-100: #e9f4fa;
  --gold-500: #c8a34a;
  --gold-400: #d8b85f;
  --gold-text: #7b6328;
  --ink: #18334f;
  --muted: #5e6f80;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --line: #dce4eb;
  --success: #166b4b;
  --font-sans: Inter, "Segoe UI", Arial, Tahoma, sans-serif;
  --content: 1200px;
  --reading: 760px;
  --header-height: 92px;
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-sm: 0 10px 30px rgba(6, 31, 61, .08);
  --shadow-lg: 0 24px 60px rgba(6, 31, 61, .16);
  --transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--paper); outline-offset: 2px; box-shadow: 0 0 0 5px var(--navy-950); scroll-margin-block: calc(var(--header-height) + 1rem) 1rem; }

.skip-link {
  position: fixed;
  inset-block-start: .75rem;
  inset-inline-start: .75rem;
  z-index: 999;
  padding: .65rem 1rem;
  color: var(--navy-950);
  background: var(--gold-400);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 4rem), var(--content)); margin-inline: auto; }
.reading { width: min(100%, var(--reading)); }
section[id] { scroll-margin-top: calc(var(--header-height) + 1rem); }

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-block-end: 1px solid rgba(6, 31, 61, .08);
  backdrop-filter: blur(12px);
}
.header-shell {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr) auto auto;
  grid-template-areas: "logo nav languages cta";
  align-items: center;
  gap: clamp(.75rem, 1.5vw, 1.6rem);
  direction: ltr;
}
.brand { grid-area: logo; display: inline-flex; width: 180px; }
.brand-media { display: block; width: 100%; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.main-nav { grid-area: nav; min-width: 0; }
.main-nav ul, .language-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.main-nav ul { justify-content: center; gap: clamp(.9rem, 1.35vw, 1.55rem); }
.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--navy-900);
  font-size: .78rem;
  font-weight: 750;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -.45rem;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.language-nav { grid-area: languages; }
.language-list { gap: .15rem; direction: ltr; }
.language-list li + li::before { content: "|"; color: #aab5bf; }
.language-list a {
  padding: .4rem .38rem;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 750;
  color: var(--muted);
  white-space: nowrap;
}
.language-list a[aria-current="page"] { color: var(--navy-900); text-decoration: underline; text-decoration-color: var(--gold-500); text-underline-offset: .35rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.15rem;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-sm);
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.button:hover { background: var(--gold-400); border-color: var(--gold-400); transform: translateY(-1px); }
.button--outline { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.55); }
.button--outline:hover { background: var(--paper); border-color: var(--paper); color: var(--navy-950); }
.desktop-cta { grid-area: cta; white-space: nowrap; }
.menu-toggle { display: none; grid-area: toggle; width: 48px; height: 48px; border: 0; border-radius: var(--radius-sm); background: var(--navy-900); color: #fff; cursor: pointer; }
.menu-toggle__lines, .menu-toggle__lines::before, .menu-toggle__lines::after { width: 20px; height: 2px; background: currentColor; display: block; position: relative; transition: transform var(--transition), opacity var(--transition); }
.menu-toggle__lines::before, .menu-toggle__lines::after { content: ""; position: absolute; inset-inline-start: 0; }
.menu-toggle__lines::before { transform: translateY(-6px); }
.menu-toggle__lines::after { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after { transform: rotate(-45deg); }
.mobile-nav-cta { display: none; }

.hero {
  position: relative;
  min-height: min(710px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy-900);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(216, 184, 95, .14);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: 560px; height: 560px; inset-inline-end: -110px; inset-block-start: -260px; }
.hero::after { width: 420px; height: 420px; inset-inline-end: 90px; inset-block-end: -260px; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); padding-block: clamp(5rem, 9vw, 8rem); }
.eyebrow { margin: 0 0 1rem; color: var(--blue-600); font-size: .72rem; font-weight: 900; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }
.hero .eyebrow { color: var(--gold-400); }
h1, h2, h3 { margin-block: 0; color: var(--navy-900); line-height: 1.12; letter-spacing: -.025em; }
h1 { max-width: 850px; color: var(--paper); font-size: clamp(2.65rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.5rem); }
h3 { font-size: 1.18rem; }
.hero-copy { margin: 1.5rem 0 0; max-width: 740px; color: #d8e3ee; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-block-start: 2rem; }
.positioning { margin: 2rem 0 0; padding-inline-start: 1rem; border-inline-start: 3px solid var(--gold-500); color: #e5edf5; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-brand-panel {
  width: clamp(280px, 20vw, 350px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  justify-self: center;
  align-self: center;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 31, 61, .12);
  line-height: 0;
  box-sizing: border-box;
}
.hero-mark {
  display: block;
  width: 86%;
  height: 86%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  margin: 0;
  padding: 0;
  transform: none;
}

.section { padding-block: var(--section-space); }
.section--soft { background: var(--soft); }
.section--navy { background: var(--navy-900); color: var(--paper); }
.section-header { margin-block-end: clamp(2rem, 4vw, 3.75rem); }
.section-header p { margin-block-end: 0; color: var(--muted); }
.section--navy h2, .section--navy h3 { color: var(--paper); }
.section--navy .eyebrow { color: var(--gold-400); }
.section--navy .section-header p { color: #cedae5; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.intro-copy p { color: var(--muted); }
.intro-panel { padding: clamp(1.75rem, 4vw, 3rem); background: var(--navy-900); color: var(--paper); box-shadow: var(--shadow-lg); }
.intro-panel strong { display: block; color: var(--gold-400); font-size: 1.1rem; }
.intro-panel p { margin-block-end: 0; color: #cedae5; }
.highlight-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 2rem 0 0; padding: 0; list-style: none; border-block: 1px solid var(--line); }
.highlight-list li { padding: 1rem .75rem; text-align: center; font-weight: 800; font-size: .84rem; }
.highlight-list li + li { border-inline-start: 1px solid var(--line); }

.vision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.vision-card { min-width: 0; padding: clamp(1.75rem, 4vw, 3.5rem); background: var(--soft); }
.vision-card h3 { margin-block: .55rem 1rem; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.vision-card p { margin-block-end: 0; color: var(--muted); }
.statement { margin: 2rem 0 0; padding-inline-start: 1rem; border-inline-start: 3px solid var(--gold-500); font-weight: 750; }

.cards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cards--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cards--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards--six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { min-width: 0; padding: clamp(1.4rem, 2.6vw, 2.2rem); background: var(--paper); }
.card-number { margin: 0 0 1.2rem; color: var(--gold-text); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.card h3 { margin-block-end: .75rem; }
.card p:last-child { margin-block-end: 0; color: var(--muted); font-size: .94rem; }
.section--soft .card { background: var(--paper); }

.timeline { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.25rem; }
.timeline::before { content: ""; position: absolute; inset-inline: 7%; inset-block-start: 28px; height: 2px; background: var(--gold-500); }
.step { position: relative; min-width: 0; text-align: center; }
.step-number { position: relative; z-index: 1; width: 56px; height: 56px; margin: 0 auto 1.2rem; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--gold-400); font-size: .74rem; font-weight: 900; }
.step h3 { margin-block-end: .6rem; }
.step p { margin: 0; color: var(--muted); font-size: .9rem; }
.timeline-end { margin: 2.5rem 0 0; text-align: center; font-weight: 800; }

.leadership-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); align-items: stretch; }
.leadership-grid:has(.leader-profile[open]) { align-items: start; }
.leader-card { min-width: 0; display: grid; grid-template-rows: auto 1fr; border: 1px solid var(--line); background: var(--paper); }
.leader-photo { width: 100%; height: auto; aspect-ratio: 7 / 9; object-fit: cover; object-position: center; }
.leadership-copy { min-width: 0; display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.25rem); }
.leadership-copy h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); }
.role { min-height: 3.4em; margin: .5rem 0 1.25rem; color: var(--blue-600); font-weight: 800; }
.leadership-summary, .leader-profile__body p { color: var(--muted); }
.leadership-summary { margin-block: 0 1.25rem; }
.leader-profile { margin-block-start: auto; border-block: 1px solid var(--line); }
.leader-profile summary { padding-block: .85rem; color: var(--navy-900); font-weight: 800; cursor: pointer; }
.leader-profile__body { padding-block: .25rem 1rem; }
.leader-profile__body p { margin-block: 0 1rem; }
.leader-profile__body p:last-child { margin-block-end: 0; }
.leader-card .tags { margin-block-start: 1.5rem; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-block-start: 1.5rem; padding: 0; list-style: none; }
.tag { padding: .35rem .65rem; border: 1px solid var(--line); background: var(--paper); font-size: .72rem; font-weight: 750; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.contact-grid h2 { color: var(--paper); }
.contact-grid p { color: #d4e0ea; }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li + li { margin-block-start: .8rem; }
.contact-list a { color: var(--paper); text-decoration-color: var(--gold-400); text-underline-offset: .25rem; }
.contact-list span { display: block; color: var(--gold-400); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.site-footer { padding-block: 2.5rem; background: var(--navy-950); color: #cbd8e4; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.footer-brand { width: 170px; height: auto; }
.footer-copy { margin: .7rem 0 0; font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem; }
.footer-links a { font-size: .82rem; text-underline-offset: .25rem; }

.legal-hero { padding-block: clamp(4rem, 8vw, 7rem); background: var(--navy-900); color: var(--paper); }
.legal-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.legal-hero p { max-width: 720px; color: #d5e1eb; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(2rem, 7vw, 6rem); align-items: start; }
.legal-content h2 { margin-block: 2.5rem 1rem; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.legal-content h2:first-child { margin-block-start: 0; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-note { position: sticky; top: calc(var(--header-height) + 2rem); padding: 1.5rem; border-inline-start: 4px solid var(--gold-500); background: var(--soft); }
.legal-note h2 { font-size: 1.1rem; }
.legal-note p { margin-block-end: 0; color: var(--muted); font-size: .9rem; }

html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .brand img, html[dir="rtl"] .footer-brand, html[dir="rtl"] .hero-mark { transform: none; }
html[dir="rtl"] .main-nav { direction: rtl; }
html[dir="rtl"] .hero-grid, html[dir="rtl"] .intro-grid, html[dir="rtl"] .vision-grid,
html[dir="rtl"] .cards, html[dir="rtl"] .leadership-grid, html[dir="rtl"] .contact-grid,
html[dir="rtl"] .legal-layout { direction: rtl; }
html[dir="rtl"] .timeline { direction: rtl; }
html[dir="rtl"] .contact-list a[dir="ltr"] { display: inline-block; }

@media (max-width: 1149px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 2.5rem), var(--content)); }
  .header-shell { grid-template-columns: minmax(150px, 1fr) auto 48px; grid-template-areas: "logo languages toggle"; }
  .brand { width: 160px; }
  .desktop-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav { position: absolute; inset-inline: 0; inset-block-start: 100%; padding: 1rem 1.25rem 1.25rem; background: var(--paper); border-block-end: 1px solid var(--line); box-shadow: var(--shadow-lg); }
  .js .main-nav { visibility: hidden; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity var(--transition), transform var(--transition), visibility var(--transition); }
  .js .main-nav[data-open="true"] { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { display: grid; gap: 0; justify-content: stretch; }
  .main-nav li { border-block-end: 1px solid var(--line); }
  .main-nav a { display: flex; min-height: 48px; align-items: center; font-size: .92rem; white-space: normal; }
  .main-nav a::after { display: none; }
  .main-nav .mobile-nav-cta { display: block; padding-block-start: 1rem; border: 0; }
  .main-nav .mobile-nav-cta a { justify-content: center; color: var(--navy-950); }
  .hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 2.5rem; }
  .hero-brand-panel { width: clamp(230px, 30vw, 300px); }
  .cards--five { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 899px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; padding-block: 4.5rem; }
  .hero-brand-panel { order: -1; justify-self: center; }
  .leadership-grid { width: min(100%, 720px); grid-template-columns: 1fr; margin-inline: auto; }
  .role { min-height: 0; }
}

@media (max-width: 767px) {
  .container { width: min(calc(100% - 2rem), var(--content)); }
  .header-shell { grid-template-columns: minmax(128px, 1fr) auto 48px; gap: .5rem; }
  .brand { width: 145px; }
  .language-list a { font-size: .66rem; padding-inline: .24rem; }
  .hero-brand-panel { width: min(100%, clamp(190px, 58vw, 250px)); }
  h1 { font-size: clamp(2.5rem, 13vw, 4.3rem); }
  .hero-actions .button { width: 100%; }
  .intro-grid, .vision-grid, .leadership-grid, .contact-grid, .legal-layout { grid-template-columns: 1fr; }
  .highlight-list { grid-template-columns: 1fr; }
  .highlight-list li + li { border-inline-start: 0; border-block-start: 1px solid var(--line); }
  .cards--five, .cards--four, .cards--six { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { inset-inline-start: 27px; inset-inline-end: auto; inset-block: 0; width: 2px; height: auto; }
  html[dir="rtl"] .timeline::before { inset-inline-start: auto; inset-inline-end: 27px; }
  .step { display: grid; grid-template-columns: 56px minmax(0, 1fr); column-gap: 1.25rem; padding-block-end: 2rem; text-align: start; }
  .step-number { grid-row: span 2; margin: 0; }
  .step h3 { align-self: end; }
  .step p { align-self: start; }
  .legal-note { position: static; order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  html[dir="rtl"] .footer-links { justify-content: flex-end; }
}

@media (max-width: 389px) {
  .container { width: min(calc(100% - 1.5rem), var(--content)); }
  .brand { width: 136px; }
  .header-shell { grid-template-columns: minmax(116px, 1fr) auto 44px; }
  .menu-toggle { width: 44px; height: 44px; }
  .language-list a { font-size: .61rem; padding-inline: .18rem; }
  .hero-grid { padding-block: 3.75rem; }
  .section { padding-block: 4rem; }
}

@media (max-width: 359px) {
  .header-shell { grid-template-columns: minmax(44px, 1fr) auto 44px; }
  .brand { width: 44px; }
}

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