:root {
    --ink: #1B2027;
    --ink-soft: #4A525C;
    --paper: #EEEDE5;
    --paper-2: #E3E1D6;
    --white: #FBFBF8;
    --steel: #15222E;
    --steel-2: #1E3245;
    --blue: #1C6FA8;
    --blue-dark: #134F7A;
    --orange: #E07C2C;
    --line: rgba(27,32,39,.16);
    --line-light: rgba(251,251,248,.28);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Public Sans',-apple-system,sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 {
    font-family: 'Oswald',sans-serif;
    text-transform: uppercase;
    letter-spacing: .01em;
    line-height: 1.08;
    margin: 0 0 .5em;
    font-weight: 600;
}
p {
    margin: 0 0 1em;
    color: var(--ink-soft);
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
	width:100%;
    display: block;
}
.mono {
    font-family: 'IBM Plex Mono',monospace;
    letter-spacing: .03em;
}
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}
.eyebrow {
    font-family: 'IBM Plex Mono',monospace;
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 600;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--orange);
    display: inline-block;
}
.eyebrow.on-dark {
    color: var(--orange);
}
/* ---------- NAV ---------- */
.topbar {
    background: var(--steel);
    color: var(--white);
    font-family: 'IBM Plex Mono',monospace;
    font-size: 12.5px;
    letter-spacing: .05em;
}
.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 32px;
    flex-wrap: wrap;
    gap: 6px;
}
.topbar a {
    color: var(--white);
    text-decoration: none;
}
.topbar .agr {
    color: #B9C4CD;
}
nav.mainnav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}
nav.mainnav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand img {
    height: 40px;
    width: auto;
}
.brand-txt {
    font-family: 'Oswald',sans-serif;
    font-weight: 600;
    font-size: 19px;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: .01em;
}
.brand-txt span {
    color: var(--blue);
}
.navlinks {
    display: flex;
    gap: 2px;
    align-items: center;
}
.navlinks a {
    text-decoration: none;
    color: var(--ink-soft);
    font-family: 'Oswald',sans-serif;
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 10px 14px;
    border-radius: 3px;
    transition: background .15s,color .15s;
}
.navlinks a:hover {
    background: var(--paper);
    color: var(--ink);
}
.navlinks a.active {
    color: var(--blue);
}
.navlinks a.active.cta {
    background: var(--blue);
}
.navlinks a.cta {
    background: var(--orange);
    color: var(--white);
    margin-left: 8px;
    padding: 10px 18px;
}
.navlinks a.cta:hover {
    background: var(--blue-dark);
}
/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald',sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 14.5px;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 3px;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .12s ease,background .15s,color .15s,border-color .15s;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
}
.btn-primary:hover {
    background: #c96a1f;
}
.btn-outline {
    border-color: var(--line-light);
    color: var(--white);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(251,251,248,.08);
}
.btn-outline-dark {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
}
.btn-outline-dark:hover {
    background: var(--ink);
    color: var(--white);
}
.btn-blue {
    background: var(--blue);
    color: var(--white);
}
.btn-blue:hover {
    background: var(--blue-dark);
}
/* ---------- HERO ---------- */
.hero {
    position: relative;
    background: var(--steel);
    color: var(--white);
    overflow: hidden;
}
.hero-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 70%;
    opacity: .4;
    filter: grayscale(15%) contrast(1.05);
}
.hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(21, 34, 46, .5) 55%, var(--steel) 100%);
}
.hero .wrap {
    position: relative;
    padding: 96px 32px 84px;
}
.hero h1 {
    font-size: clamp(34px,5vw,58px);
    max-width: 820px;
    color: var(--white);
}
.hero h1 em {
    font-style: normal;
    color: var(--orange);
}
.hero .lede {
    font-size: 18px;
    max-width: 560px;
    color: #D7DCE1;
}
.hero .actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.page-hero {
    background: var(--steel);
    color: var(--white);
    padding: 64px 0 56px;
    position: relative;
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(30px,4vw,44px);
    max-width: 760px;
}
.page-hero .lede {
    color: #D7DCE1;
    max-width: 640px;
    font-size: 16.5px;
}
/* ---------- TAG (signature element) ---------- */
.tag {
    position: relative;
    background: var(--white);
    border: 1.5px dashed var(--line);
    border-radius: 2px;
    padding: 26px 26px 24px 40px;
}
.tag::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--paper);
    border: 1.5px solid var(--ink-soft);
}
.tag.on-steel {
    background: var(--steel-2);
    border-color: rgba(251,251,248,.25);
}
.tag.on-steel::before {
    background: var(--steel);
    border-color: #7A8896;
}
.tag.on-steel h3, .tag.on-steel h4 {
    color: var(--white);
}
.tag.on-steel p {
    color: #C4CBD1;
}
.tag .tagno {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: 'IBM Plex Mono',monospace;
    font-size: 11px;
    color: var(--ink-soft);
    opacity: .55;
}
.tag.on-steel .tagno {
    color: #8FA0AC;
}
/* ---------- SECTIONS ---------- */
section {
    padding: 80px 0;
}
section.mission {
    padding-top:0;
}
section.tight {
    padding: 56px 0;
}
.section-steel {
    background: var(--steel);
    color: var(--white);
}
.section-steel h2 {
    color: var(--white);
}
.section-steel p {
    color: #C4CBD1;
}
.section-paper2 {
    background: var(--paper-2);
}
.divider {
    border: none;
    border-top: 1.5px dashed var(--line);
    margin: 0;
    position: relative;
}
.divider.on-steel {
    border-top-color: rgba(251,251,248,.2);
}
h2.h-lg {
    font-size: clamp(26px,3.4vw,38px);
    max-width: 640px;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.section-head p {
    max-width: 420px;
    margin: 0;
}
/* grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
/* service card */
.svc-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}
.svc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -18px rgba(21,34,46,.35);
}
.svc-num {
    font-family: 'IBM Plex Mono',monospace;
    color: var(--orange);
    font-size: 13px;
    letter-spacing: .08em;
    margin-bottom: 18px;
    display: block;
}
.svc-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.svc-card a.more {
    font-family: 'IBM Plex Mono',monospace;
    font-size: 13px;
    color: var(--blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
}
.svc-card a.more:hover {
    text-decoration: underline;
}
.flame-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
}
/* stat strip */
.stat-strip {
    display: flex;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
}
.stat {
    flex: 1;
    padding: 26px 24px;
    text-align: left;
    border-right: 1px solid var(--line);
}
.stat:last-child {
    border-right: none;
}
.stat b {
    display: block;
    font-family: 'Oswald',sans-serif;
    font-size: 30px;
    color: var(--blue);
}
.stat span {
    font-size: 13px;
    color: var(--ink-soft);
}
/* quote / safety banner */
.safety-banner {
    background: var(--blue);
    color: var(--white);
    border-radius: 4px;
    padding: 44px 44px;
    position: relative;
    background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 12px, transparent 12px 24px);
}
.safety-banner h3 {
    color: var(--white);
    font-size: 26px;
    max-width: 640px;
}
.safety-banner p {
    color: #DCEAF3;
    max-width: 600px;
}
/* photo frame */
.photo-frame {
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
}
.photo-cap {
    font-family: 'IBM Plex Mono',monospace;
    font-size: 11.5px;
    color: var(--ink-soft);
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    letter-spacing: .03em;
}
/* faq */
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}
.faq-item h4 {
    font-family: 'Public Sans',sans-serif;
    text-transform: none;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--ink);
    letter-spacing: 0;
}
.faq-item p {
    margin: 0;
}
.faq-q-mark {
    font-family: 'IBM Plex Mono',monospace;
    color: var(--orange);
    margin-right: 8px;
}
/* list w/ bullets styled as ticks */
ul.tick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.tick-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--ink-soft);
}
ul.tick-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--orange);
    border-radius: 50%;
}
ul.tick-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--orange);
    border-radius: 50%;
}
ul.tick-list.on-steel li {
    color: #C4CBD1;
}
/* CTA band */
.cta-band {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    padding: 95px 0;
    background-size: cover;
    background-position: center 10%;
    position: relative;
}
.cta-fade {
    position: absolute;
    inset: 0;
    background: rgba(21,34,46,.72);
}
.cta-band .wrap {
    position: relative;
}
.cta-band h2 {
    color: var(--white);
}
.cta-band p {
    color: #C4CBD1;
    max-width: 520px;
    margin: 0 auto 30px;
}
/* FOOTER */
footer {
    background: var(--steel);
    color: #C4CBD1;
    padding: 56px 0 28px;
}
footer .grid-4 {
    grid-template-columns: 33% repeat(3, 1fr);
    gap: 36px;
}
footer h4 {
    color: var(--white);
    font-size: 14px;
    letter-spacing: .06em;
    margin-bottom: 16px;
}
footer p, footer a {
    color: #AEB8C0;
    font-size: 14.5px;
    text-decoration: none;
    line-height: 1.9;
}
footer a:hover {
    color: var(--white);
}
footer .brand-txt {
    color: var(--white);
}
footer .brand-txt span {
    color: var(--orange);
}
.foot-bottom {
    border-top: 1px solid rgba(251,251,248,.12);
    margin-top: 40px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'IBM Plex Mono',monospace;
    font-size: 12px;
    color: #7E8A93;
}
/* form */
.form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 40px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field.full {
    grid-column: 1/-1;
}
.form-field label {
    font-family: 'IBM Plex Mono',monospace;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.form-field input,.form-field select,.form-field textarea {
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 12px 14px;
    font-family: 'Public Sans',sans-serif;
    font-size: 15px;
    background: var(--paper);
    color: var(--ink);
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus {
    outline: 2px solid var(--blue);
    outline-offset: 1px;
    background: var(--white);
}
.form-note {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-top: 10px;
    font-family: 'IBM Plex Mono',monospace;
}
.form-note.success{
    background:#e8f5ec;
    color:#2f6f44;
    border:1px solid #b9dfc4;
    padding:12px 14px;
    border-radius:3px;
    margin-top: 20px;
}
.contact-card {
    background: var(--steel-2);
    border: 1px solid rgba(251,251,248,.15);
    border-radius: 4px;
    padding: 30px;
    color: var(--white);
}
.contact-card h4 {
    color: var(--orange);
    font-family: 'IBM Plex Mono',monospace;
    text-transform: uppercase;
    font-size: 12.5px;
    letter-spacing: .08em;
    margin-bottom: 10px;
}
.contact-card p {
    color: #DCE1E5;
    margin-bottom: 22px;
}
.contact-card .big {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: var(--white);
    text-transform: none;
    margin-bottom: 0;
}
.contact-card .big, .contact-card .big a {
    text-decoration: none!important;
}
/* mobile nav */
.mobile-toggle {
    display: none;
}
details.mnav {
    display: none;
}
/* logo lockups (real files) */
.brand img.logo-img {
    height: 60px;
    width: auto;
    display: block;
}
footer .brand img.logo-img {
    height: 55px;
    width: auto;
    margin-bottom: 14px;
}
@media (max-width: 900px) {
.grid-2 {
	grid-template-columns: 1fr;
}
.grid-3 {
	grid-template-columns: 1fr;
}
.grid-4 {
	grid-template-columns: 1fr 1fr;
}
.stat-strip {
	flex-wrap: wrap;
}
.stat {
	flex: 1 1 50%;
	border-bottom: 1px solid var(--line);
}
.navlinks {
	display: none;
}
.form-row {
	grid-template-columns: 1fr;
}
.topbar .agr {
	display: none;
}
.topbar .wrap {
	justify-content: center;
	align-items: center;
}
.mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 3px;
	background: var(--white);
	cursor: pointer;
	padding-bottom: 1px;
}
details.mnav {
	display: block;
	position: relative;
	font-size: 20px;
}
details.mnav summary {
	list-style: none;
}
details.mnav summary::-webkit-details-marker {
	display: none;
}
details.mnav[open] .mobile-panel {
	display: flex;
}
.mobile-panel {
	display: none;
	flex-direction: column;
	position: absolute;
	right: 0;
	top: 45px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 4px;
	min-width: 220px;
	box-shadow: 0 18px 38px -18px rgba(21,34,46,.35);
	overflow: hidden;
	z-index: 60;
}
.mobile-panel a {
	padding: 14px 18px;
	text-decoration: none;
	color: var(--ink);
	font-family: 'Oswald',sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: .04em;
	border-bottom: 1px solid var(--line);
}
.mobile-panel a.cta {
	border-bottom: 0;
}
.mobile-panel a.active {
	color: var(--blue);
}
}
@media (max-width: 600px) {
body {
	font-size: 15px;
	line-height: 1.5;
}
#site-footer .grid-4 {
	grid-template-columns: 1fr;
	gap: 25px;
}
.wrap {
	padding: 0 20px;
}
.foot-bottom {
	font-size: 11px;
}
.brand img.logo-img {
	height: 50px;
}
.hero .wrap {
	padding: 30px 20px;
}
.grid-4 {
	grid-template-columns: 1fr;
}
.hero .lede, .page-hero .lede {
    font-size: 16px;
}
.qui .grid-2, .pourquoi .grid-2, .formateur .grid-2 {
	gap:25px!important;
}
nav.mainnav .wrap {
    padding: 14px 20px;
}
.topbar .wrap {
    padding: 8px 20px;
}
.form-card, .svc-card, .contact-card, .safety-banner {
    padding: 34px 28px;
}
}