u

/* Keep Counting Services - Main Stylesheet */
/* Fonts */
@font-face {
    font-family: 'rozha one';
    font-style: normal;
    font-weight: 400;
    src: local('Rozha One'), local('RozhaOne-Regular'),
        url('https://fonts.gstatic.com/s/rozhaone/v7/AlZy_zVFtYP12Zncg2kRcn35fh4Dog.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap;
}

@font-face {
    font-family: 'avenir-lt-w01_35-light';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/avenir-lt-w01_35-light1475496.woff2') format('woff2');
    unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
    font-display: swap;
}

@font-face {
    font-family: 'cormorant garamond';
    font-style: normal;
    font-weight: 400;
    src: local('Cormorant Garamond'), local('CormorantGaramond-Regular'),
        url('https://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjYqXtKky2F7g.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap;
}

/* CSS Variables - Colors */
:root {
    --color_0: 255, 255, 255;
    --color_11: 255, 255, 255;
    --color_15: 0, 0, 0;
    --color_36: 255, 255, 255;
    --color_37: 0, 0, 0;
    --color_41: 40, 40, 40;
    --color_42: 239, 233, 230;
    --color_45: 0, 0, 0;
    --color_48: 40, 40, 40;
    --color_49: 40, 40, 40;
    --color_50: 255, 255, 255;
    --color_51: 255, 255, 255;
    --color_52: 40, 40, 40;
    --color_53: 40, 40, 40;
}

/* Font Variables */
:root {
    --font_0: normal normal normal 22px/1.41em 'rozha one', serif;
    --font_1: normal normal normal 14px/1.79em 'avenir-lt-w01_35-light', sans-serif;
    --font_2: normal normal normal 28px/1.375em 'rozha one', serif;
    --font_4: normal normal normal 72px/1.25em 'rozha one', serif;
    --font_6: normal normal normal 40px/1.35em 'rozha one', serif;
    --font_7: normal normal normal 20px/1.67em 'avenir-lt-w01_35-light', sans-serif;
    --font_8: normal normal normal 18px/1.75em 'avenir-lt-w01_35-light', serif;
    --font_9: normal normal normal 15px/1.88em 'avenir-lt-w01_35-light', sans-serif;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    color: rgb(var(--color_15));
    background-color: rgb(var(--color_11));
    -webkit-text-size-adjust: 100%;
}

/* Site Container */
#SITE_CONTAINER {
    width: 100%;
    min-width: 320px;
}

.site-root {
    width: 100%;
}

.mesh-layout {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

/* Header Styles */
#SITE_HEADER {
    background-color: rgba(var(--color_11), 1);
    border-bottom: 0 solid rgba(var(--color_15), 1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    position: relative;
    width: 100%;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 20px;
}

/* Logo Styles */
.header-logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Brand Text Styles */
.header-brand-text {
    color: rgb(var(--color_45));
    font: var(--font_0);
    text-decoration: none;
    letter-spacing: normal;
    margin-left: 15px;
    margin-right: auto;
    display: inline-flex;
    gap: 0.3em;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

/* Navigation Menu */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 29px;
    height: 40px;
}

.main-nav li {
    position: relative;
    margin-bottom: 0;
}

.main-nav ul a {
    display: inline-block;
    padding: 4px 0;
    color: #999;
    font-family: 'cormorant garamond', serif;
    font-size: 18px;
    font-style: italic;
    text-decoration: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
}

.main-nav ul a:hover,
.main-nav ul a.active {
    color: #000;
    border-color: #000;
    border-top-width: 1px;
    padding-top: 4px;
}

/* CTA Button in Header */
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    min-width: 150px;
    height: 40px;
    white-space: nowrap;
    background-color: #8F6D5C;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin-left: 20px;
    gap: 12px;
}

.header-cta i {
    font-size: 20px;
}

.header-cta:hover {
    background-color: #7a5c4d;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Main Content */
#PAGES_CONTAINER {
    position: relative;
    width: 100%;
}

.page {
    width: 100%;
    background-color: rgb(var(--color_11));
}

/* Section Styles */
section {
    position: relative;
    width: 100%;
}

section .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

section .section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section .section-content {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Text Styles */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1 {
    font: var(--font_4);
    color: #000000;
    letter-spacing: normal;
    text-align: center;
}

h2 {
    font: var(--font_6);
    color: rgb(var(--color_41));
    letter-spacing: normal;
    text-align: center;
}

h3 {
    font: var(--font_0);
    color: rgb(var(--color_41));
    letter-spacing: normal;
    text-align: center;
}

p {
    font: var(--font_9);
    color: rgb(var(--color_15));
    letter-spacing: normal;
}

ul {
    list-style-type: disc;
    padding-left: 1.3em;
}

ul li {
    line-height: 1.88em;
    margin-bottom: 12px;
}

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    min-height: 45px;
    background-color: rgba(var(--color_48), 0.96);
    border: 1px solid rgba(var(--color_49), 1);
    border-radius: 0;
    color: rgb(var(--color_50));
    font-size: 14px;
    font-family: 'avenir-lt-w01_35-light', sans-serif;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s, color 0.4s ease 0s;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
}

.button:hover {
    background-color: rgba(var(--color_51), 1);
    border-color: rgba(var(--color_52), 1);
    color: rgb(var(--color_53));
}

.button-alt {
    background-color: rgba(var(--color_37), 0);
    border: 1px solid rgba(var(--color_41), 1);
    color: rgb(var(--color_41));
    font: var(--font_9);
    box-shadow: none;
}

.button-alt:hover {
    background-color: rgba(var(--color_41), 1);
    border-color: rgba(var(--color_37), 0);
    color: rgb(var(--color_42));
}

/* Column Layout */
.columns {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    max-width: 980px;
}

.column {
    flex: 1;
    padding: 20px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: #f2f2f2;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.column h3 {
    margin-bottom: 32px;
}

.column p,
.column ul {
    margin-bottom: 31px;
}

/* Footer */
#SITE_FOOTER {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
    padding: 40px 20px;
    text-align: center;
}

#SITE_FOOTER p {
    font-family: 'cormorant garamond', serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #000000;
}

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

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 767px) {
    section {
        min-width: 0;
        width: 100%;
    }

    .columns {
        flex-direction: column;
    }

    /* Header Adjustments for Mobile */
    .header-content {
        padding: 10px 20px;
        flex-wrap: wrap;
        /* Permet le passage à la ligne si besoin */
    }

    .header-logo img {
        width: 50px;
        height: 50px;
    }

    .header-brand-text {
        display: flex;
        /* S'assurer que c'est flex */
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        margin-left: 0;
        /* Reset margin */
        margin-right: 0;
        /* Reset margin */
        flex-grow: 1;
        /* Prend toute la place disponible */
        justify-content: center;
        /* Centre horizontalement dans l'espace disponible */
    }

    .brand-line-1 {
        font-family: 'rozha one', serif;
        font-size: 20px;
        /* Taille pour Keep Counting */
        line-height: 1.2;
    }

    .brand-line-2 {
        font-family: 'avenir-lt-w01_35-light', sans-serif;
        font-size: 14px;
        /* Taille plus petite pour Services */
        font-weight: 300;
        /* Plus fin */
        letter-spacing: 0.05em;
        /* Un peu d'espacement pour l'élégance */
        line-height: 1.2;
    }

    .brand-line-2 {
        font-size: 0.8em;
        /* Réduire la taille de 'Services' */
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 100;
        margin-left: auto;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: rgb(var(--color_15));
        transition: 0.3s;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Navigation */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgb(var(--color_11));
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
        z-index: 99;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 20px;
        height: auto;
        margin-bottom: 20px;
    }

    .main-nav li {
        width: 100%;
        text-align: center;
    }

    .main-nav ul a {
        display: block;
        width: 100%;
        border: none;
        padding: 10px;
    }

    .header-cta {
        margin-top: 10px;
        width: 90%;
        max-width: 350px;
        padding: 0;
        margin-left: 0;
    }

    h1 {
        font-size: 48px;
        line-height: 1.3em;
    }

    h2 {
        font-size: 32px;
        line-height: 1.3em;
    }
}

@media (max-width: 1024px) {
    .header-content {
        padding: 16px;
        max-width: 920px;
    }

    section .section-content {
        padding: 32px 16px;
        max-width: 920px;
    }

    .columns {
        gap: 16px;
        max-width: 920px;
    }
}

@media (min-width: 1200px) {

    .header-content,
    section .section-content,
    .columns {
        max-width: 1200px;
    }
}

@media (min-width: 1600px) {

    .header-content,
    section .section-content,
    .columns {
        max-width: 1380px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Cards for Why Me */
.why-section .columns.cards {
    gap: 24px;
}

.why-section .columns.cards .column {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-section .columns.cards .column:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
}

.why-section .section-content h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background: rgba(0, 0, 0, 0.2);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Center contents specifically for the Value card (third column) */
.why-section .columns.cards .column:last-child ul {
    text-align: center !important;
    list-style-position: inside;
    padding-left: 0;
}