/* =====================================================
   GLOBAL VARIABLES
===================================================== */

:root {

    --primary-color: #2E7D32;
    --secondary-color: #F4B400;
    --accent-color: #1565C0;

    --dark-color: #222222;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --text-color: #555555;

    --max-width: 1440px;

    --transition: .3s ease;

    --shadow:
        0 10px 25px rgba(0,0,0,.08);

    --radius: 12px;

}

/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text-color);

    background:var(--light-color);

    line-height:1.7;

    overflow-x:hidden;

}

/* =====================================================
   ELEMENTS
===================================================== */

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

ul{

    list-style:none;

}

section{

    padding:80px 0;

}

h1,
h2,
h3,
h4{

    color:var(--dark-color);

    line-height:1.2;

    margin-bottom:20px;

}

p{

    margin-bottom:20px;

}

/* =====================================================
   LAYOUT
===================================================== */

.container{

    width:min(90%, var(--max-width));

    margin:auto;

}

/* =====================================================
   BUTTONS
===================================================== */

.btn{

    display:inline-block;

    padding:14px 30px;

    background:var(--primary-color);

    color:#fff;

    border-radius:var(--radius);

    font-weight:600;

    transition:var(--transition);

}

.btn:hover{

    background:var(--accent-color);

    transform:translateY(-2px);

}

/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--light-color);
    box-shadow: var(--shadow);
}

.site-header .container {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 110px;
    height: auto;
}

.logo span {
    font-size: 1.1rem;
    white-space: nowrap;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    white-space: nowrap;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary-color);
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.header-btn {
    padding: 10px 20px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 1.6rem;
    color: var(--dark-color);
    cursor: pointer;
}

/* =====================================================
   HERO
===================================================== */

#hero {
    padding: 100px 0 90px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 0.85;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text h1 {
    max-width: 620px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 28px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1.15;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 8px 16px;
    background: #eef7ee;
    color: var(--primary-color);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1;
    border-radius: 999px;
    text-transform: uppercase;
}

/* =====================================================
   VIDEO MODAL
===================================================== */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .82);
}

.video-modal.show {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: min(92vw, 1000px);
    background: #000;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.video-modal-content video {
    width: 100%;
    display: block;
}

.video-skip,
.video-sound {
    position: absolute;
    z-index: 2;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
}

.video-skip {
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, .9);
    color: var(--dark-color);
}

.video-sound {
    right: 18px;
    bottom: 18px;
    background: var(--primary-color);
    color: #fff;
}

/* =====================================================
   WHY SECTION
===================================================== */

#why {
    background: #f8f3ea;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-title h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.section-title p {
    font-size: 1.1rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px;
    margin-bottom: 50px;
    align-items: start;
}

.why-column h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.logo-long-wrapper {
    text-align: center;
    margin-top: 50px;
}

.logo-long {
    display: inline-block;
    max-width: 360px;
    width: 100%;
}

.why-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-column p {
    max-width: 520px;
    text-align: justify;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: #d6cdbd;
    margin: 18px auto;
    border-radius: 999px;
}

/* =====================================================
   VISION
===================================================== */

#vision {
    padding: 110px 0;
    background: #fff;
}

.vision-text {
    padding-top: 20px;
}

/* =====================================================
   SPLIT SECTION (Reusable Layout)
===================================================== */

.split-section {
    display: flex;
    align-items: center;
    gap: 90px;
}

.split-image {
    flex: 0.9;
}

.split-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split-text {
    flex: 1.1;
}

.split-text h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.split-text p {
    margin-bottom: 24px;
    line-height: 1.9;
    font-size: 1.08rem;
    max-width: 640px;
}

/* =====================================================
   MISSION
===================================================== */

#mission {
    padding: 110px 0;
    background: #faf8f3;
}

.mission-text {
    padding-top: 20px;
}

.mission-text p {
    max-width: 470px;
}

/* =====================================================
   À DÉCOUVRIR
===================================================== */

#discover {
    padding: 110px 0;
    background: #ffffff;
}

#discover .container {
    max-width: 1320px;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 110px;
    margin-top: 60px;
}

.discover-item {
    display: grid;
    grid-template-columns: 340px 240px;
    column-gap: 14px;
    align-items: start;
}

.discover-item img {
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.discover-text {
    width: 240px;
}

.discover-text h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.2;
}

.discover-text p {
    margin-bottom: 22px;
    line-height: 1.7;
}

.discover-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.discover-link:hover {
    text-decoration: underline;
}

.discover-button {
    margin-top: 70px;
    text-align: center;
}

/* =====================================================
   VOTRE AVIS COMPTE
===================================================== */

#feedback {
    padding: 95px 0 100px;
    background: #ffffff;
    border-top: 1px solid #eee7dc;
    border-bottom: 1px solid #eee7dc;
}

.feedback-content {
    display: grid;
    grid-template-columns: 640px 360px;
    justify-content: center;
    align-items: start;
    column-gap: 120px;
}

.feedback-text {
    max-width: 640px;
}

.feedback-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.feedback-title h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 500;
}

.speech-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #eef5e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.feedback-text p {
    max-width: 620px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.feedback-qr {
    position: relative;
    justify-self: center;
    width: 360px;
    text-align: center;
}

.qr-inner {
    position: relative;
    width: 275px;
    margin: 0 auto;
    text-align: left;
}

.qr-box img {
    width: 275px;
    display: block;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.scan-me {
    margin-top: 18px;
    margin-left: 8px;
    font-family: "Marck Script", cursive;
    font-size: 1.7rem;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1;
    transform: rotate(-4deg);
}

.scan-arrow {
    position: absolute;
    right: 55px;
    bottom: 2px;
    width: 46px;
    height: 40px;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: rotate(-8deg);
}


/* =====================================================
   SOUTENEZ NOTRE ÉLAN
===================================================== */

#support{

    padding: 90px 0 100px;
    background:#faf9f5;

}

.support-content{

    display:flex;

    align-items:center;

    gap:70px;

}

.support-text{

    flex:1;

}

.support-text h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.support-image{

    flex:1;

}

.support-image img{

    width:100%;

    border-radius:16px;

    box-shadow:var(--shadow);

}

.section-divider.left{

    margin:18px 0 34px;

}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #f8f3ea;
    border-top: 1px solid #e5ddcf;
    color: var(--text-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.4fr;
    gap: 45px;
    padding: 70px 0 45px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo {
    width: 90px;
    height: auto;
}

.footer-brand p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    line-height: 1.5;
}

.footer-column h3 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-weight: 500;
}

.footer-column p,
.footer-column li,
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-newsletter input {
    flex: 1;
    padding: 13px 14px;
    border: 1px solid #d8cfbf;
    border-radius: 6px;
    font-family: inherit;
}

.footer-newsletter button {
    padding: 13px 18px;
    border: none;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid #e5ddcf;
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-color);
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* =====================================================
   INTERNAL PAGES
===================================================== */

.page-hero {
    padding: 110px 0 90px;
    background: #faf8f3;
    text-align: center;
}

.page-hero-content {
    max-width: 850px;
}

.page-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    background: #eef7ee;
    color: var(--primary-color);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    border-radius: 999px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.4rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.page-hero p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.page-section {
    padding: 100px 0;
}

.soft-bg {
    background: #f8f3ea;
}

.narrow-content {
    max-width: 850px;
}

.narrow-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 28px;
}

.narrow-content p {
    line-height: 1.9;
    margin-bottom: 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.value-card {
    background: #fff;
    padding: 38px 32px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.value-card i {
    margin-bottom: 22px;
    color: var(--primary-color);
    font-size: 2rem;
}

.value-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.team-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.placeholder-photo {
    background:
        linear-gradient(135deg, #eef5e8, #f8f3ea);
}

.team-card-content {
    padding: 28px 28px 32px;
}

.team-card-content h3 {
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.team-role {
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.team-card-content p {
    line-height: 1.75;
}

/* =====================================================
   PROJETS PAGE
===================================================== */

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.project-card {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.project-icon {
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 2rem;
}

.project-card h3 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.25;
}

.project-card p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.project-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

.project-link:hover {
    text-decoration: underline;
}

.project-highlight {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}

.project-highlight-text h2 {
    margin-bottom: 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.project-highlight-text p {
    margin-bottom: 24px;
    line-height: 1.9;
}

.project-highlight-box {
    background: #f8f3ea;
    padding: 42px 38px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.project-highlight-box h3 {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.project-highlight-box ul {
    padding-left: 20px;
}

.project-highlight-box li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.center-content {
    text-align: center;
}

.center-content p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   NOUVELLES PAGE
===================================================== */

.news-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.news-feature-image {
    min-height: 360px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.placeholder-news {
    background:
        linear-gradient(135deg, #eef5e8, #f8f3ea);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-news i {
    color: var(--primary-color);
    font-size: 3rem;
    opacity: 0.75;
}

.news-feature-content h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.news-feature-content p {
    margin-bottom: 28px;
    line-height: 1.9;
}

.news-date {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.news-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.news-card-image {
    height: 220px;
}

.news-card-content {
    padding: 30px 28px 34px;
     display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-content h3 {
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.25;
}

.news-card-content p {
    margin-bottom: 24px;
    line-height: 1.75;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

.news-link:hover {
    text-decoration: underline;
}

/* =====================================================
   ÊTRE INSPIRÉ PAGE
===================================================== */

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.inspiration-card {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.inspiration-icon {
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 2rem;
}

.inspiration-card h3 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.25;
}

.inspiration-card p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.inspiration-link {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.inspiration-link:hover {
    text-decoration: underline;
}

.inspiration-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.inspiration-feature-text h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.inspiration-feature-text p {
    margin-bottom: 24px;
    line-height: 1.9;
}

.inspiration-feature-box {
    min-height: 360px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

/* =====================================================
   LE LIEU PAGE
===================================================== */

.place-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.place-feature-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.place-feature-text h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.place-feature-text p {
    margin-bottom: 24px;
    line-height: 1.9;
}

.place-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.place-card {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.place-icon {
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 2rem;
}

.place-card h3 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.place-card p {
    line-height: 1.8;
}

.place-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef5e8, #f8f3ea);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder i {
    color: var(--primary-color);
    font-size: 2.4rem;
    opacity: 0.75;
}

.place-video-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.place-video-text h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.place-video-text p {
    margin-bottom: 24px;
    line-height: 1.9;
}

.video-placeholder {
    min-height: 340px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef5e8, #f8f3ea);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--primary-color);
}

.video-placeholder i {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.video-placeholder span {
    font-weight: 600;
}

/* =====================================================
   SERVICES PAGE
===================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.service-icon {
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.25;
}

.service-card p {
    line-height: 1.8;
}

.services-approach {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.services-approach-text h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.services-approach-text p {
    margin-bottom: 24px;
    line-height: 1.9;
}

.services-approach-box {
    background: #f8f3ea;
    padding: 42px 38px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.services-approach-box h3 {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.services-approach-box ul {
    padding-left: 20px;
}

.services-approach-box li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-card {
    display: flex;
    flex-direction: column;
}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.contact-info > p {
    margin-bottom: 34px;
    line-height: 1.9;
}

.contact-info-list {
    display: grid;
    gap: 26px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info-item i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #eef7ee;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h3 {
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 500;
}

.contact-info-item p {
    line-height: 1.7;
}

.contact-form-card {
    background: #ffffff;
    padding: 44px 40px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.contact-form-card h2 {
    margin-bottom: 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd4c6;
    border-radius: 10px;
    padding: 15px 16px;
    font-family: inherit;
    font-size: 1rem;
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(45, 128, 55, 0.25);
    border-color: var(--primary-color);
}

.contact-location {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.contact-location-text h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.contact-location-text p {
    margin-bottom: 24px;
    line-height: 1.9;
}

.map-placeholder {
    min-height: 340px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef5e8, #f8f3ea);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--primary-color);
}

.map-placeholder i {
    font-size: 3rem;
    opacity: 0.8;
}

.map-placeholder span {
    font-weight: 600;
}

/* =====================================================
   NOUS SOUTENIR PAGE
===================================================== */

.support-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1050px;
    margin: 0 auto;
}

.support-option-card {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.support-option-icon {
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 2rem;
}

.support-option-card h3 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.support-option-card p {
    line-height: 1.8;
}

.support-donation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.support-donation-text h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    font-weight: 500;
}

.support-donation-text p {
    margin-bottom: 24px;
    line-height: 1.9;
}

.support-donation-box {
    background: #f8f3ea;
    padding: 42px 38px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.support-donation-box h3 {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.support-donation-box ul {
    padding-left: 20px;
}

.support-donation-box li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.support-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.support-trust-card {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.support-trust-icon {
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 2rem;
}

.support-trust-card h3 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.support-trust-card p {
    line-height: 1.8;
}

/* =====================================================
   MERCI PAGE - FOOTER FINAL FIX
===================================================== */

.merci-page .site-footer .footer-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 50px 55px;
    box-sizing: border-box;
}

.merci-page .site-footer .footer-brand img {
    width: 76px;
    max-width: 76px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.merci-page .site-footer .footer-newsletter form {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.merci-page .site-footer .footer-newsletter input {
    min-width: 0;
}

.form-note {
    margin-top: 14px;
    max-width: 420px;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #5f5f5f;
}

/* =====================================================
   FOOTER NEWSLETTER BUTTON FIX
===================================================== */

.footer-newsletter button {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
}

.footer-newsletter button:hover,
.footer-newsletter button:focus,
.footer-newsletter button:active {
    background: #246b2f;
    color: #ffffff;
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   ABOUT PAGE V2
===================================================== */

.about-v2 {
    background: #fbfaf7;
}

.about-small-title {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-intro-section {
    padding: 90px 0 70px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-text h1,
.about-history-text h2,
.about-team-section .section-title h2,
.about-approach-section .section-title h2,
.about-board-section .section-title h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    color: #1f2c2d;
}

.about-intro-text h1 {
    font-size: 3.7rem;
    line-height: 1.05;
    margin-bottom: 32px;
}

.about-intro-text p {
    max-width: 650px;
    margin-bottom: 22px;
    line-height: 1.85;
}

.about-intro-image img {
    width: 100%;
    display: block;
    border-radius: 2px;
    box-shadow: var(--shadow);
}

.about-history-section {
    padding: 70px 0 90px;
}

.about-history-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: center;
}

.about-history-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.about-history-images img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border: 8px solid #ffffff;
    box-shadow: var(--shadow);
}

.about-history-text h2 {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 28px;
}

.about-history-text p {
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-approach-section {
    padding: 80px 0 45px;
}

.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    max-width: 1050px;
    margin: 45px auto 0;
}

.about-approach-card {
    background: #ffffff;
    border: 1px solid #e7ded0;
    padding: 32px 34px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04);
}

.about-approach-card h3 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: 500;
}

.about-approach-card p {
    line-height: 1.75;
}

.about-team-section {
    padding: 45px 0 70px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 45px;
}

.about-member-card {
    background: #ffffff;
    border: 1px solid #e5dccf;
    box-shadow: var(--shadow);
}

.about-member-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.about-member-content {
    padding: 22px 22px 28px;
}

.about-member-content h3 {
    margin-bottom: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 500;
}

.about-member-content span {
    display: block;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-member-content p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-small-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 720px;
    margin: 28px auto 0;
}

.about-small-team-grid article {
    background: #ffffff;
    border: 1px solid #e5dccf;
    padding: 18px 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.about-small-team-grid h3 {
    margin-bottom: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 500;
}

.about-small-team-grid p {
    font-size: 0.9rem;
}

.about-board-section {
    padding: 35px 0 90px;
}

.about-board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 420px));
    justify-content: center;
    gap: 80px;
    margin-top: 35px;
}

.about-board-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-board-grid li {
    padding: 8px 0;
    border-bottom: 1px solid #d8cdbd;
    font-family: Georgia, "Times New Roman", serif;
}

.about-board-grid li::before {
    content: "✦";
    margin-right: 10px;
    color: var(--primary-color);
}

.about-quote-section {
    min-height: 330px;
    background-image:
       linear-gradient(rgba(20, 45, 25, 0.58), rgba(20, 45, 25, 0.58)),
        url("../images/about/about-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-quote-overlay {
    text-align: center;
    color: #ffffff;
    padding: 50px 24px;
}

.about-quote-overlay p {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-style: italic;
}

.about-quote-overlay span {
    font-size: 1rem;
}

.about-small-team-grid span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}