@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --navy-950: #0a1628;
  --navy-900: #0f2744;
  --navy-800: #1a3a5c;
  --navy-700: #234a73;
  --gold: #c9a227;
  --gold-light: #d4b44a;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f6;
  --gray-200: #e4e8ed;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-800: #2a2f36;
  --gray-900: #1a1d21;
  --white: #fff;
  --font-head: "Barlow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1180px;
  --header-h: 80px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.14);
  --ease: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
body.nav-open { overflow: hidden; }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-950);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.2rem; }
p { color: var(--gray-500); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--gray-800); }

.section { padding: 5rem 0; }
.section--sm { padding: 3.5rem 0; }
.section--muted { background: var(--gray-50); }
.section--dark {
  background: linear-gradient(155deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}
.section--dark h2, .section--dark h3, .section--dark p, .section--dark .lead { color: inherit; }
.section--dark p { opacity: 0.82; }

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-intro {
  max-width: 38rem;
  margin-bottom: 3rem;
}
.section-intro--center {
  text-align: center;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.btn--primary:hover { background: var(--navy-700); }
.btn--accent { background: var(--gold); color: var(--navy-950); border-color: var(--gold); }
.btn--accent:hover { background: var(--gold-light); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn--outline:hover { background: rgba(255,255,255,0.08); }
.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--gray-200); }
.btn--ghost:hover { background: var(--gray-50); }
.btn--block { display: flex; width: 100%; margin-top: 1.5rem; }

/* Header — overlays hero on .has-hero pages, solid on .no-hero pages */
#site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
#site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
}

/* Transparent header integrated into hero */
body.has-hero #site-header:not(.is-scrolled) {
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(10, 22, 40, 0.45) 55%,
    transparent 100%
  );
  border-bottom: none;
  box-shadow: none;
}
body.has-hero #site-header:not(.is-scrolled) .header__name strong,
body.has-hero #site-header:not(.is-scrolled) .nav__link,
body.has-hero #site-header:not(.is-scrolled) .nav__trigger {
  color: rgba(255, 255, 255, 0.95);
}
body.has-hero #site-header:not(.is-scrolled) .header__name small {
  color: rgba(255, 255, 255, 0.62);
}
body.has-hero #site-header:not(.is-scrolled) .nav__link:hover,
body.has-hero #site-header:not(.is-scrolled) .nav__trigger:hover,
body.has-hero #site-header:not(.is-scrolled) .nav__item--drop.is-open .nav__trigger {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
body.has-hero #site-header:not(.is-scrolled) .nav__link.is-active,
body.has-hero #site-header:not(.is-scrolled) .nav__trigger.is-active {
  color: var(--gold-light);
}
body.has-hero #site-header:not(.is-scrolled) .nav__chev {
  opacity: 0.75;
}
body.has-hero #site-header:not(.is-scrolled) .header__toggle span {
  background: var(--white);
}
body.has-hero #site-header:not(.is-scrolled) .lang-switch {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}
body.has-hero #site-header:not(.is-scrolled) .lang-switch__btn {
  color: rgba(255, 255, 255, 0.82);
}
body.has-hero #site-header:not(.is-scrolled) .lang-switch__btn.is-active {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}
body.has-hero #site-header:not(.is-scrolled) .lang-switch__sep {
  background: rgba(255, 255, 255, 0.28);
}
body.has-hero #site-header:not(.is-scrolled) .nav__contact {
  background: var(--gold);
  color: var(--navy-950);
  border-color: var(--gold);
}
body.has-hero #site-header:not(.is-scrolled) .nav__contact:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
body.has-hero #site-header:not(.is-scrolled) .nav__contact.is-active {
  background: var(--gold-light);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}
body.has-hero #site-header:not(.is-scrolled) .header__brand:hover .header__name strong {
  color: var(--white);
}
body.has-hero #site-header.is-scrolled .header__name strong,
body.has-hero #site-header.is-scrolled .nav__link,
body.has-hero #site-header.is-scrolled .nav__trigger {
  color: var(--gray-800);
}
body.has-hero #site-header.is-scrolled .header__name small {
  color: var(--gray-500);
}
body.has-hero #site-header.is-scrolled .header__toggle span {
  background: var(--navy-950);
}
.header__inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 0;
}
.header__brand:hover .header__name strong { color: var(--navy-800); }
.header__brand img { width: 44px; height: 44px; object-fit: contain; }
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}
.header__name { display: none; line-height: 1.2; }
.header__name strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.0625rem;
  color: var(--navy-950);
}
.header__name small {
  display: block;
  font-size: 0.625rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav { display: none; justify-self: center; }
.nav__list { display: flex; align-items: center; gap: 0.0625rem; }
.nav__link, .nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: color var(--ease), background var(--ease);
}
.nav__contact {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--navy-800);
  border: 1px solid var(--navy-800);
  border-radius: 999px;
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.nav__contact:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.15);
}
.nav__contact.is-active {
  background: var(--navy-950);
  border-color: var(--navy-950);
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.1875rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
}
.lang-switch__btn {
  min-width: 2.25rem;
  padding: 0.3125rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  border-radius: 999px;
  transition: color var(--ease), background var(--ease);
}
.lang-switch__btn:hover { color: var(--navy-800); }
.lang-switch__btn.is-active {
  background: var(--white);
  color: var(--navy-950);
  box-shadow: 0 1px 3px rgba(10, 22, 40, 0.08);
}
.lang-switch__sep {
  width: 1px;
  height: 0.875rem;
  background: var(--gray-300);
  flex-shrink: 0;
}
.nav__link:hover, .nav__trigger:hover, .nav__item--drop.is-open .nav__trigger {
  color: var(--navy-800);
  background: var(--gray-50);
}
.nav__link:focus-visible, .nav__trigger:focus-visible, .nav__contact:focus-visible,
.lang-switch__btn:focus-visible, .header__toggle:focus-visible, .header__brand:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.nav__link.is-active, .nav__trigger.is-active { color: var(--navy-800); }
.nav__chev { transition: transform var(--ease); opacity: 0.5; }
.nav__item--drop.is-open .nav__chev { transform: rotate(180deg); }
.nav__item--drop { position: relative; }
.nav__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 100;
}
.nav__item--wide .nav__panel { min-width: 520px; max-width: min(580px, calc(100vw - 2rem)); }
.nav__item--drop.is-open .nav__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__panel-inner { padding: 0.5rem; }
.nav__panel-inner--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0.125rem; }
.nav__panel-link {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: calc(var(--radius) - 1px);
  transition: background var(--ease);
}
.nav__panel-link:hover { background: var(--gray-50); }
.nav__panel-link strong { display: block; font-size: 0.9rem; color: var(--navy-950); margin-bottom: 0.1rem; }
.nav__panel-link span { display: block; font-size: 0.78rem; color: var(--gray-500); line-height: 1.4; }

.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.header__toggle span {
  display: block;
  height: 2px;
  background: var(--navy-950);
  transition: transform var(--ease), opacity var(--ease);
}
.header__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.is-open span:nth-child(2) { opacity: 0; }
.header__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 1rem 1.25rem 2rem;
  overflow-y: auto;
  z-index: 999;
  border-top: 1px solid var(--gray-200);
}
.mob-nav.is-open { display: block; }
.mob-nav__link, .mob-nav__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-950);
  border-bottom: 1px solid var(--gray-100);
}
.mob-nav__group.is-open .mob-nav__trigger svg { transform: rotate(180deg); }
.mob-nav__trigger svg { transition: transform var(--ease); }
.mob-nav__sub { display: none; padding: 0.5rem 0 0.5rem 1rem; }
.mob-nav__group.is-open .mob-nav__sub { display: block; }
.mob-nav__sublink {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.9375rem;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-100);
}
.mob-nav__link.is-active, .mob-nav__sublink:hover { color: var(--navy-800); }
.mob-nav__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--gray-200);
}
.mob-nav__tools .lang-switch { margin-left: auto; }
.mob-nav__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy-800);
  border-radius: var(--radius);
}
.mob-nav__contact.is-active { background: var(--navy-950); }

main { padding-top: 0; }
body.no-hero main { padding-top: var(--header-h); }
.page-top { padding-top: 3rem; }

/* Hero — flush with viewport top; header overlays seamlessly */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  background: var(--navy-950) center/cover no-repeat;
  background-attachment: scroll;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.78) 45%,
    rgba(10, 22, 40, 0.88) 100%
  );
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); max-width: 16ch; margin-bottom: 1.25rem; }
.hero .lead { color: rgba(255, 255, 255, 0.88); max-width: 34rem; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.page-hero {
  position: relative;
  margin-top: 0;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  background: var(--navy-950) center/cover no-repeat;
  color: var(--white);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(10, 22, 40, 0.5) 0%,
    rgba(10, 22, 40, 0.82) 50%,
    rgba(10, 22, 40, 0.9) 100%
  );
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; max-width: 20ch; }
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 40rem; font-size: 1.05rem; }
.page-hero .lead { color: rgba(255, 255, 255, 0.88); }

/* Inner pages without full hero — simple page head band */
.page-head {
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
  background: linear-gradient(155deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}
.page-head h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-head p,
.page-head .lead { color: rgba(255, 255, 255, 0.82); }

/* Stats */
.stats-bar {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stats-bar__item {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}
.stats-bar__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stats-bar__item span { font-size: 0.8125rem; color: var(--gray-500); font-weight: 500; }

/* Grids & cards */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
  height: 100%;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.card:hover .card__img img { transform: scale(1.03); }
.card__body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { font-size: 1.125rem; margin-bottom: 0.35rem; }
.card__meta { font-size: 0.8125rem; color: var(--gray-400); margin-bottom: 0.5rem; }
.card__text { font-size: 0.875rem; flex: 1; }
.card__link { margin-top: auto; padding-top: 0.75rem; font-size: 0.8125rem; font-weight: 600; color: var(--navy-800); }

.tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gray-100);
  color: var(--navy-800);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.tag--light { background: rgba(255,255,255,0.15); color: var(--white); }

/* Pillars */
.pillars { display: grid; gap: 1.5rem; }
.pillar {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  height: 100%;
}
.pillar__img { aspect-ratio: 16/9; overflow: hidden; }
.pillar__img img { width: 100%; height: 100%; object-fit: cover; }
.pillar__body { padding: 1.75rem; }
.pillar__num {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--navy-800);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.pillar h3 { margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9375rem; }

/* Markets */
.market-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
}
.market-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.market-card:hover img { transform: scale(1.04); }
.market-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.1) 0%, rgba(10,22,40,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}
.market-card__overlay h3 { color: var(--white); margin-bottom: 0.35rem; }
.market-card__overlay p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin: 0; }
.market-card__cta { margin-top: 0.75rem; font-size: 0.8125rem; font-weight: 600; color: var(--gold-light); }

/* Quote band */
.quote-band {
  background: var(--navy-950);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.quote-band blockquote {
  max-width: 46rem;
  margin: 0 auto;
  font-size: clamp(1.125rem, 2.5vw, 1.35rem);
  line-height: 1.65;
  font-style: italic;
  color: rgba(255,255,255,0.92);
}
.quote-band footer {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-style: normal;
}

/* Process */
.process { display: grid; gap: 1.25rem; }
.process__item {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}
.process__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process__item h3 { margin-bottom: 0.35rem; }
.process__item p { font-size: 0.9375rem; margin: 0; }

/* Delivery */
.delivery { display: grid; gap: 1.25rem; }
.delivery__item {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.delivery__item h3 { color: var(--navy-800); font-size: 1.125rem; margin-bottom: 0.4rem; }
.delivery__item p { font-size: 0.9375rem; margin: 0; }

/* Difference */
.difference { display: grid; gap: 1rem; }
.difference__item {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--gray-50);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.difference__item h3 { font-size: 1.0625rem; margin-bottom: 0.25rem; }
.difference__item p { font-size: 0.9375rem; margin: 0; }

/* Values / team */
.value-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  height: 100%;
}
.value-card__bar {
  width: 32px; height: 3px;
  background: var(--gold);
  margin-bottom: 1rem;
}
.team-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  height: 100%;
}
.team-card__photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--gray-100);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__role { font-size: 0.8125rem; font-weight: 600; color: var(--navy-800); margin-bottom: 0.5rem; }
.team-card p { font-size: 0.875rem; }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--gray-200);
}
.timeline__item { position: relative; padding-bottom: 2rem; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline__year {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-800);
  margin-bottom: 0.25rem;
}
.timeline__item h3 { margin-bottom: 0.35rem; }
.timeline__item p { font-size: 0.9375rem; }

/* Badges / certs */
.badges { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.badge {
  padding: 0.625rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
}
.badges--light .badge {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--navy-950);
}

/* Layout helpers */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--gray-800);
  font-size: 0.9375rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 1px;
}

/* Service / project layouts */
.service-layout, .project-layout {
  display: grid;
  gap: 3rem;
}
.service-layout__side, .project-layout__side {
  padding: 2rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  align-self: start;
}
.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.step__n {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
}
.step p { font-size: 0.875rem; margin: 0; }
.scope-list div { margin-bottom: 1rem; }
.scope-list dt { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); }
.scope-list dd { font-weight: 600; color: var(--navy-950); }

.gallery {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.gallery__item { border-radius: var(--radius); overflow: hidden; }

/* Testimonials */
.testimonials { display: grid; gap: 1.5rem; }
.testimonial {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.testimonial p { font-size: 1rem; font-style: italic; color: var(--gray-800); margin-bottom: 1rem; }
.testimonial footer strong { display: block; color: var(--navy-950); font-size: 0.875rem; }
.testimonial footer span { font-size: 0.8125rem; color: var(--gray-500); }

/* CTA */
.cta-band {
  background: linear-gradient(155deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 1.75rem; max-width: 32rem; margin-inline: auto; }

/* Contact form */
.form { max-width: 36rem; }
.form-row { display: grid; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-800);
}
.form-status {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--navy-800);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info li {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-500);
}
.contact-info a { color: var(--navy-800); font-weight: 500; }

/* Footer */
#site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.72);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer__brand strong { display: block; font-family: var(--font-head); font-size: 1.125rem; }
.footer__brand span { display: block; font-size: 0.75rem; opacity: 0.65; }
.footer__tagline { font-size: 0.875rem; max-width: 22rem; line-height: 1.6; }
#site-footer h4 {
  color: var(--white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
#site-footer ul li { margin-bottom: 0.5rem; font-size: 0.875rem; }
#site-footer a:hover { color: var(--white); }
.footer__bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem;
  text-align: center;
}

.section--dark .stats-bar__item strong { color: var(--white); }
.section--dark .stats-bar__item span { color: rgba(255,255,255,0.65); }
.trust-grid { background: transparent; box-shadow: none; }

/* Lifecycle (McCarthy / Harper inspired) */
.lifecycle { display: grid; gap: 1.25rem; }
.lifecycle__item {
  display: block;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: box-shadow var(--ease), border-color var(--ease);
  height: 100%;
}
.lifecycle__item:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy-800);
}
.lifecycle__step {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.lifecycle__item h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.lifecycle__item p { font-size: 0.9375rem; margin: 0; }
.lifecycle__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-800);
}

/* Testimonials page (Burnstead style) */
.testimonials-page { display: grid; gap: 2rem; max-width: 48rem; margin-inline: auto; }
.testimonial--page {
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.testimonial--page:last-child { border-bottom: none; padding-bottom: 0; }
.testimonial--page p { font-size: 1.0625rem; line-height: 1.75; }

/* Responsive */
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(4, 1fr); }
  .stats-bar__item { border-bottom: none; }
  .stats-bar__item:not(:last-child) { border-right: 1px solid var(--gray-100); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header__inner { gap: 0.75rem 1rem; }
  .header__name strong { font-size: 0.9375rem; }
  .header__name small { font-size: 0.5625rem; }
  .nav__link, .nav__trigger { padding: 0.5rem 0.65rem; font-size: 0.8125rem; }
  .nav__contact { padding: 0.5rem 0.875rem; font-size: 0.8125rem; }
  .lang-switch__btn { min-width: 2rem; font-size: 0.625rem; }
}

@media (min-width: 768px) {
  .header__name { display: block; }
  .nav { display: flex; }
  .nav__contact { display: inline-flex; }
  .header__toggle { display: none; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(4, 1fr); }
  .delivery { grid-template-columns: repeat(2, 1fr); }
  .difference { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .service-layout, .project-layout { grid-template-columns: 1.4fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .delivery { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .lifecycle { grid-template-columns: repeat(4, 1fr); }
  .lifecycle--compact .lifecycle__item p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
}

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