/* =========================================================
   1. VARIABLES GLOBALES
========================================================= */

:root {
    --green: #078653;
    --green-light: #0ca866;
    --green-dark: #045d39;

    --dark: #10211c;
    --ink: #17211e;
    --text: #4f5d57;

    --muted: #f3f6f4;
    --line: #dfe7e2;
    --white: #ffffff;

    --shadow-light: 0 8px 22px rgba(9, 45, 28, 0.06);
    --shadow-medium: 0 12px 30px rgba(9, 45, 28, 0.12);

    --radius-small: 4px;
    --radius-medium: 8px;

    --container-width: 1180px;
}


/* =========================================================
   2. RÉINITIALISATION
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

a {
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


/* =========================================================
   3. TYPOGRAPHIE
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--dark);

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(40px, 5vw, 72px);
}

h2 {
    font-size: clamp(30px, 3.5vw, 42px);
}	

h3 {
    font-size: 22px;
}

h4 {
    font-size: 16px;
}

p {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.75;
}

ul,
ol {
    margin-top: 0;
}


/* =========================================================
   4. CONTENEURS ET OUTILS
========================================================= */

.container {
    width: min(var(--container-width), 92%);
    margin-right: auto;
    margin-left: auto;
}

.section {
    padding: 72px 0;
}

.section h2 {
    margin: 0 0 36px;
    text-align: center;
    text-transform: uppercase;

    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -0.7px;
}

.section h2 span {
    color: var(--green);
}

.muted {
    background: var(--muted);
}

.center {
    margin-top: 32px;
    text-align: center;
}

.desktop-only {
    display: inline;
}


/* =========================================================
   5. BARRE SUPÉRIEURE
========================================================= */

.topbar {
    background: #067649;
    color: var(--white);
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;

    min-height: 36px;
    padding: 7px 0;
}


/* =========================================================
   6. EN-TÊTE ET NAVIGATION
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;

    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    min-height: 82px;
}

.nav-wrap > .brand:empty {
    display: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--green);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;

    width: 54px;
    height: 54px;
    border-radius: 12px;

    background: var(--green);
    color: var(--white);
    font-weight: 800;
}

.brand strong {
    font-size: 19px;
    line-height: 1.05;
}

.brand small {
    display: block;
}

.custom-logo {
    width: auto;
    max-height: 64px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-left: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 27px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    color: #111111;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15px;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
    color: var(--green);
}

.menu-toggle {
    display: none;

    border: 0;
    padding: 5px;

    background: transparent;
    color: var(--dark);

    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}


/* =========================================================
   7. BOUTONS
========================================================= */

.btn {
    display: inline-block;

    padding: 14px 24px;
    border: 0;
    border-radius: var(--radius-small);

    background: linear-gradient(
        135deg,
        var(--green),
        var(--green-light)
    );

    color: var(--white) !important;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;

    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 134, 83, 0.22);
}

.btn-small {
    padding: 11px 18px;
}

.btn-light {
    border: 1px solid #d8e2dd;
    background: var(--white);
    color: #123d2e !important;
}

.btn-light:hover {
    border-color: var(--green);
    background: #f5faf7;
}


/* =========================================================
   8. SECTION HERO
========================================================= */

.hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 570px;

    background:
        url("../images/hero-industrie.jpg")
        center center / cover
        no-repeat;

    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(7, 23, 19, 0.95) 0%,
        rgba(7, 23, 19, 0.81) 38%,
        rgba(7, 23, 19, 0.18) 72%
    );
}

.hero-content {
    position: relative;

    width: min(760px, 92%);
    margin-left: max(
        4%,
        calc((100% - var(--container-width)) / 2)
    );
}

.eyebrow {
    color: #34c77e;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 18px 0;

    color: var(--white);

    font-size: clamp(44px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -1.6px;
}

.hero p {
    max-width: 640px;
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;

    margin-top: 28px;
}


/* =========================================================
   9. POURQUOI NOUS CHOISIR
========================================================= */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.benefit-grid > div {
    min-width: 0;
    padding: 20px 24px;

    border-right: 1px solid var(--line);

    color: var(--green);
    text-align: left;
}

.benefit-grid > div:last-child {
    border-right: 0;
}

.benefit-grid i {
    display: block;

    margin-bottom: 14px;

    color: var(--green);
    font-size: 42px;
    line-height: 1;
}

.benefit-grid strong {
    display: block;

    margin-top: 8px;

    color: #111111;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.25px;
    text-transform: uppercase;
}

.benefit-grid p {
    margin: 7px 0 0;

    color: #555555;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   10. DOMAINES D’ACTIVITÉ
========================================================= */

.domain-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.domain {
    position: relative;

    display: flex;
    align-items: flex-end;

    height: 245px;
    overflow: hidden;
    border-radius: var(--radius-medium);

    background-position: center;
    background-size: cover;

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
}

.domain::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.domain b {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    padding: 18px;

    background: rgba(5, 118, 72, 0.9);
    color: var(--white);

    text-align: center;
    text-transform: uppercase;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.domain{
    text-decoration:none;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.domain:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 34px rgba(0,0,0,.2);
}

.domain b{
    transition:background-color .25s ease;
}

.domain:hover b{
    background:rgba(7,134,83,.96);
}

/* =========================================================
   PRODUITS PHARES
========================================================= */

.featured-products-section{
    background:#fff;
}

.product-card{
    display:flex;
    flex-direction:column;
    height:100%;
    overflow:hidden;
    border:1px solid #e7ece9;
    border-radius:8px;
    background:#fff;
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* ---------- Image ---------- */

.product-card-image{

    display:flex;
    align-items:center;
    justify-content:center;

    height:260px;

    padding:28px;

    background:#fff;

    overflow:hidden;
}

.product-card-image img{

    width:100%;
    height:100%;

    object-fit:contain;

    transition:transform .35s ease;
}

.product-card:hover .product-card-image img{

    transform:scale(1.03);

}

/* ---------- Texte ---------- */

.product-card .card-body{

    display:flex;
    flex-direction:column;
    flex:1;

    padding:24px;
}

.product-card h3{

    margin:0 0 12px;

    font-size:20px;
    line-height:1.35;
}

.product-card h3 a{

    color:#13211d;
    text-decoration:none;
}

.product-card h3 a:hover{

    color:#078653;
}

.product-card p{

    flex:1;

    margin-bottom:20px;

    color:#59655f;

    line-height:1.75;
}

.product-card .text-link{

    color:#078653;
    font-weight:700;
    text-decoration:none;
}

.product-card .text-link:hover{

    color:#0ca866;
}

/* ---------- Image absente ---------- */

.product-placeholder{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:100%;

    color:#078653;

    font-size:55px;
}

/* ---------- Mobile ---------- */

@media(max-width:620px){

    .product-card-image{

        height:220px;

        padding:20px;
    }

}

/* =========================================================
   11. CARTES
========================================================= */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.card {
    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 6px;

    background: var(--white);
    box-shadow: var(--shadow-light);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card h3 {
    margin: 0 0 10px;

    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.card p {
    color: var(--text);

    font-size: 15px;
    line-height: 1.7;
}

.text-link {
    color: var(--green);
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
}

.text-link:hover {
    color: var(--green-light);
}


/* =========================================================
   12. CHIFFRES CLÉS
========================================================= */

.numbers {
    padding: 48px 0;

    background: linear-gradient(
        135deg,
        var(--green-dark),
        var(--green)
    );

    color: var(--white);
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    text-align: center;
}

.number-grid > div {
    padding: 12px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.33);
}

.number-grid > div:last-child {
    border-right: 0;
}

.number-grid strong {
    display: block;

    color: var(--white);

    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
}

.number-grid span {
    display: block;
    margin-top: 6px;

    font-size: 14px;
}


/* =========================================================
   13. APPEL À L’ACTION
========================================================= */

.cta {
    padding: 48px 0;

    background: #0b6d45;
    color: var(--white);
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta h2 {
    margin: 0;
    color: var(--white);
}


/* =========================================================
   14. PAGES INTERNES
========================================================= */

.page-hero {
    padding: 70px 0;

    background: linear-gradient(
        135deg,
        #073c2d,
        #0b8d59
    );

    color: var(--white);
}

.page-hero h1 {
    margin: 0;
    color: var(--white);

    font-size: clamp(36px, 5vw, 44px);
}

.content {
    max-width: 960px;
}

.content h2 {
    color: var(--green);
    text-align: left;
    text-transform: none;
}

.single-content > img {
    width: 100%;
    max-height: 520px;
    margin-bottom: 28px;

    object-fit: cover;
}


/* =========================================================
   15. FORMULAIRE DE CONTACT
========================================================= */

.contact-form {
    max-width: 850px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form label {
    display: block;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 14px;

    border: 1px solid #cbd8d0;
    border-radius: var(--radius-small);

    background: var(--white);
    color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
    outline: 2px solid rgba(7, 134, 83, 0.12);
}

.notice {
    margin-bottom: 20px;
    padding: 14px;

    border-radius: var(--radius-small);
}

.notice.success {
    background: #e5f8ed;
    color: #12613c;
}

.notice.error {
    background: #ffe8e8;
    color: #992222;
}


/* =========================================================
   16. PIED DE PAGE
========================================================= */

.site-footer {
    padding-top: 54px;

    background: #18201e;
    color: #d9e3de;

    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns:
        1.35fr
        0.8fr
        1.3fr
        1.35fr
        1.1fr;
    gap: 34px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
}

.site-footer h3 {
    font-size: 20px;
    font-weight: 800;
}

.site-footer h4 {
    margin: 0 0 18px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.footer-logo .custom-logo {
    width: auto;
    max-height: 58px;

    filter: brightness(0) invert(1);
}

.footer-about p {
    margin: 18px 0;

    font-size: 13px;
    line-height: 1.7;
}

.site-footer ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.site-footer li {
    margin-bottom: 9px;

    font-size: 13px;
    line-height: 1.7;
}

.site-footer a {
    color: #d9e3de;
    text-decoration: none;

    font-size: 13px;
    line-height: 1.7;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin: 0 0 11px;

    font-size: 13px;
    line-height: 1.7;
}

.footer-contact i {
    flex: 0 0 auto;

    margin-top: 3px;

    color: #21b875;
    font-size: 16px;
}

.footer-socials {
    display: flex;
    gap: 9px;

    margin-top: 18px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    border-radius: 50%;

    background: var(--green);
    color: var(--white);

    font-size: 15px;
}

.footer-socials a:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

.footer-newsletter p {
    font-size: 13px;
}

.footer-newsletter form {
    margin-top: 14px;
}

.footer-newsletter input {
    width: 100%;
    margin-bottom: 10px;
    padding: 11px 12px;

    border: 1px solid #46524e;
    border-radius: var(--radius-small);

    background: #202927;
    color: var(--white);

    font-size: 13px;
}

.footer-newsletter input::placeholder {
    color: #aeb9b4;
}

.footer-newsletter input:focus {
    border-color: var(--green-light);
    outline: none;
}

.footer-newsletter .btn {
    width: 100%;
    padding: 11px;
}


/* =========================================================
   17. COPYRIGHT
========================================================= */

.copyright {
    margin-top: 42px;
    padding: 15px 0;

    background: var(--green);
    color: var(--white);

    font-size: 12px;
    text-align: center;
}

.copyright .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.copyright a {
    color: var(--white);
    font-size: 12px;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}


/* =========================================================
   18. RESPONSIVE — TABLETTES
========================================================= */

@media (max-width: 1000px) {

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 900px) {

    .nav-wrap {
        justify-content: space-between;
    }

    .nav-wrap > .custom-logo-link {
        flex: 1 1 auto;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        right: 0;
        left: 0;

        display: none;

        margin-left: 0;
        padding: 22px;

        background: var(--white);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        display: block;
    }

    .main-nav li {
        margin: 14px 0;
    }

    .main-nav .btn {
        margin-top: 12px;
    }

    .hero-content {
        margin-left: 4%;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .benefit-grid > div {
        border: 1px solid var(--line);
        border-radius: 6px;
    }

    .domain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .desktop-only {
        display: none;
    }
}


/* =========================================================
   19. RESPONSIVE — MOBILES
========================================================= */

@media (max-width: 620px) {

    body {
        font-size: 15px;
    }

    p {
        font-size: 15px;
    }

    .container {
        width: min(92%, 1180px);
    }

    .topbar-inner {
        gap: 10px;
        flex-wrap: wrap;

        font-size: 12px;
    }

    .custom-logo {
        max-height: 54px;
    }

    .nav-wrap {
        min-height: 72px;
    }

    .main-nav {
        top: 72px;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        width: 92%;
        margin-right: auto;
        margin-left: auto;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.05;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 52px 0;
    }

    .section h2 {
        margin-bottom: 28px;
        font-size: 27px;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .benefit-grid > div {
        padding: 18px 14px;
    }

    .benefit-grid i {
        font-size: 34px;
    }

    .benefit-grid strong {
        font-size: 12px;
    }

    .benefit-grid p {
        font-size: 12px;
    }

    .domain-grid,
    .cards-grid,
    .number-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .domain {
        height: 220px;
    }

    .card img {
        height: 210px;
    }

    .number-grid > div {
        padding: 20px;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.27);
    }

    .number-grid > div:last-child {
        border-bottom: 0;
    }

    .cta .container {
        display: block;
    }

    .cta .btn {
        margin-top: 18px;
    }

    .site-footer {
        padding-top: 42px;
    }

    .footer-grid {
        gap: 32px;
    }

    .site-footer h4 {
        font-size: 14px;
    }

    .copyright .container {
        text-align: center;
    }
}


/* =========================================================
   20. TRÈS PETITS ÉCRANS
========================================================= */

@media (max-width: 420px) {

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 35px;
    }

    .section h2 {
        font-size: 24px;
    }
}
/* =========================================================
   22. PAGES INTÉRIEURES — GLOBAL BAT 1.1
========================================================= */
.topbar a{color:#fff;text-decoration:none}.topbar a:hover{color:#dff7ec}.page-hero-compact{padding:76px 0;background:linear-gradient(135deg,#0a3326,#067649);color:#fff}.page-hero-compact h1{margin:10px 0 0;color:#fff;font-size:clamp(36px,5vw,58px)}.archive-description{max-width:760px;color:rgba(255,255,255,.85)}
.catalogue-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:28px}.catalogue-card{overflow:hidden;border:1px solid var(--line);border-radius:12px;background:#fff}.catalogue-card-media{display:flex;align-items:center;justify-content:center;height:270px;padding:24px;background:#fff}.catalogue-card-media img{width:100%;height:100%;object-fit:contain}.catalogue-card .card-body h2{margin-bottom:12px;font-size:21px}.catalogue-card .card-body h2 a,.content a:not(.btn),.single-content a:not(.btn){color:var(--green-dark);text-decoration:none}.catalogue-card .card-body h2 a:hover,.content a:not(.btn):hover{color:var(--green)}.text-link{color:var(--green)!important;text-decoration:none!important;font-weight:800}.pagination{margin-top:40px}.pagination .nav-links{display:flex;justify-content:center;gap:8px}.pagination a,.pagination span{padding:10px 14px;border:1px solid var(--line);border-radius:6px;color:var(--green-dark);text-decoration:none}.pagination .current{background:var(--green);color:#fff;border-color:var(--green)}
.detail-hero{padding:82px 0;background:linear-gradient(135deg,#eff8f3,#fff)}.detail-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:64px;align-items:center}.detail-hero h1{margin:14px 0 18px;font-size:clamp(38px,5vw,62px)}.detail-lead{max-width:680px;color:var(--text);font-size:18px}.detail-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}.detail-image{display:flex;align-items:center;justify-content:center;min-height:390px;padding:36px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-medium)}.detail-image img{max-height:430px;object-fit:contain}.detail-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:55px;align-items:start}.detail-content{font-size:17px}.detail-content h2,.detail-content h3{text-transform:none;text-align:left}.detail-content h2{margin-top:34px;font-size:30px}.detail-sidebar{position:sticky;top:120px}.quote-box,.contact-mini{padding:28px;border-radius:12px;background:#f2f7f4}.quote-box i{color:var(--green);font-size:36px}.quote-box h3{margin:12px 0}.quote-box .btn{width:100%;text-align:center}.contact-mini{display:flex;flex-direction:column;gap:7px;margin-top:18px;background:#fff;border:1px solid var(--line)}.contact-mini a{color:var(--green-dark);text-decoration:none}.wide-content{max-width:920px}.service-detail-hero{background:linear-gradient(135deg,#eef7f2,#fff)}.project-detail-hero{background:linear-gradient(135deg,#102c24,#0b6d48);color:#fff}.project-detail-hero h1,.project-detail-hero .eyebrow{color:#fff}.project-detail-hero .detail-lead{color:rgba(255,255,255,.82)}
.site-footer .footer-grid{grid-template-columns:1.3fr .8fr .9fr 1.2fr}.site-footer .footer-contact p{display:flex;gap:10px;align-items:flex-start}.site-footer .footer-contact i{margin-top:4px}.copyright .container{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}.copyright a{margin-left:12px}.footer-socials:empty{display:none}
@media(max-width:900px){.catalogue-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.detail-hero-grid,.detail-layout{grid-template-columns:1fr}.detail-image{min-height:280px}.detail-sidebar{position:static}.site-footer .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.catalogue-grid,.site-footer .footer-grid{grid-template-columns:1fr}.catalogue-card-media{height:230px}.detail-hero{padding:55px 0}.detail-image{padding:22px}.topbar-inner{justify-content:flex-start;overflow:auto;white-space:nowrap}.copyright .container{display:block}.copyright span{display:block;margin-bottom:7px}}
