:root {
  --navy: #101f40;
  --blue: #0064b5;
  --sky: #eaf5fc;
  --ink: #24324a;
  --muted: #68768a;
  --line: #e2e8f0;
  --paper: #f7f9fb;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 20px 56px rgba(16, 31, 64, .10);
  --container: min(1180px, calc(100% - 40px));

  /* Deliberately restrained type scale: body / small / lead / title / display. */
  --text-sm: .875rem;
  --text-base: 1rem;
  --text-lead: clamp(1.025rem, 1.2vw, 1.125rem);
  --title: clamp(2rem, 3vw, 3.15rem);
  --display: clamp(2.85rem, 4.7vw, 4.25rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.62;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
strong, b { font-weight: 600; }
.container { width: var(--container); margin-inline: auto; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.display {
  max-width: 660px;
  margin: 0;
  color: var(--navy);
  font-size: var(--display);
  font-weight: 600;
  line-height: .99;
  letter-spacing: -.045em;
}
.section-title {
  max-width: 820px;
  margin: 14px 0 20px;
  color: var(--navy);
  font-size: var(--title);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.lead {
  max-width: 720px;
  color: #526177;
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: 1.65;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  transition: .25s;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78) 76%, transparent);
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(16,31,64,.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 168px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: #334158;
  font-size: .94rem;
  font-weight: 500;
  white-space: nowrap;
}
.main-nav a:not(.btn):hover { color: var(--blue); }
.lang-switch {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lang-switch a {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 500;
}
.lang-switch .active { background: var(--navy); color: white; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--navy); margin: 5px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-light { background: white; color: var(--navy); box-shadow: 0 8px 28px rgba(16,31,64,.10); }
.btn-ghost { border-color: #c9d4df; background: rgba(255,255,255,.72); color: var(--navy); }
.btn:disabled { opacity: .6; cursor: wait; }

.hero { padding: 132px 0 64px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 58px;
  align-items: center;
}
.hero-copy .lead { margin: 24px 0 28px; max-width: 620px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-trust strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.hero-trust span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}
.hero-media { position: relative; }
.hero-photo {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 26px 26px 88px 26px;
  box-shadow: var(--shadow);
}
.hero-card {
  position: absolute;
  left: -26px;
  bottom: 34px;
  max-width: 226px;
  padding: 16px 18px;
  border: 1px solid rgba(16,31,64,.06);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 44px rgba(16,31,64,.12);
}
.hero-card strong { display: block; color: var(--navy); font-size: .98rem; }
.hero-card span { display: block; margin-top: 2px; color: var(--muted); font-size: .82rem; line-height: 1.5; }

.band { padding: 20px 0; }
.location-band { border-block: 1px solid var(--line); background: #fbfcfe; }
.locations { display: grid; grid-template-columns: repeat(4,1fr); }
.location { display: flex; align-items: center; gap: 18px; padding: 18px 28px; border-right: 1px solid var(--line); }
.location:first-child { padding-left: 0; }
.location:last-child { padding-right: 0; border-right: 0; }
.location-icon {
  width: 74px;
  height: 58px;
  flex: 0 0 74px;
  display: grid;
  place-items: center;
}
.location-icon svg {
  display: block;
  overflow: visible;
  max-width: 100%;
  max-height: 100%;
  shape-rendering: geometricPrecision;
}
.location-icon--france svg { width: 52px; height: auto; }
.location-icon--spain svg { width: 54px; height: auto; }
.location-icon--hongkong svg { width: 46px; height: auto; }
.location-icon--madagascar svg { height: 52px; width: auto; }
.map-shape {
  fill: #d7dde5;
  stroke: #b1bac8;
  stroke-width: .9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.location-copy { display: block; }
.location b { display: block; color: var(--navy); font-size: 1.02rem; font-weight: 600; line-height: 1.2; }
.location small { display: none; }

.section { padding: 94px 0; }
.section-soft { background: var(--paper); }
.section-navy { background: var(--navy); color: white; }
.section-navy .section-title,
.section-navy .eyebrow { color: white; }
.section-navy .lead { color: #cbd6e6; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.media-card { position: relative; }
.media-card img { width: 100%; min-height: 500px; object-fit: cover; border-radius: var(--radius); }
.media-note {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: min(270px, 72%);
  padding: 20px;
  border-radius: 16px;
  background: var(--blue);
  color: white;
}
.media-note b { display: block; margin-bottom: 6px; font-size: 1.08rem; font-weight: 600; line-height: 1.35; }
.media-note span { font-size: .9rem; line-height: 1.5; opacity: .96; }
.quote {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.check-list { display: grid; gap: 15px; margin-top: 26px; }
.check { display: grid; grid-template-columns: 32px 1fr; gap: 13px; align-items: start; }
.check i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  font-style: normal;
  font-size: .82rem;
  font-weight: 600;
}
.check b { display: block; margin-bottom: 3px; color: var(--navy); font-size: .98rem; }
.check .muted { font-size: .92rem; line-height: 1.55; }

.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 40px;
}
.card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(16,31,64,.07); }
.card-index { color: var(--blue); font-size: .7rem; font-weight: 600; letter-spacing: .1em; }
.card h3 { margin: 30px 0 10px; color: var(--navy); font-size: 1.16rem; font-weight: 600; line-height: 1.35; }
.card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.6; }
.section-navy .card { background: #16294f; border-color: #294066; }
.section-navy .card h3 { color: white; }
.section-navy .card p { color: #c4d0e2; }
.section-navy .card-index { color: #7bc3f3; }

.process { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; margin-top: 42px; }
.process-step {
  position: relative;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.process-step::before {
  content: attr(data-step);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: .74rem;
  font-weight: 600;
}
.process-step b { display: block; margin-bottom: 6px; color: var(--navy); font-size: .96rem; }
.process-step span { color: var(--muted); font-size: .84rem; line-height: 1.5; }

.estimator { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; margin-top: 42px; align-items: start; }
.estimator-panel,
.estimate-result { padding: 30px; border-radius: 20px; }
.estimator-panel { border: 1px solid var(--line); background: white; }
.profile-row {
  display: grid;
  grid-template-columns: 1fr 84px;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.profile-row:first-child { padding-top: 0; }
.profile-row:last-of-type { border-bottom: 0; }
.profile-row b { display: block; color: var(--navy); font-size: .96rem; }
.profile-row small { color: var(--muted); font-size: .82rem; line-height: 1.45; }
.profile-rate { display: block; margin-top: 7px; color: #8090a7; font-size: .78rem; line-height: 1.45; }
.profile-rate--switch { margin-top: 8px; }
.profile-row input {
  width: 100%;
  height: 42px;
  padding: 0 10px;
  border: 1px solid #cbd6e2;
  border-radius: 10px;
  color: var(--navy);
  text-align: center;
  font-weight: 600;
}
.switch-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.switch-row b { font-size: .96rem; }
.switch-row .muted { font-size: .84rem; }
.switch { position: relative; width: 50px; height: 28px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; border-radius: 999px; background: #c6d0da; transition: .2s; }
.slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,.18);
  transition: .2s;
}
.switch input:checked + .slider { background: var(--blue); }
.switch input:checked + .slider::before { transform: translateX(22px); }
.estimate-result {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background: var(--navy);
  color: white;
  position: sticky;
  top: 108px;
  align-self: start;
  height: fit-content;
  min-height: 0;
}
.estimate-result .eyebrow { color: #8dcdf6; }
.estimate-amount {
  margin: 14px 0 8px;
  font-size: clamp(2.65rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
}
.estimate-result p { color: #c3d0e3; font-size: .92rem; }
.estimate-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.estimate-meta div { padding: 14px; border-radius: 13px; background: rgba(255,255,255,.07); }
.estimate-meta b { display: block; font-size: 1.2rem; font-weight: 600; }
.estimate-meta span { color: #c3d0e3; font-size: .78rem; }
.price-note { color: #9fb1ca !important; font-size: .76rem !important; line-height: 1.5; }
.supervisor-warning { margin-top: 12px; padding: 11px 13px; border-radius: 10px; background: #fff3d9; color: #694b00; font-size: .82rem; }

.people-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 42px;
}
.people-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.people-grid .large { grid-row: 1 / 3; }
.people-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-radius: 18px;
  background: var(--blue);
  color: white;
}
.people-stat b { font-size: 3rem; font-weight: 600; line-height: 1; letter-spacing: -.04em; }
.people-stat span { max-width: 250px; margin-top: 8px; font-size: .92rem; }

.cta { padding: 82px 0; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 48px 52px;
  border-radius: 24px;
  background: var(--sky);
}
.cta-box h2 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 66px; align-items: start; }
.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 52px rgba(16,31,64,.06);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .82rem; font-weight: 600; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cbd6e2;
  border-radius: 10px;
  outline: none;
  background: white;
  color: var(--ink);
  font-size: .94rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,100,181,.08); }
.field textarea { min-height: 140px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }
.form-bottom { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 18px; }
.form-status { font-size: .86rem; }
.form-status.is-success { color: #157347; }
.form-status.is-error { color: #b42318; }
.privacy-note { margin-top: 12px; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.contact-photo { width: 100%; max-height: 280px; margin-top: 30px; object-fit: cover; border-radius: 18px; filter: grayscale(100%); }

.site-footer { padding: 48px 0 24px; background: #0a1730; color: #c0cbdb; font-size: .9rem; }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 46px; }
.footer-logo { width: 172px; filter: brightness(0) invert(1); opacity: .95; }
.footer-top p { max-width: 320px; }
.footer-top h4 { margin: 0 0 12px; color: white; font-size: .9rem; font-weight: 600; }
.footer-top a { display: block; margin: 7px 0; }
.footer-top a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem;
}

[data-reveal] { opacity: 0; transform: translateY(18px); transition: .65s cubic-bezier(.2,.75,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .main-nav { gap: 17px; font-size: .88rem; }
  .brand img { width: 152px; }
  .main-nav .btn { padding-inline: 15px; font-size: .88rem; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    white-space: normal;
  }
  .main-nav.is-open { display: flex; }
  .lang-switch { align-self: flex-start; }
  .hero-grid, .split, .estimator, .contact-grid { grid-template-columns: 1fr; }
  .estimate-result { position: static; top: auto; }
  .hero-grid { gap: 36px; }
  .hero-media { order: -1; }
  .hero-photo { min-height: 470px; }
  .hero-card { left: 18px; }
  .hero-copy .display { max-width: 760px; }
  .locations { grid-template-columns: 1fr 1fr; }
  .location:first-child { padding-left: 22px; }
  .location:nth-child(2) { border-right: 0; }
  .location:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: repeat(3, 1fr); }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .cta-box { align-items: flex-start; flex-direction: column; }
  .media-note { right: 16px; }
}

@media (max-width: 640px) {
  :root {
    --container: min(calc(100% - 28px), 1180px);
    --display: clamp(2.45rem, 11.5vw, 3.2rem);
    --title: clamp(1.8rem, 8vw, 2.5rem);
  }
  .site-header .brand img { width: 145px; }
  .nav-wrap { min-height: 70px; }
  .main-nav { inset: 70px 14px auto; }
  .hero { padding-top: 102px; padding-bottom: 54px; }
  .hero-grid { gap: 28px; }
  .hero-photo { min-height: 390px; border-radius: 20px 20px 58px 20px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 16px; }
  .locations { grid-template-columns: 1fr; }
  .location,
  .location:first-child { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .location-icon { width: 62px; height: 46px; flex-basis: 62px; }
  .location-icon--france svg { width: 42px; height: auto; }
  .location-icon--spain svg { width: 44px; height: auto; }
  .location-icon--hongkong svg { width: 36px; height: auto; }
  .location-icon--madagascar svg { height: 42px; width: auto; }
  .location:last-child { border-bottom: 0 !important; }
  .section { padding: 72px 0; }
  .cards { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .people-grid { display: block; }
  .people-grid > * { min-height: 240px; margin-bottom: 12px; }
  .people-grid .large { height: 420px; }
  .cta { padding: 64px 0; }
  .cta-box { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-form { padding: 22px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .estimator-panel, .estimate-result { padding: 22px; }
  .profile-row { grid-template-columns: 1fr 76px; }
}


/* Legal pages */
.group-label { display: inline-block; margin-top: 4px; color: #8ea0b9; font-size: .78rem; }
.privacy-note a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-main { padding: 132px 0 86px; background: var(--paper); min-height: 72vh; }
.legal-wrap { max-width: 900px; }
.legal-header { margin-bottom: 44px; }
.legal-header .lead { max-width: 760px; }
.legal-card { padding: 34px 38px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 14px 40px rgba(16,31,64,.04); }
.legal-card + .legal-card { margin-top: 18px; }
.legal-card h2 { margin: 0 0 14px; color: var(--navy); font-size: 1.22rem; font-weight: 600; letter-spacing: -.015em; }
.legal-card h3 { margin: 24px 0 8px; color: var(--navy); font-size: 1rem; font-weight: 600; }
.legal-card p, .legal-card li { color: #58687d; font-size: .94rem; line-height: 1.72; }
.legal-card p { margin: 0 0 12px; }
.legal-card ul { margin: 8px 0 12px; padding-left: 20px; }
.legal-card strong { color: var(--navy); }
.legal-meta { display: grid; grid-template-columns: 170px 1fr; gap: 9px 20px; margin-top: 16px; }
.legal-meta dt { color: var(--muted); font-size: .85rem; }
.legal-meta dd { margin: 0; color: var(--ink); font-size: .92rem; }
.legal-back { display: inline-flex; margin-top: 28px; color: var(--navy); font-weight: 600; font-size: .9rem; }
.legal-note { padding: 14px 16px; border-radius: 12px; background: #f2f6fa; color: #65758b; font-size: .84rem; line-height: 1.6; }
@media (max-width: 640px) {
  .legal-main { padding-top: 104px; }
  .legal-card { padding: 25px 22px; }
  .legal-meta { grid-template-columns: 1fr; gap: 3px; }
  .legal-meta dd { margin-bottom: 10px; }
}
