:root {
  --ink: #14212b;
  --muted: #5f6f7a;
  --line: #d9e1e6;
  --paper: #ffffff;
  --soft: #f4f7f5;
  --mist: #e8f0ed;
  --jade: #0f766e;
  --jade-dark: #0c5d58;
  --clay: #a35323;
  --navy: #20364d;
  --shadow: 0 18px 50px rgba(20, 33, 43, 0.12);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: white;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 32px;
  color: white;
  background: linear-gradient(180deg, rgba(10, 21, 29, 0.66), rgba(10, 21, 29, 0.05));
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 13px;
  background: rgba(255,255,255,0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.nav button {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1000;
}

.language-trigger {
  height: 38px;
  min-width: 62px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.14);
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 0 10px;
}

.language-trigger::after { content: " \25BE"; }

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 140px;
  border: 1px solid #d9e2e6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  overflow: hidden;
}
.language-switcher:not(.is-open) .language-menu,
.language-menu[hidden] {
  display: none !important;
}

.language-switcher a,
.nav .language-switcher a {
  display: block;
  color: #102033;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
  background: #ffffff;
}

.language-switcher a.active,
.nav .language-switcher a.active {
  background: #0f766e;
  color: #ffffff;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 10px 15px;
  font-weight: 700;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--jade);
  color: white;
}

.button.light {
  color: white;
  border-color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.12);
}

.hero {
  min-height: 68vh;
  display: grid;
  align-items: end;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,20,28,0.82), rgba(9,20,28,0.42), rgba(9,20,28,0.18));
}

.hero-inner,
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

.hero-inner {
  padding: 120px 0 58px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: #d7ece8;
  margin: 0 0 14px;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.hero p {
  max-width: 650px;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 26px;
}

.hero-subtitle {
  max-width: 760px;
  color: white !important;
  font-size: 22px !important;
  font-weight: 760;
  margin-bottom: 12px !important;
}

section {
  padding: 68px 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.52fr);
  gap: 42px;
  align-items: start;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.panel {
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.panel h3 {
  margin-bottom: 14px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.strong-list {
  color: var(--ink);
}

.strong-list li {
  margin-bottom: 6px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--jade-dark);
  background: var(--mist);
  font-size: 13px;
  font-weight: 760;
}

.soft {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

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

.card {
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 20px;
}

.card span {
  display: block;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

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

.experience-card {
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.experience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(20, 33, 43, 0.11);
}

.experience-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--mist);
}

.experience-copy {
  padding: 18px;
}

.experience-copy h3 {
  margin-bottom: 9px;
}

.experience-copy p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

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

.image-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: var(--mist);
}

.note-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--clay);
  background: #f7ede6;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-subhead {
  margin-top: 28px;
  font-size: 24px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 18px 20px;
}

.timeline span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline p,
.panel p {
  color: var(--muted);
  line-height: 1.6;
}

.timeline p {
  margin-bottom: 0;
}

.cta {
  background: var(--navy);
  color: white;
  padding: 44px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.cta p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
  line-height: 1.55;
}

.site-footer {
  background: #101820;
  color: rgba(255,255,255,0.76);
  padding: 30px 0;
  font-size: 14px;
}

@media (max-width: 860px) {
  .nav a:not(.button) { display: none; }
  .nav .language-switcher,
  .nav .language-switcher a { display: block; }
  .two-col, .grid, .cta, .experience-card-grid { grid-template-columns: 1fr; }
  .cta { display: grid; padding: 28px; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px; }
  .container, .hero-inner { width: min(100% - 28px, 1120px); }
  .hero-inner { padding-bottom: 42px; }
  section { padding: 48px 0; }
  .timeline article { grid-template-columns: 1fr; gap: 6px; }
}
