:root {
  --ink: #263377;
  --ink-dark: #1b255a;
  --orange: #f47921;
  --orange-dark: #d95e0b;
  --lime: #8cbe21;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --line: #dfe5ee;
  --muted: #65708a;
  --shadow: none;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #23283a;
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(244, 121, 33, .45);
  outline-offset: 3px;
}
.skip-link {
  position: absolute; left: 1rem; top: -5rem; z-index: 20;
  background: var(--orange); color: white; padding: .65rem 1rem; border-radius: 8px;
}
.skip-link:focus { top: 1rem; }
.container { width: min(1160px, calc(100% - 2.5rem)); margin-inline: auto; }
.topbar { background: var(--ink-dark); color: #e9edff; font-size: .88rem; }
.topbar .container { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: white; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); font-weight: 900; letter-spacing: -.04em; font-size: 1.45rem; }
.brand-mark { width: 41px; height: 41px; position: relative; border-radius: 4px; background: var(--ink); overflow: hidden; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; transform: skewX(-24deg); }
.brand-mark::before { width: 12px; height: 54px; left: 10px; top: -6px; background: var(--orange); }
.brand-mark::after { width: 8px; height: 54px; left: 25px; top: -6px; background: var(--lime); }
.nav { display: flex; align-items: center; gap: .2rem; }
.nav a { padding: .6rem .75rem; color: #3a4160; font-size: .94rem; font-weight: 750; border-radius: 4px; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); background: #eef1fb; }
.nav .nav-cta { color: white; background: var(--orange); margin-left: .45rem; padding-inline: 1rem; }
.nav .nav-cta:hover { background: var(--orange-dark); color: white; }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--ink); cursor: pointer; padding: .5rem; }
.hero { position: relative; min-height: 540px; display: grid; align-items: center; overflow: hidden; color: white; background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,30,82,.92) 0%, rgba(21,30,82,.73) 40%, rgba(21,30,82,.22) 100%), url("photos/index/bandeau-index.jpg") center/cover; }
.hero .container { position: relative; z-index: 1; padding-block: 5.7rem; }
.eyebrow { margin: 0 0 .8rem; color: var(--lime); font-size: .8rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero .eyebrow { color: #d4ee8a; }
h1, h2, h3 { color: var(--ink); line-height: 1.12; letter-spacing: -.045em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.4rem, 6vw, 4.7rem); max-width: 720px; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.3rem; }
.hero h1 { color: white; max-width: 750px; }
.hero p { max-width: 630px; color: #edf0ff; font-size: 1.15rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .72rem 1.1rem; border: 2px solid transparent; border-radius: 8px; font-weight: 850; cursor: pointer; transition: .2s ease; }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover { background: var(--ink-dark); color: white; transform: translateY(-2px); }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: #eef1fb; transform: translateY(-2px); }
.button-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.button-outline:hover { background: var(--ink); color: white; }
.section { padding: 5.5rem 0; }
.section-muted { background: var(--mist); }
.section-heading { max-width: 700px; margin-bottom: 2.2rem; }
.section-heading p, .intro { color: var(--muted); font-size: 1.06rem; }
.grid { display: grid; gap: 1.3rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: transparent; border: 0; border-top: 3px solid var(--lime); border-radius: 0; padding: 1.45rem 0 1.7rem; }
.card:hover { box-shadow: none; transform: none; }
.icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 1.2rem; border-radius: 4px; color: var(--ink); background: #eef1fb; font-size: 1.45rem; font-weight: 900; }
.card p { margin: 0; color: var(--muted); }
.card-list { display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 1.1rem 0 0; list-style: none; }
.card-list li { padding: .28rem .58rem; border-left: 3px solid var(--lime); color: var(--ink); background: #f4f7fb; font-size: .82rem; font-weight: 750; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.checklist { padding: 0; margin: 1.5rem 0 0; list-style: none; }
.checklist li { position: relative; padding: .55rem 0 .55rem 2rem; border-bottom: 1px solid var(--line); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: .53rem; color: var(--orange); font-weight: 900; }
.photo-card { overflow: hidden; border-radius: 0; box-shadow: var(--shadow); background: var(--ink); }
.photo-card img { width: 100%; aspect-ratio: 1.25; object-fit: cover; }
.stat-row { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; }
.stat strong { display: block; color: var(--orange); font-size: 2.3rem; line-height: 1; }
.stat span { color: var(--muted); font-size: .9rem; }
.cta { background: var(--ink); color: white; border-left: 8px solid var(--lime); border-radius: 0; padding: 2.7rem 3rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.cta h2 { color: white; max-width: 650px; }
.cta p { color: #dce2ff; margin: 0; }
.cta .button-primary { background: var(--lime); color: #263508; }
.cta .button-primary:hover { background: #a1d52d; color: #1b255a; }
.page-hero { padding: 4.5rem 0 4rem; background: linear-gradient(135deg, #eef1fb 0%, white 70%); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 800px; }
.breadcrumbs { margin-bottom: 1rem; color: var(--muted); font-size: .88rem; }
.breadcrumbs a { color: var(--ink); font-weight: 700; }
.service-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.service-list .card { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding: 1.2rem 1.2rem 1.35rem; border-top: 0; border-left: 3px solid var(--lime); background: linear-gradient(90deg, #f4f6fb 0%, rgba(244,246,251,0) 100%); }
.service-list .icon { margin: 0; width: 42px; height: 42px; font-size: 1rem; }
.service-list h3 { margin-bottom: .35rem; }
.service-list p { margin: 0; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 1.5rem; align-items: start; }
.contact-panel { padding: 2rem; border-radius: 0; background: var(--ink); color: white; }
.contact-panel h2 { color: white; font-size: 2rem; }
.contact-panel p { color: #dce2ff; }
.contact-detail { display: flex; gap: .8rem; align-items: flex-start; margin: 1.3rem 0; }
.contact-detail b { display: block; color: white; }
.contact-detail span { color: #dce2ff; }
.form-card { padding: 2rem 0 0 2rem; border-left: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; margin-bottom: .4rem; color: var(--ink); font-weight: 800; font-size: .92rem; }
input, textarea { width: 100%; border: 1px solid #c9d1df; border-radius: 4px; background: white; color: #22283b; padding: .85rem .9rem; font: inherit; }
textarea { min-height: 155px; resize: vertical; }
.field { margin-bottom: 1rem; }
.full { grid-column: 1 / -1; }
.consent { display: flex; align-items: flex-start; gap: .65rem; color: var(--muted); font-size: .88rem; font-weight: 400; }
.consent input { width: auto; margin-top: .35rem; }
.status { display: none; padding: .9rem 1rem; border-radius: 8px; margin-bottom: 1rem; font-weight: 700; }
.status.show { display: block; }
.status.success { color: #1d5b33; background: #e6f6eb; }
.status.error { color: #8b2a22; background: #fff0ee; }
.map-placeholder { display: grid; place-items: center; min-height: 220px; margin-top: 1.5rem; padding: 2rem; text-align: center; border: 1px dashed #b9c4d8; border-radius: 0; background: #eef1fb; color: var(--muted); }
.legal { max-width: 840px; }
.legal h2 { margin-top: 2.5rem; font-size: 1.65rem; }
.legal h3 { margin-top: 1.8rem; font-size: 1.15rem; }
.legal p, .legal li { color: var(--muted); }
.site-map { display: grid; gap: .7rem; max-width: 650px; }
.site-map a { padding: 1rem 1.2rem; border: 0; border-left: 3px solid var(--lime); border-radius: 0; color: var(--ink); font-weight: 750; background: #f4f7fb; }
.site-map a:hover { border-color: var(--orange); background: #fff8f3; }
.footer { padding: 3rem 0 1.3rem; background: #161d4a; color: #cfd7ff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.footer .brand { color: white; }
.footer h3 { color: white; font-size: 1rem; letter-spacing: .02em; }
.footer p { max-width: 360px; color: #aab5e4; }
.footer a:hover { color: white; }
.footer-links { display: grid; gap: .45rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .85rem; color: #9da9da; }
.reveal { animation: rise .55s both; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 1.25rem; right: 1.25rem; top: 70px; flex-direction: column; align-items: stretch; padding: .7rem; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem 1rem; }
  .nav .nav-cta { margin: .25rem 0 0; text-align: center; }
  .grid-3, .grid-2, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .split { gap: 2rem; }
  .cta { align-items: flex-start; flex-direction: column; padding: 2rem; }
  .form-card { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero { min-height: 590px; }
  .hero .container { padding-block: 4rem; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 1.5rem, 1160px); }
  .topbar .container { justify-content: center; min-height: 34px; font-size: .78rem; }
  .topbar .topbar-hide { display: none; }
  .nav-wrap { min-height: 70px; }
  .brand { font-size: 1.25rem; }
  .brand-mark { width: 36px; height: 36px; }
  .section { padding: 4rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}