.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: var(--transition);
}

.trust-bar {
    background: var(--color-anthracite);
    color: var(--color-white);
    font-size: 0.82rem;
}

.trust-bar__inner {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.trust-bar span,
.trust-bar a {
    position: relative;
    opacity: 0.92;
}

.trust-bar span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    width: 1px;
    height: 14px;
    background: var(--color-gold);
    transform: translateY(-50%);
}

.main-header {
    background: rgba(248, 248, 246, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
    transition: var(--transition);
}

.main-header__inner {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-logo img {
    width: 142px;
    height: auto;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-anthracite);
}

.main-nav a {
    position: relative;
    padding-block: 8px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    width: 100%;
}

.header-cta {
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
}

.site-header.is-scrolled .main-header__inner {
    height: 70px;
}

.site-footer {
    background: var(--color-anthracite);
    color: rgba(255,255,255,0.82);
    padding: 80px 0 26px;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
}

.site-footer__brand img {
    width: 150px;
    margin-bottom: 26px;
}

.site-footer__brand p {
    color: rgba(255,255,255,0.72);
}

.site-footer__col {
    display: grid;
    gap: 10px;
    align-content: start;
}

.site-footer__col h2 {
    font-family: var(--font-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.site-footer__col a:hover {
    color: var(--color-white);
}

.site-footer__bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.62);
}

.site-footer__bottom span {
    margin-right: auto;
}

main {
    padding-top: 120px;
}

@media (max-width: 1024px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .nav-toggle {
        margin-left: auto;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        gap: 5px;
        background: transparent;
        border: 1px solid rgba(31, 41, 55, 0.18);
        border-radius: 50%;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 1px;
        background: var(--color-anthracite);
        transition: var(--transition);
    }

    .main-nav.is-open {
        display: grid;
        position: fixed;
        top: 120px;
        left: 20px;
        right: 20px;
        padding: 28px;
        background: var(--color-white);
        border: 1px solid rgba(31, 41, 55, 0.1);
        box-shadow: 0 24px 60px rgba(31, 41, 55, 0.16);
        gap: 18px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero__media {
        max-width: 520px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .trust-bar__inner {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 22px;
        white-space: nowrap;
    }

    .main-header__inner {
        height: 74px;
    }

    .site-logo img {
        width: 118px;
    }

    main {
        padding-top: 112px;
    }

    .hero {
        min-height: auto;
        padding: 54px 0 76px;
    }

    .hero__actions {
        display: grid;
    }

    .hero__media::before {
        inset: 14px -12px -14px 12px;
    }

    .site-footer__bottom {
        flex-wrap: wrap;
    }
}

/* ASSETS/CSS/LAYOUT.CSS */

/* HERO HOME - MOBILE UNIQUEMENT */
@media (max-width: 640px) {

    .hero {
        min-height: auto;
        padding: 42px 0 64px;
        overflow: hidden;
    }

    .hero__inner {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .hero__content {
        width: 100%;
        max-width: none;
    }

    .hero__content .eyebrow {
        margin-bottom: 14px;
        font-size: 0.72rem;
        line-height: 1.6;
        letter-spacing: 0.15em;
    }

    .hero__content h1 {
        max-width: 340px;
        margin: 0;
        font-size: clamp(2.45rem, 12vw, 3.2rem);
        line-height: 0.94;
        text-wrap: balance;
    }

    .hero__text {
        max-width: 100%;
        margin-top: 24px;
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .hero__media {
        position: relative;
        order: 2;
        width: calc(100% - 24px);
        max-width: none;
        margin: 0 0 0 24px;
    }

    .hero__media img {
        display: block;
        width: 100%;
        height: 250px;
        object-fit: cover;
        object-position: center;
    }

    .hero__media::before {
        inset: 14px 14px -14px -14px;
        border-color: var(--color-gold);
        pointer-events: none;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 30px;
    }

    .hero__actions .btn {
        width: 100%;
        min-height: 52px;
        padding: 13px 18px;
        justify-content: center;
        text-align: center;
    }
}

/* ASSETS/CSS/LAYOUT.CSS */

@media (max-width: 640px) {

    .container {
        width: calc(100% - 28px);
    }

    main {
        padding-top: 106px;
    }

    /* BARRE NOIRE */

    .trust-bar {
        overflow: hidden;
    }

    .trust-bar__inner {
        width: 100%;
        height: 32px;
        padding: 0 12px;
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .trust-bar__inner::-webkit-scrollbar {
        display: none;
    }

    .trust-bar__inner span,
    .trust-bar__inner a {
        flex: 0 0 auto;
        font-size: 0.72rem;
    }

    /* HEADER PRINCIPAL */

    .main-header__inner {
        height: 74px;
        gap: 12px;
    }

    .site-logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .site-logo img {
        width: 86px;
        max-height: 62px;
        object-fit: contain;
    }

    .header-cta {
        display: inline-flex;
        flex: 0 0 auto;
        min-height: 44px;
        padding: 10px 16px;
        margin-left: auto;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    /* BURGER */

    .nav-toggle {
        flex: 0 0 auto;
        width: 40px;
        height: 40px;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
        background: var(--color-anthracite);
    }

    /* MENU MOBILE */

    .main-nav.is-open {
        top: 106px;
        left: 14px;
        right: 14px;
        padding: 22px;
    }

    /* HERO */

    .hero {
        min-height: 0;
        padding: 44px 0 64px;
        overflow: hidden;
    }

    .hero__inner {
        display: flex;
        flex-direction: column;
        gap: 34px;
    }

    .hero__content {
        width: 100%;
        max-width: none;
    }

    .hero__content .eyebrow {
        max-width: 250px;
        margin-bottom: 16px;
        font-size: 0.72rem;
        line-height: 1.55;
        letter-spacing: 0.14em;
    }

    .hero__content h1 {
        width: 100%;
        max-width: 360px;
        margin: 0;
        font-size: clamp(2.65rem, 12vw, 3.3rem);
        line-height: 0.94;
        letter-spacing: -0.02em;
        text-wrap: balance;
    }

    .hero__text {
        width: 100%;
        max-width: 360px;
        margin-top: 24px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 28px;
    }

    .hero__actions .btn {
        width: 100%;
        min-height: 50px;
        justify-content: center;
        text-align: center;
    }

    .hero__media {
        position: relative;
        width: 100%;
        max-width: none;
        margin: 0;
        transform: none;
    }

    .hero__media img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        object-position: center;
    }

    .hero__media::before {
        inset: 12px -10px -12px 10px;
    }
}

/* ASSETS/CSS/LAYOUT.CSS */

@media (max-width: 640px) {

    .hero__inner {
        display: block !important;
    }

    .hero__content {
        display: block;
        width: 100%;
        max-width: none;
    }

    .hero__media {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        display: block !important;
        float: none !important;

        width: 100% !important;
        max-width: none !important;

        margin: 38px 0 0 !important;
        padding: 0 !important;

        transform: none !important;
        translate: none !important;

        grid-column: auto !important;
        grid-row: auto !important;
        align-self: auto !important;
        justify-self: auto !important;
    }

    .hero__media img {
        display: block;
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center;
    }

    .hero__media::before {
        inset: 12px -8px -12px 8px;
    }
}

@media (max-width: 420px)
{
    .trust-local
    {
        display: none !important;
    }
}

@media (max-width: 420px)
{
    .trust-bar__inner
    {
        justify-content: center !important;
        gap: 12px !important;
    }

    .trust-bar__inner a
    {
        margin-left: 0 !important;
    }
}

/* ASSETS/CSS/COMPONENTS/HEADER.CSS */

@media (max-width: 420px)
{
    .trust-bar__inner
    {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .trust-bar__inner > span,
    .trust-bar__inner > a
    {
        position: relative;
        padding: 0 10px;
        white-space: nowrap;
    }

    .trust-bar__inner > * + *
    {
        border-left: 2px solid #cc0000;
    }

    .trust-bar__inner > *::before,
    .trust-bar__inner > *::after
    {
        display: none !important;
    }
}
