:root {\r\n  --bg: #ffffff;\r\n  --ink: #0b1b3f;\r\n  --muted: #4a5877;\r\n  --accent: #0b2f86;\r\n  --accent-dark: #07245f;\r\n  --accent-2: #f06a6f;\r\n  --card: #ffffff;\r\n  --border: #dbe3f2;\r\n  --shadow: 0 20px 60px rgba(8, 18, 40, 0.12);\r\n}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 45%, #ffffff 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(11, 47, 134, 0.08), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(11, 47, 134, 0.05), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 10;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  background: rgba(245, 247, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.6s ease both;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-mark {
  width: 120px;
  height: 72px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 120px;
  height: 72px;
  animation: floatLogo 6s ease-in-out infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  white-space: nowrap;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  position: relative;
}

.site-nav a:hover {
  border-color: var(--accent-2);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--accent-2);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.lang-switch {
  display: grid;
  gap: 6px;
  align-items: center;
}

.lang-select {
  border: 1px solid rgba(11, 47, 134, 0.25);
  background:
    linear-gradient(135deg, rgba(11, 47, 134, 0.08), rgba(226, 35, 42, 0.06)),
    #ffffff;
  color: var(--ink);
  padding: 8px 38px 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 140px;
  appearance: none;
  position: relative;
  box-shadow: 0 10px 24px rgba(8, 18, 40, 0.08);
}

.lang-select:focus {
  outline: 2px solid rgba(11, 47, 134, 0.25);
  outline-offset: 2px;
}

.native-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.lang-dropdown {
  position: relative;
}

.lang-trigger {
  border: 1px solid rgba(11, 47, 134, 0.25);
  background:
    linear-gradient(135deg, rgba(11, 47, 134, 0.08), rgba(226, 35, 42, 0.06)),
    #ffffff;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(8, 18, 40, 0.08);
}

.lang-trigger .lang-name {
  color: var(--ink);
  font-weight: 600;
}

.lang-caret {
  margin-left: auto;
  color: var(--accent);
  font-size: 0.75rem;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  margin: 0;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 20px 50px rgba(8, 18, 40, 0.18);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-menu li {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.lang-menu li:hover {
  background: rgba(11, 47, 134, 0.08);
}

.lang-menu li.active {
  background: rgba(226, 35, 42, 0.12);
  color: var(--accent);
}

.lang-name {
  color: var(--ink);
  font-weight: 600;
}

.hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 47, 134, 0.18), transparent 70%);
  z-index: 0;
}

.hero::before {
  top: -140px;
  right: -120px;
}

.hero::after {
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(226, 35, 42, 0.2), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-visual {
  margin: 0;
  background: #ffffff;
  border-radius: 22px;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-visual figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

h1, h2, h3 {
  font-family: "Fraunces", serif;
  margin-top: 10px;
  margin-bottom: 12px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: var(--accent);
  color: rgba(226, 35, 42, 0.8);
  box-shadow: 0 14px 30px rgba(11, 47, 134, 0.25);
}

.btn.primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 16px 34px rgba(11, 47, 134, 0.3);
}

.btn.ghost {
  background: rgba(11, 47, 134, 0.08);
  color: var(--accent);
  border-color: rgba(11, 47, 134, 0.18);
}

.hero-highlights {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  font-size: 1.1rem;
  font-weight: 600;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(8, 18, 40, 0.18);
}

.hero-card-grid {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.hero-card .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-card .value {
  font-weight: 600;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.section.accent {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.section.media {
  background: #ffffff;
}

.section-header {
  margin-bottom: 32px;
  max-width: 800px;
}

.section-lead {
  color: var(--muted);
}

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

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(8, 18, 40, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(8, 18, 40, 0.14);
  border-color: rgba(11, 47, 134, 0.35);
}

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

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

.media-card {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8, 18, 40, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.media-card figcaption {
  padding: 16px 18px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(8, 18, 40, 0.14);
}

.list {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 8px;
}

.steps {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

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

.presence-visual {
  margin: 22px 0 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8, 18, 40, 0.08);
}

.presence-visual img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.presence-visual figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 18, 40, 0.12);
}

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

.contact-card p {
  margin: 8px 0;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.offices-header {
  margin-top: 40px;
}

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

.site-footer {
  background: #081733;
  color: #f5f7fb;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.muted {
  color: #a9b7d1;
  font-size: 0.9rem;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .lang-switch {
  direction: ltr;
}

@media (max-width: 720px) {
  html[dir="rtl"] .lang-menu {
    left: auto;
    right: 0;
  }
}

@media (max-width: 1300px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .grid-3,
  .grid-2,
  .cards,
  .presence-grid,
  .contact-grid,
  .office-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .lang-switch {
    justify-self: end;
  }

  .brand-mark {
    width: 96px;
    height: 60px;
  }

  .brand-mark svg {
    width: 96px;
    height: 60px;
  }

  .lang-select {
    min-width: 110px;
    padding: 6px 30px 6px 10px;
    font-size: 0.8rem;
  }

  .lang-trigger {
    min-width: 120px;
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .lang-menu {
    left: 0;
    right: auto;
    min-width: 180px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}


