:root {
    --page-bg: #ffffff;
    --white: #ffffff;
    --soft-white: #f8f8f6;
    --section-beige: #f2efea;
    --section-green-pale: #dfe7db;
    --brochure-bar: #d9cfbb;
    --footer-green: #6d9164;
    --footer-green-light: #c4dfb6;
    --gold: #b7832d;
    --gold-dark: #a17024;
    --text: #717171;
    --text-dark: #353535;
    --text-soft: #8a8a8a;
    --line-soft: rgba(255, 255, 255, 0.28);
    --line-dark-soft: rgba(0, 0, 0, 0.12);
    --wine: #4a1a24;
    --wine-dark: #391019;
    --taupe: #5a5250;
    --green-icon: #6f8f68;
	--green-hover: #A2CA95;
    --shadow: none;
    --container: 1180px;
    --content-wide: 1180px;
    --content-medium: 980px;
    --content-narrow: 860px;
    --content-about-top: 980px;
    --content-about-profile: 1020px;
    --header-height: 66px;
    --transition: 0.28s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

.site-shell {
    min-height: 100vh;
    width: 100%;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.content-wide {
    width: min(calc(100% - 40px), var(--content-wide));
    margin: 0 auto;
}

.content-medium {
    width: min(calc(100% - 40px), var(--content-medium));
    margin: 0 auto;
}

.content-narrow {
    width: min(calc(100% - 40px), var(--content-narrow));
    margin: 0 auto;
}

/* =========================
   WRAPPERS GLOBAUX
========================= */

.page-wrap,
.page-home {
    width: 100%;
    margin: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

section,
.home-hero,
.home-intro,
.home-services,
.home-news,
.footer-brochure-bar,
.footer-main,
.footer-bottom,
.cta-band,
.section,
.section--soft,
.section--green-pale,
.site-footer,
.hero {
    width: 100%;
}

/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: var(--gold);
    box-shadow: none;
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}

.brand-image-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.brand-image {
    display: block;
    width: 442px;
    height: 56px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 18px;
    min-width: 0;
}

.header-phone {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.header-linkedin {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.header-linkedin:hover {
    background: var(--wine);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    justify-self: end;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.subnav {
    position: absolute;
    left: 50%;
    top: calc(100% - 0px);
    transform: translateX(-50%);
    z-index: 110;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 18px 12px;
    background: rgba(255, 255, 255, 0.97);
}

.subnav__link {
    font-size: 0.92rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: #2f2f2f;
}

.subnav__link.is-active {
    font-weight: 800;
}

.subnav__sep {
    font-size: 0.92rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: #2f2f2f;
}

/* =========================
   HERO GÉNÉRIQUE
========================= */

.hero {
    position: relative;
    min-height: 260px;
    background: #d8ddd2;
}

.hero--short {
    min-height: 260px;
}

.hero__media {
    width: 100%;
    min-height: 260px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero__media--placeholder {
    background-color: #cfcac0;
}

.hero__overlay {
    display: none;
}

.hero__floating-nav {
    display: none !important;
}

/* =========================
   PAGE HOME
========================= */

.home-hero {
    position: relative;
    min-height: 468px;
    background: #d8ddd2;
}

.home-hero__image {
    width: 100%;
    min-height: 468px;
}

.home-hero__menu {
    display: none !important;
}

.home-intro {
    background: var(--white);
    padding: 34px 0 40px;
}

.home-intro__inner {
    width: min(calc(100% - 40px), var(--content-narrow));
    margin: 0 auto;
    text-align: center;
}

.home-title {
    margin: 0;
    color: var(--text-dark);
    text-align: center;
    text-transform: uppercase;
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.22em;
}

.home-title--gold {
    color: var(--gold);
}

.home-intro__text {
    margin-top: 18px;
}

.home-intro__text p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 2.02;
    letter-spacing: 0.08em;
    color: #787878;
}

.home-intro__text strong {
    font-weight: 700;
    color: #5b5b5b;
}

.home-intro__cta {
    margin-top: 20px;
}

.home-services {
    background: var(--section-beige);
    padding: 52px 0 34px;
}

.home-services__inner {
    width: min(calc(100% - 40px), 920px);
    margin: 0 auto;
    text-align: center;
}

.home-services__subtitle {
    margin: 18px 0 0;
    color: #8a8a8a;
    font-size: 0.91rem;
    line-height: 1.75;
    letter-spacing: 0.08em;
}

.home-services__grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: start;
}

.service-card {
    text-align: center;
}

.service-card__visual {
    margin: 0 auto 18px;
}

.service-card__title {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.service-card__text p {
    margin: 0;
    color: #7b7b7b;
    font-size: 0.92rem;
    line-height: 1.95;
    letter-spacing: 0.065em;
}

.service-card__text strong {
    color: #565656;
    font-weight: 700;
}

.home-services__cta {
    margin-top: 28px;
}

.home-news {
    background: var(--white);
    padding: 38px 0 30px;
}

.home-news__inner {
    width: min(calc(100% - 40px), 900px);
    margin: 0 auto;
    text-align: center;
}

.home-news__text {
    margin: 16px 0 20px;
    color: #8b8b8b;
    font-size: 0.92rem;
    line-height: 1.75;
    letter-spacing: 0.075em;
}

/* =========================
   BLOCS GÉNÉRIQUES
========================= */

.section {
    padding: 58px 0;
}

.section--tight {
    padding: 42px 0;
}

.section--soft {
    background: var(--section-beige);
}

.section--green-pale {
    background: var(--section-green-pale);
}

.section__inner {
    width: min(calc(100% - 40px), var(--content-narrow));
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.78rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-align: center;
}

.title {
    margin: 0 0 14px;
    text-align: center;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.2;
    letter-spacing: 0.16em;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 800;
}

.title--gold {
    color: var(--gold);
}

.subtitle {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #868686;
}

.text-block {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.94rem;
    line-height: 1.9;
    letter-spacing: 0.06em;
    color: #787878;
}

.text-block strong {
    font-weight: 700;
    color: var(--text-dark);
}

.center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.05fr 1.35fr;
    gap: 34px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    text-align: center;
}

.icon-badge {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: none;
}

.icon-badge--gold { background: var(--gold); }
.icon-badge--green { background: var(--green-icon); }
.icon-badge--wine { background: var(--wine); }
.icon-badge--taupe { background: var(--taupe); }

.card h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dark);
}

.card p {
    margin: 0;
    line-height: 1.9;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    color: #7e7e7e;
}

/* =========================
   IMAGE SLOTS
========================= */

.image-slot {
    background-color: #d7d7d4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.image-slot:empty::after {
    content: "";
    position: absolute;
    inset: 0;
}

.image-slot--hero {
    min-height: 468px;
}

.image-slot--icon-round {
    width: 112px;
    height: 112px;
    /* border-radius: 999px; */
    background-color: transparent;
    background-size: 100%;
}

.media-placeholder {
    width: 100%;
    background: linear-gradient(135deg, rgba(180,129,45,0.12), rgba(109,143,98,0.10)), linear-gradient(180deg, #ddd8cf, #d2d8d0);
    border: 0;
    overflow: hidden;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.media-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
}

.media-placeholder--hero {
    min-height: 420px;
}

.media-placeholder--hero-short {
    min-height: 260px;
}

.media-placeholder--square {
    aspect-ratio: 1 / 1;
}

.media-placeholder--portrait {
    aspect-ratio: 0.8 / 1;
}

.media-placeholder--wide {
    aspect-ratio: 2.9 / 1;
}

.media-placeholder--landscape {
    aspect-ratio: 2.1 / 1;
}

/* =========================
   BUTTONS
========================= */

.btn-vec {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 33px;
    padding: 6px 18px 5px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.btn-vec:hover {
    transform: translateY(-1px);
}

.btn-vec--outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-vec--outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: none;
}

.btn-vec--linkedin {
    border: 1px solid var(--wine);
    background: var(--white);
    color: var(--wine);
    padding-right: 6px;
    min-height: 33px;
}

.btn-vec--linkedin:hover {
    background: var(--wine);
    color: var(--white);
}

.btn-vec__linkedin-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wine);
    color: var(--white);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0;
}

.btn-vec--linkedin:hover .btn-vec__linkedin-icon {
    background: var(--white);
    color: var(--wine);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: none;
}

.btn--footer {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.btn--footer:hover {
    background: transparent;
    border-color: var(--gold) !important;
    color: var(--gold);
}

.btn--footer-light {
    background: #bdd7af;
    border-color: #bdd7af;
    color: rgba(255, 255, 255, 0.98);
    min-width: 258px;
}

.btn--footer-light:hover {
    background: transparent;
    border-color: var(--white) !important;
    color: var(--white) !important;
}

/* =========================
   CTA BAND
========================= */

.cta-band {
    background: var(--brochure-bar);
    padding: 20px 0;
}

.cta-band--green {
    background: var(--footer-green-light);
}

.cta-band__inner {
    width: min(calc(100% - 40px), var(--content-medium));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-band__inner p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.35rem);
    letter-spacing: 0.08em;
    color: #4d5d4b;
    text-align: center;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: var(--white);
}

.footer-brochure-bar {
    background: var(--brochure-bar);
}

.footer-brochure-bar__inner {
    width: min(calc(100% - 40px), var(--content-medium));
    min-height: 71px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-brochure-bar__inner p {
    margin: 0;
    color: #4e6153;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}

.footer-main {
    background: var(--footer-green);
    padding: 36px 0 30px;
}

.footer-grid {
    width: min(calc(100% - 40px), 1150px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.footer-col {
    min-height: 136px;
}

.footer-col:not(:last-child) {
    border-right: 1px solid var(--line-soft);
    padding-right: 28px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.footer-logo-image {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer-brand-title,
.footer-contact-title {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-brand p {
    margin: 0;
    color: rgba(255,255,255,0.95);
    font-size: 0.92rem;
    line-height: 1.82;
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    padding-top: 4px;
}

.footer-links a {
    display: block;
    width: 100%;
    max-width: 220px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.28);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-links a:hover{
	color: var(--green-hover) !important;
}

.footer-links a.is-active {
    font-weight: 800;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.footer-phone {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.footer-bottom {
    background: #f2f0ec;
    padding: 14px 0 15px;
}

.footer-bottom__inner {
    width: min(calc(100% - 40px), var(--content-medium));
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #b1b1b1;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
}

/* =========================
   EFFECTS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   PAGE A PROPOS
========================================= */

.page-about .reveal {
    opacity: 1;
    transform: none;
}

.page-about {
    width: 100%;
    background: #ffffff;
}

.page-about .hero,
.page-about .hero--short {
    min-height: 260px;
    background: #bcb19e;
}

.page-about .hero__media {
    min-height: 260px;
    background-color: #b8ae9a;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-about .about-intro {
    background: #ffffff;
    padding: 56px 0 54px;
}

.page-about .about-intro__inner {
    width: min(calc(100% - 40px), 1040px);
    margin: 0 auto;
}

.page-about .about-intro__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: start;
}

.page-about .about-intro__image {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    margin: 0;
    background-color: #d7d7d4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-about .about-intro__content {
    padding-top: 2px;
}

.page-about .about-intro__eyebrow {
    margin: 0 0 10px;
    text-align: left;
    font-size: 0.7rem;
    line-height: 1.45;
    letter-spacing: 0.28em;
    color: #3c3c3c;
}

.page-about .about-intro__title {
    margin: 0 0 16px;
    text-align: left;
    font-size: 1.02rem;
    line-height: 1.2;
    letter-spacing: 0.14em;
    color: var(--gold);
}

.page-about .about-intro__text {
    max-width: 700px;
}

.page-about .about-intro__text p {
    margin: 0 0 8px;
    text-align: left;
    font-size: 0.88rem;
    line-height: 1.62;
    letter-spacing: 0.035em;
    color: #767676;
}

.page-about .about-intro__text p:last-child {
    margin-bottom: 0;
}

.page-about .about-intro__text strong {
    font-weight: 700;
    color: #4e4e4e;
}

.page-about .about-method {
    background: #dfe7db;
    padding: 44px 0 36px;
}

.page-about .about-method__inner {
    width: min(calc(100% - 40px), 1160px);
    margin: 0 auto;
}

.page-about .about-method__title {
    margin: 0 0 12px;
    font-size: 1rem;
    letter-spacing: 0.16em;
    color: #353535;
}

.page-about .about-method__subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.83rem;
    line-height: 1.65;
    letter-spacing: 0.06em;
    color: #8a8a8a;
}

.page-about .about-method__subtitle strong {
    font-weight: 700;
    color: #555555;
}

.page-about .about-method__grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.page-about .about-method__card {
    position: relative;
    padding: 18px 28px 4px;
    text-align: center;
}

.page-about .about-method__card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    right: 0;
    width: 1px;
    height: calc(100% - 52px);
    background: rgba(0, 0, 0, 0.14);
}

.page-about .about-method__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    border-radius: 999px;
    font-size: 0.65rem;
    line-height: 1;
    box-shadow: none;
}

.page-about .about-method__card h3 {
    margin: 0 0 12px;
    font-size: 0.88rem;
    line-height: 1.35;
    letter-spacing: 0.14em;
    color: #333333;
}

.page-about .about-method__card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.75;
    letter-spacing: 0.03em;
    color: #787878;
}

.page-about .about-method__card strong {
    font-weight: 700;
    color: #555555;
}

.page-about .about-wide-image {
    width: min(calc(100% - 40px), 1160px);
    margin: 0 auto;
    aspect-ratio: 2.88 / 1;
    background-color: #d7d7d4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-about .about-profile {
    background: #ffffff;
    padding: 48px 0 42px;
}

.page-about .about-profile__inner {
    width: min(calc(100% - 40px), 1040px);
    margin: 0 auto;
    text-align: center;
}

.page-about .profile-title {
    margin: 0 0 12px;
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 0.26em;
    color: #3d3d3d;
}

.page-about .profile-name {
    margin: 0 0 22px;
    font-size: 0.98rem;
    line-height: 1.2;
    letter-spacing: 0.18em;
    color: #2f2f2f;
}

.page-about .about-profile__grid {
    display: grid;
    grid-template-columns: 1fr 282px;
    gap: 34px;
    align-items: start;
}

.page-about .about-profile__text {
    text-align: center;
    max-width: none;
    margin: 0;
    padding: 2px 0 0;
}

.page-about .about-profile__text p {
    margin: 0 0 16px;
    font-size: 0.84rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: #777777;
}

.page-about .about-profile__text p:last-child {
    margin-bottom: 0;
}

.page-about .about-profile__text strong {
    font-weight: 700;
    color: #505050;
}

.page-about .about-profile__image {
    width: 100%;
    max-width: 282px;
    aspect-ratio: 0.8 / 1;
    margin: 0 auto;
    background-color: #d7d7d4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-about .about-why {
    background: #f2efea;
    padding: 48px 0 44px;
}

.page-about .about-why__inner {
    width: min(calc(100% - 40px), 1140px);
    margin: 0 auto;
}

.page-about .about-why__title {
    margin: 0 0 12px;
    font-size: 1rem;
    letter-spacing: 0.16em;
    color: #353535;
}

.page-about .about-why__subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.82rem;
    line-height: 1.65;
    letter-spacing: 0.05em;
    color: #8b8b8b;
}

.page-about .about-why__grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

.page-about .about-why__card {
    text-align: center;
}

.page-about .about-why__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    box-shadow: none;
}

.page-about .about-why__card h3 {
    margin: 0 0 14px;
    font-size: 0.9rem;
    line-height: 1.35;
    letter-spacing: 0.16em;
    color: #333333;
}

.page-about .about-why__card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.82;
    letter-spacing: 0.03em;
    color: #7c7c7c;
}

/* =========================================
   PAGE NOTRE OFFRE
========================================= */

.page-offer .reveal {
    opacity: 1;
    transform: none;
}

.page-offer {
    width: 100%;
    background: #ffffff;
}

.page-offer .hero,
.page-offer .hero--short {
    min-height: 260px;
    background: #b9c29f;
}

.page-offer .hero__media {
    min-height: 260px;
    background-color: #c4cfb0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-offer .offer-intro {
    background: #ffffff;
    padding: 34px 0 22px;
}

.page-offer .offer-intro__inner {
    width: min(calc(100% - 40px), 980px);
    margin: 0 auto;
    text-align: center;
}

.page-offer .offer-intro__title {
    margin: 0 0 16px;
    font-size: 1.02rem;
    line-height: 1.2;
    letter-spacing: 0.16em;
    color: var(--gold);
}

.page-offer .offer-intro__subtitle-title {
    margin: 0 0 16px;
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: 0.16em;
    color: #343434;
    font-weight: 700;
}

.page-offer .offer-intro__subtitle {
    max-width: 820px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
    color: #838383;
}

.page-offer .offer-diagnostics {
    background: #f2efea;
    padding: 42px 0 46px;
}

.page-offer .offer-diagnostics__inner {
    width: min(calc(100% - 40px), 1140px);
    margin: 0 auto;
}

.page-offer .offer-diagnostics__title {
    margin: 0 0 14px;
    font-size: 1rem;
    letter-spacing: 0.16em;
    color: #353535;
}

.page-offer .offer-diagnostics__subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.86rem;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: #858585;
}

.page-offer .offer-diagnostics__subtitle strong {
    font-weight: 700;
    color: #555555;
}

.page-offer .offer-diagnostics__grid {
    margin-top: 48px !important;
    gap: 48px;
}

.page-offer .offer-diagnostics__card {
    text-align: center;
}

.page-offer .offer-diagnostics__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    box-shadow: none;
}

.page-offer .offer-diagnostics__card h3 {
    margin: 0 0 12px;
    font-size: 0.96rem;
    line-height: 1.35;
    letter-spacing: 0.16em;
    color: #343434;
}

.page-offer .offer-diagnostics__card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.82;
    letter-spacing: 0.04em;
    color: #7a7a7a;
}

.page-offer .offer-diagnostics__card strong {
    font-weight: 700;
    color: #555555;
}

.page-offer .offer-cta-green {
    background: #a9cca0;
    padding: 18px 0;
}

.page-offer .offer-cta-green__inner {
    width: min(calc(100% - 40px), 980px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.page-offer .offer-cta-green__inner p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #49614e;
    text-align: center;
}

.page-offer .offer-cta-green .btn--footer {
    background: #6f8f68;
    border-color: #6f8f68;
    color: #ffffff;
}

.page-offer .offer-cta-green .btn--footer:hover {
	background: transparent !important;
    border-color: #6f8f68 !important;
    color: #6f8f68 !important;
}

.page-offer .offer-landscape-image {
    width: 100%;
    aspect-ratio: 2.78 / 1;
    margin: 0;
    background-color: #d7d7d4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-profile__grid .profile-text.about-profile__text p, .about-profile__grid .profile-text.about-profile__text h1{
	text-align: end;
}

.offer-diagnostics__icon--image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
}

.about-method__icon--image,
.about-why__icon--image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
}


.footer-bottom {
    background: #f2f0ec;
    padding: 14px 0 15px;
}

.footer-bottom__inner {
    width: min(calc(100% - 40px), var(--content-medium));
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 0;
    color: #a6a6a6;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}

.footer-bottom__inner > * {
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.footer-bottom__inner > *:not(:first-child) {
    padding-left: 16px;
    margin-left: 16px;
}

.footer-bottom__inner > *:not(:first-child)::before {
    content: "|";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-52%);
    color: #c2c2c2;
    font-weight: 400;
    letter-spacing: 0;
}

.footer-bottom__inner a {
    color: #9a9a9a;
    transition: color var(--transition);
}

.footer-bottom__inner a:hover {
    color: var(--gold);
}

.footer-credit {
    gap: 8px;
}

.footer-credit__x {
    color: #c2c2c2;
    letter-spacing: 0;
}

.page-home {
    overflow-x: hidden;
}

.page-home .home-hero {
    min-height: clamp(220px, 52vw, 468px);
}

.page-home .home-hero__image,
.page-home .image-slot--hero {
    min-height: clamp(220px, 52vw, 468px);
    background-position: center center;
    background-size: cover;
}

.page-home .home-intro {
    padding: 42px 0 46px;
}

.page-home .home-intro__inner {
    width: min(calc(100% - 40px), 920px);
}

.page-home .home-intro__text {
    max-width: 820px;
    margin: 18px auto 0;
}

.page-home .home-intro__text p {
    line-height: 1.9;
}

.page-home .home-services {
    padding: 54px 0 42px;
}

.page-home .home-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
}

.page-home .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-home .service-card__text {
    max-width: 360px;
    margin: 0 auto;
}

.page-home .home-news {
    padding: 42px 0 40px;
}

.page-home .home-news__inner {
    width: min(calc(100% - 40px), 920px);
}

.subnav__link:hover{
	
}

.subnav__link {
    position: relative;
    padding: 6px 10px;
    border-radius: 999px;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.subnav__link:hover {
    color: var(--gold);
    background: rgba(183, 131, 45, 0.08);
    transform: translateY(-1px);
}

h1{
	font-size: 1.30rem !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {
    .brand-image {
        width: 390px;
        height: 60px;
    }

    .footer-brand-image {
        width: 275px;
        height: 108px;
    }
}

@media (max-width: 1100px) {
    .home-services__grid {
        gap: 34px;
    }

    .footer-grid,
    .grid-2,
    .profile-section .grid-2 {
        grid-template-columns: 1fr !important;
    }

    .feature-split,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .feature-split .card:not(:last-child)::after {
        display: none;
    }

    .footer-col:not(:last-child) {
        border-right: 0;
        /*border-bottom: 1px solid rgba(255,255,255,0.28);*/
        padding-right: 0;
        padding-bottom: 24px;
    }
	
	.footer-brand {
		justify-content: center;
	}

	.footer-links {
		align-items: center;
	}

	.footer-contact {
		align-items: center;
		text-align: center;
	}

    .section__inner .grid-2 > div:last-child .eyebrow,
    .section__inner .grid-2 > div:last-child .title,
    .section__inner .grid-2 > div:last-child .text-block {
        text-align: center !important;
    }

    .section__inner .grid-2 > div:last-child .text-block {
        margin: 0 auto !important;
        max-width: 760px !important;
    }

    .media-placeholder--portrait,
    .media-placeholder--square {
        max-width: 320px;
    }

    .page-about .about-profile__grid,
.page-about .about-method__grid,
.page-about .about-why__grid,
.page-offer .offer-diagnostics__grid {
    grid-template-columns: 1fr;
}

    .page-about .about-intro__image,
    .page-about .about-profile__image {
        margin: 0 auto;
    }

    .page-about .about-intro__content,
    .page-about .about-intro__eyebrow,
    .page-about .about-intro__title,
    .page-about .about-intro__text p {
        text-align: center;
    }

    .page-about .about-method__card:not(:last-child)::after {
        display: none;
    }

    .page-about .about-method__card {
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer-col--brand {
        justify-content: center;
    }

    .footer-brand-image-link {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
        text-align: center;
    }
	
	.footer-links a {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 920px) {
    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        /*display: inline-block;*/
		display: none;
    }

    .header-contact {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        background: rgba(183,131,45,0.98);
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: var(--transition);
        box-shadow: none;
        margin-left: 0;
        justify-self: auto;
    }

    .header-contact.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-phone {
        text-align: center;
    }

    .header-linkedin {
        margin: 0 auto;
    }

    .subnav {
        top: calc(100% - 2px);
        width: calc(100% - 32px);
        max-width: 420px;
        padding: 11px 14px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .subnav__link,
    .subnav__sep {
        font-size: 0.8rem;
        letter-spacing: 0.12em;
    }

    .hero,
    .hero--short,
    .hero__media,
    .page-about .hero,
    .page-about .hero--short,
    .page-about .hero__media,
    .page-offer .hero,
    .page-offer .hero--short,
    .page-offer .hero__media {
        min-height: 220px;
    }

    .page-about .about-wide-image {
        width: 100%;
        aspect-ratio: 2.35 / 1;
    }

    .page-offer .offer-landscape-image {
        aspect-ratio: 2.2 / 1;
    }
	
	.footer-phone {
		width: 100%;
	}
	
	.footer-brochure-bar__inner p, .page-offer .offer-cta-green__inner p {
		font-size: 0.84rem;
		width: 100%;
	}
	
	.footer-brochure-bar__inner, .page-offer .offer-cta-green__inner {
        padding: 14px 0;
        gap: 14px;
    }
	
	h1{
		font-size: 1.30rem !important;
	}
}

@media (max-width: 680px) {
    :root {
        --header-height: 60px;
    }

    .container,
    .content-wide,
    .content-medium,
    .content-narrow,
    .home-intro__inner,
    .home-services__inner,
    .home-news__inner,
    .section__inner,
    .footer-brochure-bar__inner,
    .footer-grid,
    .footer-bottom__inner,
    .cta-band__inner,
    .section--green-pale .section__inner,
    .section--soft .section__inner,
    .section__inner.profile-section,
    .page-about .about-intro__inner,
    .page-about .about-method__inner,
    .page-about .about-profile__inner,
    .page-about .about-why__inner,
    .page-offer .offer-intro__inner,
    .page-offer .offer-diagnostics__inner,
    .page-offer .offer-cta-green__inner {
        width: calc(100% - 24px);
    }

    .header-phone {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }

    .subnav {
        width: calc(100% - 24px);
        padding: 10px 12px;
        gap: 8px;
    }

    .subnav__link,
    .subnav__sep {
        font-size: 0.76rem;
        letter-spacing: 0.12em;
    }

    .hero,
    .hero--short,
    .hero__media,
    .page-about .hero,
    .page-about .hero--short,
    .page-about .hero__media,
    .page-offer .hero,
    .page-offer .hero--short,
    .page-offer .hero__media {
        min-height: 180px;
    }

    .home-intro,
    .home-services,
    .home-news,
    .section {
        padding-left: 0;
        padding-right: 0;
    }

    .section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .home-title,
    .title {
        font-size: 1rem;
        letter-spacing: 0.16em;
    }

    .home-intro__text p,
    .home-services__subtitle,
    .service-card__text p,
    .home-news__text,
    .subtitle,
    .text-block,
    .card p,
    .profile-text p,
    .feature-split p,
    .page-about .about-intro__text p,
    .page-about .about-method__card p,
    .page-about .about-profile__text p,
    .page-about .about-why__card p,
    .page-about .about-method__subtitle,
    .page-about .about-why__subtitle,
    .page-offer .offer-intro__subtitle,
    .page-offer .offer-diagnostics__subtitle,
    .page-offer .offer-diagnostics__card p,
    .page-offer .offer-cta-green__inner p {
        font-size: 0.84rem;
        line-height: 1.72;
    }

    .image-slot--icon-round {
        width: 94px;
        height: 94px;
    }

    .feature-split .icon-badge,
    .section--soft .icon-badge {
        margin-bottom: 14px;
    }

    .footer-main {
        padding: 26px 0;
    }
	
	.footer-brand {
		flex-direction: column;
		align-items: center;
		gap: 14px;
		text-align: center;
	}

	.btn--footer-light {
		min-width: 100%;
	}

	.footer-bottom__inner {
		gap: 10px;
		font-size: 0.7rem;
		letter-spacing: 0.12em;
	}

    .btn--footer-light {
        min-width: 100%;
    }

    .footer-bottom__inner {
        gap: 10px;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }

    .media-placeholder--wide {
        aspect-ratio: 2 / 1;
    }

    .media-placeholder--portrait,
    .media-placeholder--square {
        max-width: 100%;
    }

    .page-about .about-intro,
    .page-about .about-method,
    .page-about .about-profile,
    .page-about .about-why,
    .page-offer .offer-intro,
    .page-offer .offer-diagnostics,
    .page-offer .offer-cta-green {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page-about .about-wide-image {
        aspect-ratio: 2 / 1;
    }

    .page-about .about-intro__eyebrow,
    .page-about .profile-title {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    .page-about .about-intro__title,
    .page-about .about-method__title,
    .page-about .about-why__title,
    .page-about .profile-name,
    .page-offer .offer-intro__title,
    .page-offer .offer-diagnostics__title {
        font-size: 0.95rem;
        letter-spacing: 0.14em;
    }

    .page-offer .offer-intro__subtitle-title {
        font-size: 0.92rem;
        letter-spacing: 0.14em;
    }

    .page-offer .offer-landscape-image {
        aspect-ratio: 2 / 1;
    }

    .footer-brand-image {
        width: 220px;
        height: 90px;
    }
}

/* ---------- TABLETTE ---------- */
@media (max-width: 1024px) {
    .page-home .home-intro__inner,
    .page-home .home-services__inner,
    .page-home .home-news__inner {
        width: min(calc(100% - 32px), 900px);
    }

    .page-home .home-services__grid {
        gap: 30px;
    }

    .page-home .home-intro__text p,
    .page-home .service-card__text p,
    .page-home .home-news__text {
        letter-spacing: 0.045em;
    }
}

/* ---------- PETITE TABLETTE ---------- */
@media (max-width: 820px) {
    .page-home .home-hero {
        min-height: 360px;
    }

    .page-home .home-hero__image,
    .page-home .image-slot--hero {
        min-height: 360px;
    }

    .page-home .home-intro {
        padding: 34px 0 38px;
    }

    .page-home .home-services {
        padding: 42px 0 38px;
    }

    .page-home .home-news {
        padding: 34px 0 34px;
    }

    .page-home .home-services__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .page-home .service-card__text {
        max-width: 520px;
    }

    .page-home .home-title {
        font-size: 1.02rem;
        line-height: 1.45;
        letter-spacing: 0.18em;
    }

    .page-home .home-services__subtitle,
    .page-home .home-news__text,
    .page-home .home-intro__text p,
    .page-home .service-card__text p {
        font-size: 0.88rem;
        line-height: 1.8;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 680px) {
    .page-home .home-hero {
        min-height: 260px;
    }

    .page-home .home-hero__image,
    .page-home .image-slot--hero {
        min-height: 260px;
        background-position: center center;
    }

    .page-home .home-intro,
    .page-home .home-services,
    .page-home .home-news {
        padding-left: 0;
        padding-right: 0;
    }

    .page-home .home-intro {
        padding-top: 28px;
        padding-bottom: 32px;
    }

    .page-home .home-services {
        padding-top: 34px;
        padding-bottom: 32px;
    }

    .page-home .home-news {
        padding-top: 30px;
        padding-bottom: 32px;
    }

    .page-home .home-intro__inner,
    .page-home .home-services__inner,
    .page-home .home-news__inner {
        width: calc(100% - 24px);
    }

    .page-home .home-title {
        font-size: 0.95rem;
        line-height: 1.45;
        letter-spacing: 0.14em;
    }

    .page-home .home-intro__text {
        margin-top: 14px;
    }

    .page-home .home-intro__text p,
    .page-home .home-services__subtitle,
    .page-home .service-card__text p,
    .page-home .home-news__text {
        font-size: 0.84rem;
        line-height: 1.72;
        letter-spacing: 0.03em;
    }

    .page-home .home-services__subtitle br,
    .page-home .home-intro__text br,
    .page-home .service-card__text br {
        display: none;
    }

    .page-home .home-services__grid {
        margin-top: 28px;
        gap: 34px;
    }

    .page-home .service-card__visual {
        margin-bottom: 14px;
    }

    .page-home .service-card__title {
        font-size: 0.9rem;
        letter-spacing: 0.14em;
        margin-bottom: 10px;
    }

    .page-home .home-intro__cta,
    .page-home .home-services__cta {
        margin-top: 18px;
    }

    .page-home .btn-vec {
        width: 100%;
        max-width: 280px;
    }
}

/* ---------- PETIT MOBILE ---------- */
@media (max-width: 480px) {
    .page-home .home-hero {
        min-height: 210px;
    }

    .page-home .home-hero__image,
    .page-home .image-slot--hero {
        min-height: 210px;
    }

    .page-home .home-title {
        font-size: 0.88rem;
        letter-spacing: 0.12em;
    }

    .page-home .home-intro__text p,
    .page-home .home-services__subtitle,
    .page-home .service-card__text p,
    .page-home .home-news__text {
        font-size: 0.8rem;
        line-height: 1.66;
    }

    .page-home .image-slot--icon-round {
        width: 82px;
        height: 82px;
        background-size: 58%;
    }

    .page-home .btn-vec {
        max-width: 100%;
        font-size: 0.76rem;
        letter-spacing: 0.14em;
    }

    .page-home .btn-vec--linkedin {
        padding-left: 14px;
        padding-right: 6px;
    }
}

@media (max-width: 680px) {
    .footer-bottom__inner {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        row-gap: 10px;
    }

    .footer-bottom__inner > *:not(:first-child) {
        padding-left: 12px;
        margin-left: 12px;
    }
}

@media (max-width: 1100px) {
    .page-about .about-intro__grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "image";
        gap: 24px;
        align-items: start;
    }

    .page-about .about-intro__content {
        grid-area: content;
        padding-top: 0;
    }

    .page-about .about-intro__image {
        grid-area: image;
        width: 100%;
        max-width: none;
        aspect-ratio: 2.88 / 1;
        margin: 0 auto;
    }

    .page-about .about-intro__content,
    .page-about .about-intro__eyebrow,
    .page-about .about-intro__title,
    .page-about .about-intro__text p {
        text-align: center;
    }
	
	.page-about .about-intro__text {
		margin: auto;
	}
	
	.page-about .about-intro{
		padding-bottom: 0px !important;
	}
}

@media (max-width: 920px) {
	
	
    .page-about .about-intro__image {
        aspect-ratio: 2.35 / 1;
    }
}

@media (max-width: 680px) {
    .page-about .about-intro__image {
        aspect-ratio: 2 / 1;
    }
}

@media (max-width: 1100px) {
    .page-about .about-intro__image {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        aspect-ratio: 2.88 / 1;
    }
}

@media (max-width: 920px) {
    .page-about .about-intro__image {
        aspect-ratio: 2.35 / 1;
    }
}

@media (max-width: 680px) {
    .page-about .about-intro__image {
        aspect-ratio: 2 / 1;
    }
}































