:root {
  --navy: #0A1128;
  --sand: #F5F5DC;
  --citrus-1: #FFA07A;
  --citrus-2: #FF5722;
  --citrus-3: #BF360C;
  --citrus: linear-gradient(135deg, #FFA07A 0%, #FF5722 50%, #BF360C 100%);

  --ink: var(--navy);
  --ink-muted: rgba(10, 17, 40, 0.62);
  --sand-muted: rgba(245, 245, 220, 0.66);

  /* Hero box framing: the sand gap around the box + the uniform inner inset.
     Nav, headline and info card are all spaced --hero-pad from the box edges. */
  --frame: 12px;
  --hero-pad: clamp(1.75rem, 4.5vw, 3.5rem);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; background-color: var(--navy); }

body {
  margin: 0;
  display: flow-root;
  background-color: var(--sand);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--citrus-2); color: #fff; }

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Serif display headings */
.display,
.hero__title,
.person__name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.display {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.18;
  max-width: 20ch;
  margin: 0.6rem 0 0;
}
.display--light { color: var(--sand); max-width: 26ch; }

.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--citrus-2);
}
.eyebrow--light { color: var(--citrus-1); }

.section {
  padding-top: 6.5em;
  padding-bottom: 6.5em;
  position: relative;
  overflow: hidden;
}

/* ---------- BRAND / LOGO ---------- */
.brand { display: flex; align-items: center; gap: 0.85em; }
.brand__mark { height: 44px; width: auto; flex: none; }
.brand__mark--lg { height: 58px; width: auto; }

.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--citrus);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__name--light { font-size: 1.5rem; }
.brand__sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--citrus-1);
  margin-top: 0.35em;
  padding-left: 0.1em;
}

/* ---------- TOP NAVIGATION ---------- */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--frame) + var(--hero-pad)) calc(var(--frame) + var(--hero-pad)) 1.2rem;
  background-color: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.3s ease;
}
.topnav--scrolled {
  background-color: var(--navy);
  box-shadow: 0 6px 24px rgba(10, 17, 40, 0.28);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
/* Suppress nav transitions while the viewport is being resized, so the
   slide-down menu doesn't fade out when crossing the hamburger breakpoint. */
.no-anim .topnav,
.no-anim .topnav__menu { transition: none !important; }
.brand--nav .brand__mark { height: 34px; }
.brand--nav .brand__name { font-size: 1.05rem; }
.brand--nav .brand__sub { font-size: 0.52rem; letter-spacing: 0.38em; color: var(--navy); opacity: 0.65; }
.brand--nav .brand__mark path { fill: var(--navy); transition: fill 0.35s ease; }
.brand--nav .brand__name {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--navy);
  color: var(--navy);
}
.topnav--scrolled .brand--nav .brand__mark path { fill: url(#citrusGrad); }
.topnav--scrolled .brand--nav .brand__name {
  background: var(--citrus);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.topnav--scrolled .brand--nav .brand__sub { color: var(--citrus-1); opacity: 1; }

/* When hamburger menu is open, nav background is navy - switch logo to citrus */
.topnav--open .brand--nav .brand__mark path { fill: url(#citrusGrad); }
.topnav--open .brand--nav .brand__name {
  background: var(--citrus);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.topnav--open .brand--nav .brand__sub { color: var(--citrus-1); opacity: 1; }

.topnav__menu { display: flex; align-items: center; gap: 2rem; }
.topnav__menu a {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--sand);
  transition: color 0.2s ease;
}
.topnav__menu a:hover { color: var(--citrus-1); }
.topnav__cta {
  background: var(--citrus-2);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 0.6em 1.4em;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.topnav__cta:hover { background: var(--citrus-3); }

.topnav__toggle { display: none; }

/* Desktop: compact dropdown */
.lang-switch { position: relative; display: inline-flex; align-items: center; }
.lang-switch__current {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: transparent;
  border: 1px solid rgba(245, 245, 220, 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sand);
  padding: 0.45em 0.7em;
  border-radius: 6px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.lang-switch__current:hover { border-color: rgba(245, 245, 220, 0.55); }
.lang-switch__chev {
  width: 13px;
  height: 13px;
  color: var(--sand-muted);
  transition: transform 0.2s ease;
}
.lang-switch.is-open .lang-switch__chev { transform: rotate(180deg); }
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 100%;
  display: none;
  flex-direction: column;
  padding: 0.3rem;
  background-color: #0d1533;
  border: 1px solid rgba(245, 245, 220, 0.14);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(10, 17, 40, 0.45);
  z-index: 120;
}
.lang-switch.is-open .lang-switch__menu { display: flex; }
.lang-switch__menu button {
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: left;
  color: var(--sand-muted);
  padding: 0.5em 0.9em;
  border-radius: 5px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.lang-switch__menu button:hover { color: var(--sand); background: rgba(245, 245, 220, 0.08); }
.lang-switch__menu button.is-active { color: #fff; background: rgba(245, 245, 220, 0.14); }

/* ---------- HERO ---------- */
.cc-header {
  background-color: var(--navy);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: auto;
  min-height: 90vh;
  margin: var(--frame) var(--frame) 0;
  padding: var(--hero-pad);
  color: var(--sand);
}

.hero__glow {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 65%;
  height: 90%;
  background: var(--citrus);
  filter: blur(120px);
  opacity: 0.35;
  border-radius: 50%;
  pointer-events: none;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6em 2em;
  z-index: 2;
}

.btn-outline {
  border: 1px solid rgba(245, 245, 220, 0.5);
  border-radius: 6px;
  padding: 0.55em 1.2em;
  font-size: 0.85rem;
  color: var(--sand);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.btn-outline:hover { background-color: rgba(245, 245, 220, 0.12); border-color: rgba(245,245,220,0.8); }

.hero__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin: 0;
  color: var(--sand);
}

.hero__card {
  max-width: 300px;
  background-color: rgba(245, 245, 220, 0.08);
  border: 1px solid rgba(245, 245, 220, 0.18);
  border-radius: 12px;
  padding: 1.5em;
  backdrop-filter: blur(3px);
}
.hero__card p { margin: 0; font-size: 0.82rem; line-height: 1.65; color: var(--sand-muted); }

/* ---------- ABOUT ---------- */
.about { background-color: var(--sand); }
.about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.seven-motif { display: flex; justify-content: center; }
.seven-motif svg { height: 230px; width: auto; filter: drop-shadow(0 16px 40px rgba(255, 87, 34, 0.18)); }
.about__copy p { font-size: 0.92rem; line-height: 1.75; margin: 0 0 1.3em; max-width: 52ch; }
.about__copy p:last-child { margin-bottom: 0; }

/* ---------- INVESTMENT PHILOSOPHY ---------- */
.philosophy { background-color: var(--navy); }
.philosophy__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  max-width: 880px;
}
.philosophy__cols p { margin: 0; font-size: 0.92rem; line-height: 1.75; color: var(--sand-muted); }
.philosophy__cols p::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 2px;
  background: var(--citrus);
  margin-bottom: 1.2em;
}

/* ---------- CARD GRID (Areas + Companies) ---------- */
.card-grid {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(10, 17, 40, 0.08);
  border-radius: 12px;
  padding: 1.6em 1.4em 1.5em;
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:not(.card--photo):hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(10, 17, 40, 0.08); }
.card__label { font-size: 1rem; font-weight: 500; line-height: 1.35; }
.card__num {
  position: absolute;
  top: 1.2em;
  left: 1.4em;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  background: var(--citrus);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.05em;
}
.card--mark::before {
  content: "";
  position: absolute;
  top: 1.7em;
  left: 1.4em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--citrus);
}

/* Icon-led concept cards (Where we focus) */
.card--icon {
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  min-height: 180px;
  cursor: default;
}
.card--icon:hover { transform: none; box-shadow: none; }
.card__top { display: flex; align-items: center; justify-content: space-between; }
.card__icon { display: inline-flex; }
.card__icon svg { width: 30px; height: 30px; display: block; }
.card--icon .card__num {
  position: static;
  font-size: 1.5rem;
}
.card--icon .card__label {
  position: relative;
  padding-bottom: 0.9em;
}
.card--icon .card__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--citrus);
}

/* ---------- FOCUS LIST (Where we focus) ---------- */
.focus-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
}
.focus-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.1em 0;
  border-bottom: 1px solid rgba(10, 17, 40, 0.1);
}
.focus-item:nth-child(1),
.focus-item:nth-child(2) { border-top: 1px solid rgba(10, 17, 40, 0.1); }
.focus-num {
  font-family: Georgia, serif;
  font-size: 0.85rem;
  background: var(--citrus);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
  min-width: 1.6em;
}
.focus-icon { display: inline-flex; flex-shrink: 0; }
.focus-icon svg { width: 22px; height: 22px; display: block; }
.focus-label { font-size: 0.95rem; font-weight: 500; color: var(--ink); }

/* Photo-backed holding cards */
.card--photo {
  border: none;
  overflow: hidden;
  min-height: 200px;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}
.card--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 40, 0.30) 0%, rgba(10, 17, 40, 0.55) 45%, rgba(10, 17, 40, 0.88) 100%);
  transition: opacity 0.3s ease;
}
.card--photo .card__label {
  position: relative;
  z-index: 1;
  color: var(--sand);
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.card--photo.card--link:hover { box-shadow: 0 18px 40px rgba(10, 17, 40, 0.18); }
.card--photo.card--link:hover::before { opacity: 0.85; }

/* Clickable cards (external links) */
.card--link { cursor: pointer; }
.card__cover {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.card__go {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--citrus);
  color: #fff;
  pointer-events: none;
  opacity: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}
.card__go svg { width: 15px; height: 15px; }
.card--link:hover .card__go,
.card--link:focus-within .card__go { transform: scale(1.1); box-shadow: 0 8px 20px rgba(255, 87, 34, 0.55); }
.card--link:hover { transform: translateY(-3px); }

/* ---------- COMPANIES ---------- */
.companies { background-color: var(--sand); }
.companies__lead {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 60ch;
  margin: 1.4rem 0 0;
}

/* ---------- FOUNDERS' TRACK RECORD ---------- */
.track { background-color: var(--sand); padding-top: 0; }
.track__panel {
  background-color: var(--navy);
  border-radius: 18px;
  padding: 3.6em 3.2em;
  position: relative;
  overflow: hidden;
}
.track__lead {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--sand-muted);
  max-width: 44ch;
  margin: 0.9rem 0 2.4rem;
}
.track__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.track__card {
  perspective: 700px;
  border: none;
  border-radius: 0;
  padding: 0;
  display: block;
  gap: 0;
  transition: none;
  background: transparent;
  min-height: 150px;
}
.track__flip-inner {
  position: relative;
  width: 100%;
  height: 150px;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
}
.track__card:hover .track__flip-inner {
  transform: rotateY(180deg);
}
.track__flip-front,
.track__flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid rgba(245, 245, 220, 0.14);
  border-radius: 12px;
  padding: 1.2em 1.2em;
  display: flex;
  flex-direction: column;
}
.track__flip-front {
  justify-content: flex-end;
}
.track__flip-front .track__card-name { font-size: 1.1rem; }
.track__flip-back {
  transform: rotateY(180deg);
  background: rgba(245, 245, 220, 0.05);
  border-color: rgba(245, 245, 220, 0.28);
  justify-content: flex-start;
  gap: 0.6em;
}
.track__flip-back-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5em;
}
.track__flip-back .track__card-name { font-size: 0.9rem; }
.track__card-name {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--sand);
  line-height: 1.25;
}
.track__link-btn {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 87, 34, 0.45);
  color: var(--citrus-1);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.track__link-btn svg { width: 13px; height: 13px; display: block; }
.track__link-btn:hover {
  background: var(--citrus-2);
  border-color: var(--citrus-2);
  color: #fff;
}
.track__card-desc {
  font-size: 0.77rem;
  line-height: 1.65;
  color: var(--sand-muted);
  margin: 0;
  flex: 1;
  overflow: hidden;
}

/* Tap-to-flip for touch devices */
.track__card.is-flipped .track__flip-inner { transform: rotateY(180deg); }
/* Tap-to-show bio for touch devices */
.person__photo.is-active .person__hover-info { opacity: 1; }

/* ---------- INTERNATIONAL PRESENCE BAND ---------- */
.band { background-color: var(--navy); padding: 5em 0; position: relative; overflow: hidden; }
.band .band__text {
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  color: var(--sand);
  max-width: 26ch;
  margin: 0.8rem 0 0;
}
.band__countries {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 2.5rem;
}
.band__countries span {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--citrus-1);
  padding-bottom: 0.4em;
  border-bottom: 2px solid var(--citrus-2);
}

/* ---------- MANAGEMENT ---------- */
.management { background-color: var(--sand); }
.management__people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 2.5rem;
  margin-top: 3rem;
}
.person { margin: 0; }
.person__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--navy);
  border-bottom: 4px solid;
  border-image: var(--citrus) 1;
}
.person__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) brightness(0.99) contrast(1.04) saturate(1.08);
  transition: filter 0.45s ease;
}
/* Zoom Tone's portrait to a shoulders-up crop */
.person__photo--zoom img {
  transform: scale(1.7);
  transform-origin: 50% 20%;
}
/* Navy tint to gently dim and unify the portraits with the brand */
.person__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 40, 0.04) 0%, rgba(10, 17, 40, 0.30) 100%);
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.person__photo:hover img { filter: grayscale(0) brightness(1.02) contrast(1.02) saturate(1.1); }
.person__photo:hover::after { opacity: 0.4; }
.person__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
  background: var(--citrus);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}
.person figcaption { margin-top: 1em; }
.person__name { font-size: 1.3rem; }

.person__hover-info {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(10, 17, 40, 0.93);
  padding: 1.5em 1.4em;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  opacity: 0;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  border-radius: 12px;
}
.person__photo:hover .person__hover-info { opacity: 1; }
.person__hover-name {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--sand);
  margin: 0;
  flex-shrink: 0;
}
.person__hover-bio {
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--sand-muted);
  margin: 0;
}

/* ---------- CONTACT ---------- */
.contact { background-color: var(--sand); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 860px;
}
.contact__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10, 17, 40, 0.08);
  border-radius: 16px;
  padding: 2.3em 2.2em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact__card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(10, 17, 40, 0.08); }
.contact__country {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--citrus-2);
  margin-bottom: 0.9rem;
}
.contact__email {
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--ink);
  word-break: break-word;
}
.contact__cta { font-size: 0.8rem; color: var(--ink-muted); margin-top: 1.1rem; }

/* ---------- FOOTER ---------- */
.footer { background-color: var(--navy); color: var(--sand); padding: 4em 0 2.5em; }
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 0.9em; }
.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--sand-muted);
  text-align: right;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .section { padding-top: 4em; padding-bottom: 4em; }
  .about__grid,
  .philosophy__cols,
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .card-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .card { min-height: 130px; padding: 1.3em; }
  .card--icon { min-height: 145px; }
  .card--photo { min-height: 150px; }
  .focus-list { column-gap: 2.5rem; }
  .track__panel { padding: 2.6em 2em; }
  .track__grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .track__flip-inner { height: 165px; }
  .track__card { min-height: 165px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__card { max-width: 100%; }
  .seven-motif svg { height: 170px; }
}

/* Mobile navigation (hamburger + slide-down menu) */
@media (max-width: 1000px) {
  .topnav--scrolled { padding-top: 0.9rem; padding-bottom: 0.9rem; }
  .topnav--open { background-color: var(--navy); }
  .topnav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 110;
  }
  .topnav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: var(--sand);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .topnav--open .topnav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .topnav--open .topnav__toggle span:nth-child(2) { opacity: 0; }
  .topnav--open .topnav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .topnav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem calc(var(--frame) + var(--hero-pad)) 1.4rem;
    background: var(--navy);
    box-shadow: 0 16px 30px rgba(10, 17, 40, 0.3);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .topnav--open .topnav__menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .topnav__menu a { padding: 0.95em 0; border-bottom: 1px solid rgba(245, 245, 220, 0.1); }
  .topnav__cta { margin-top: 1rem; text-align: center; }

  /* Mobile: revert language dropdown to an inline row */
  .lang-switch { width: 100%; padding: 0.6rem 0 0.2rem; }
  .lang-switch__current { display: none; }
  .lang-switch__menu {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 0.15rem;
    padding: 0;
    min-width: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .lang-switch__menu button { font-size: 0.78rem; padding: 0.45em 0.7em; border-radius: 5px; }
}

@media (max-width: 520px) {
  .section { padding-top: 3.2em; padding-bottom: 3.2em; }
  .card-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .card { min-height: 110px; padding: 1.05em 1em; }
  .card--icon { min-height: 120px; }
  .card__icon svg { width: 24px; height: 24px; }
  .card--icon .card__num { font-size: 1.15rem; }
  .card__label { font-size: 0.85rem; }
  .card--icon .card__label { padding-bottom: 0.7em; }
  .card--photo { min-height: 124px; }
  .focus-list { grid-template-columns: 1fr; }
  .focus-item:nth-child(2) { border-top: none; }
  .track__panel { padding: 2em 1.4em; }
  .track__grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .track__flip-inner { height: 150px; }
  .track__card { min-height: 150px; }
  .management__people { grid-template-columns: 1fr; }
  .container { padding: 0 1.4rem; }
  .footer__grid { flex-direction: column; align-items: flex-start; }
  .footer__legal { align-items: flex-start; text-align: left; }
}
