/*!
 * Version - 1.1.1
 * Copyright (c) 2026 2A Digital <info@2Adigital.site>
 * L’autorisation est accordée à toute personne qui en obtient une copie de ce style.
 * Il est strictement interdit de publier(vendre) sans l'autorisation préalable des auteurs.
 * Des spécialistes sont à l'origine des documents fournis.
*/

/* =========================
   IMAGE
========================= */
.sc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sc-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--secondary);
}

.sc-text-muted {
    color: #ffffff9e !important;
}


/* Title */
.sc-section-title {
    margin: 0;
    color: #092f27;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.sc-section-title span {
    display: block;
    color: var(--secondary);
    font-style: italic;
}

.sc-section-description {
    max-width: 500px;
    margin: 1.5rem auto 0;
    color: #68716e;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Section Hero */
.hero {
    position: relative;
    min-height: 680px;
    height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: var(--light);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -2%;
    z-index: -2;
    background-image: url("../images/hero.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.035);
    animation: heroZoom 22s cubic-bezier(0.22, 1, 0.36, 1) both;
    will-change: transform;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(10, 43, 28, 0.69) 0%,
            rgba(14, 42, 34, 0.50) 56%);
}

@keyframes heroZoom {
    from {
        transform: scale(1.035) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.095) translate3d(-0.7%, -0.4%, 0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.35rem;
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--secondary-light);
}

/* Petit trait champagne */
.hero-eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    flex-shrink: 0;
    background: var(--secondary);
}

.hero-title {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.8rem, 2.045rem + 2.27vw, 4.5rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--light);
}

.hero-title span {
    display: block;
    margin-top: 0.12em;
    color: var(--secondary);
    font-style: italic;
}

.hero-description {
    max-width: 570px;
    margin: 1.75rem 0 2rem;
    font-size: clamp(0.875rem, 0.761rem + 0.57vw, 1.05rem);
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 991.98px) {

    .hero {
        min-height: 620px;
        height: auto;
        background-position: 58% center;
    }

    .hero-content {
        max-width: 600px;
        padding: 6rem 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 7vw, 3.8rem);
    }
}

@media (max-width: 575.98px) {
    .hero {
        min-height: 680px;
        background-position: 62% center;
    }

    .hero-content {
        padding: 5rem 1.25rem 4rem;
    }

    .hero-eyebrow {
        font-size: 0.6rem;
        letter-spacing: 0.14em;
    }

    .hero-title {
        font-size: 2.55rem;
        line-height: 1.08;
    }

    .hero-description {
        margin-top: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ======== SECTION Key Figures ======== */
.keyfigures {
    background-color: var(--primary);
}

.keyfigures .item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
}

.keyfigures .title {
    color: var(--secondary);
    font-size: 45px;
    font-weight: 600;
    font-family: var(--ff-title);
}

.keyfigures .description {
    color: #A7B0A2;
    font-size: 12px;
    text-transform: uppercase;
}

/* =========================
   SECTION responsibilities
========================= */

.responsibilities-section {
    padding: 7rem 0;
    background: #fff;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

/* Card */

.sc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #FBF8F1;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition:
        transform 450ms var(--ease-luxury),
        box-shadow 450ms var(--ease-luxury),
        border-color 450ms var(--ease-luxury);
}

.sc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 154, 91, .45);
    box-shadow: 0 20px 50px rgba(14, 42, 34, .10);
}

/* Image */
.sc-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sc-card-image img {
    width: 100%;
    height: 100%;
    transition: transform 800ms var(--ease-luxury);
    display: block;
    object-fit: cover;
    transition: transform 500ms ease;
}

.sc-card:hover .sc-card-image img {
    transform: scale(1.035);
}

.sc-card-body {
    flex: 1;
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: left;
}

.sc-number {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--secondary);
    font-family: var(--ff-title);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.10em;
}

.sc-card h3 {
    margin: 0 0 0.7rem;
    color: var(--primary);
    font-size: 1.35rem;
    line-height: 1.1;
    font-weight: 600;
}

.sc-card p {
    margin: 0;
    color: #5C6157;
    font-size: 0.78rem;
    line-height: 1.6;
}


/* Process */
.process-section {
    padding: 5rem 0;
    background: var(--primary);
    color: #fff;
}

.process-inner {
    padding: 4rem 5rem;
}

.process-heading {
    max-width: 650px;
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.process-step {
    position: relative;
    min-height: 150px;
    padding: 0 2rem;
}

.process-step:first-child {
    padding-left: 0;
}

.process-step:last-child {
    padding-right: 0;
}


/* Séparateurs */
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.14);
}

/* Numéro */
.process-number {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-family: var(--ff-title);
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 600;
}

/* Titre */
.process-step h3 {
    margin: 0 0 0.6rem;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.1;
    font-weight: 500;
}

/* Description */
.process-step p {
    max-width: 220px;
    margin: 0;
    color: #A7B0A2;
    font-size: 0.82rem;
    line-height: 1.55;
}

.process-step:last-child h3 {
    color: var(--color-gold);
}

@media (max-width: 991.98px) {

    .process-inner {
        padding: 3rem 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-step,
    .process-step:first-child,
    .process-step:last-child {
        padding: 0 0 2rem 2.5rem;
    }

    .process-step:not(:last-child)::after {
        top: 1.7rem;
        left: 0.35rem;
        right: auto;

        width: 1px;
        height: calc(100% - 1.7rem);
    }

    .process-step::before {
        content: "";
        position: absolute;
        top: 0.1rem;
        left: 0;
        width: 0.75rem;
        height: 0.75rem;
        border: 1px solid var(--color-gold);
        border-radius: 50%;
        background: var(--color-green-dark);
    }

    .process-number {
        margin-bottom: 0.5rem;
    }
}

/* =========================================================
       PARTNER BANNER
       Moon drive × SIREXE 2026
       ========================================================= */

.partner-banner {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #0e2a22;
}

/* =========================================================
       INNER
       ========================================================= */

.partner-banner__inner {
    position: relative;

    width: 100%;

    /*
         * Ratio proche du visuel fourni :
         * environ 5:1
         */
    aspect-ratio: 5 / 1;

    min-height: 210px;

    overflow: hidden;
}

/* =========================================================
       BACKGROUND / PHOTO
       ========================================================= */

.partner-banner__visual {
    position: absolute;
    inset: 0;

    background-image: url("../images/moon-drive-banner.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.015);

    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
       OVERLAY
       ========================================================= */

.partner-banner__visual::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(8, 30, 25, 0.12) 0%,
            transparent 30%,
            transparent 70%,
            rgba(8, 30, 25, 0.08) 100%);
}

/* =========================================================
       CONTENT
       ========================================================= */

.partner-banner__content {
    position: absolute;
    inset: 0;

    z-index: 2;

    width: 100%;
    max-width: 1100px;

    margin: auto;

    pointer-events: none;
}

/* =========================================================
       MOON DRIVE
       ========================================================= */

.partner-banner__brand {
    position: absolute;
    left: 30%;
    top: 29%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partner-banner__brand img {
    display: block;

    width: clamp(135px, 17vw, 305px);
    height: auto;
}

.partner-banner__brand span {
    margin-top: -2px;

    padding-left: 48px;

    color: rgba(255, 255, 255, 0.82);

    font-family: var(--ff-source);

    font-size: clamp(6px, 0.55vw, 8px);

    font-weight: 400;

    letter-spacing: 0.02em;
}

/* =========================================================
       MESSAGE SIREXE
       ========================================================= */

.partner-banner__message {
    position: absolute;

    left: 60%;
    top: 33%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* =========================================================
       ORANGE TITLE
       ========================================================= */

.partner-banner__title {
    display: flex;
    flex-direction: column;
    padding: 5px 10px 6px;
    color: #fff;
    background: #E4590F;
    font-size: clamp(13px, 1.35vw, 23px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -0.02em;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.partner-banner__message p {
    margin: 9px 0 0;

    color: rgba(255, 255, 255, 0.95);

    font-family: var(--ff-title);

    font-size: clamp(13px, 1.35vw, 18px);

    line-height: 1.05;

    font-weight: 500;
}

.partner-banner__message p em {
    color: var(--secondary);

    font-style: italic;
}

/* =========================================================
       HOVER — MICRO ZOOM
       ========================================================= */

.partner-banner:hover .partner-banner__visual {
    transform: scale(1.035);
}

/* =========================================================
       TABLET
       ========================================================= */

@media (max-width: 991.98px) {
    .partner-banner__inner {
        aspect-ratio: 4 / 1;

        min-height: 180px;
    }

    .partner-banner__brand {
        left: 35%;
    }

    .partner-banner__message {
        left: 61%;
    }
}

/* =========================================================
       MOBILE
       ========================================================= */

@media (max-width: 767.98px) {
    .partner-banner__inner {
        aspect-ratio: auto;

        min-height: 330px;
    }

    .partner-banner__visual {
        background-position: 35% center;
    }

    /*
         * On déplace le contenu vers la partie droite,
         * comme dans la composition originale.
         */

    .partner-banner__brand {
        left: 48%;

        top: 25%;
    }

    .partner-banner__message {
        left: 48%;

        top: 51%;
    }

    .partner-banner__brand img {
        width: 155px;
    }

    .partner-banner__brand span {
        padding-left: 30px;

        font-size: 7px;
    }

    .partner-banner__title {
        font-size: 14px;

        padding: 5px 9px;
    }

    .partner-banner__message p {
        margin-top: 8px;

        font-size: 15px;
    }
}

/* =========================================================
       SMALL MOBILE
       ========================================================= */

@media (max-width: 480px) {
    .partner-banner__inner {
        min-height: 300px;
    }

    .partner-banner__visual {
        /*
             * On garde la femme visible à gauche.
             */
        background-position: 28% center;
    }

    .partner-banner__brand {
        left: 43%;
        top: 24%;
    }

    .partner-banner__message {
        left: 43%;
        top: 52%;
    }

    .partner-banner__brand img {
        width: 135px;
    }

    .partner-banner__title {
        font-size: 12px;
    }

    .partner-banner__message p {
        font-size: 13px;
    }
}

/* =========================================================
       ACCESSIBILITY
       ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .partner-banner__visual {
        transition: none;
        transform: none;
    }
}

/* =========================================================
   PACKAGES
   ========================================================= */

.packages-section {
    padding: 100px 0 85px;
}

.packages-heading {
    max-width: 680px;
    margin: 0 auto 55px;
}

.packages-grid {
    align-items: stretch;
}

.package-card {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(199, 154, 91, 0.24);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 10px rgba(14, 42, 34, 0.035);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
    overflow: hidden;
}

/*
 * Fine ligne champagne en haut
 */

.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(199, 154, 91, 0.7), transparent);
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.package-card:hover {
    transform: translateY(-7px);
    border-color: rgba(199, 154, 91, 0.42);
    box-shadow: 0 12px 30px rgba(14, 42, 34, 0.09);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card--featured {
    color: #fff;
    background: linear-gradient(145deg, #0e2a22 0%, #0a241d 55%, #081d18 100%);
    border-color: rgba(199, 154, 91, 0.55);
    box-shadow: 0 18px 45px rgba(14, 42, 34, 0.16);
    transform: translateY(-10px);
}

.package-card--featured:hover {
    transform: translateY(-15px);
    box-shadow: 0 28px 60px rgba(14, 42, 34, 0.23);
}

.package-card--gold {
    background: linear-gradient(145deg, #fff 0%, #fdfaf3 100%);
}

.package-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 34px 30px 30px;
}

.package-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 15px;
    color: var(--primary-dark);
    background: var(--secondary);
    font-family: var(--ff-source);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.package-card__header {
    margin-bottom: 27px;
}

.package-card__category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #817b70;
    font-family: var(--ff-source);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.package-card__category span {
    color: var(--secondary);
    font-size: 8px;
}

.package-card--featured .package-card__category {
    color: rgba(255, 255, 255, 0.58);
}

.package-card--featured .package-card__category span {
    color: var(--secondary);
}

.package-card__name {
    margin: 0;
    color: var(--primary);
    font-family: var(--ff-title);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.package-card--featured .package-card__name {
    color: #fff;
}

.package-card__intro {
    max-width: 270px;
    margin: 12px 0 0;
    color: #777b76;
    font-family: var(--ff-source);
    font-size: 0.72rem;
    line-height: 1.6;
}

.package-card--featured .package-card__intro {
    color: rgba(255, 255, 255, 0.62);
}

.package-card__price-wrapper {
    margin-bottom: 24px;
}

.package-card__price-label {
    display: block;
    margin-bottom: 5px;
    color: #918c82;
    font-family: var(--ff-source);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.package-card--featured .package-card__price-label {
    color: rgba(255, 255, 255, 0.5);
}

.package-card__price {
    color: var(--primary);
    font-family: var(--ff-title);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.package-card__price small {
    margin-left: 3px;
    color: var(--secondary);
    font-family: var(--ff-source);
    font-size: 0.55em;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.package-card--featured .package-card__price {
    color: var(--secondary);
}

.package-card__price-note {
    display: block;
    margin-top: 6px;
    color: #aaa69e;
    font-family: var(--ff-source);
    font-size: 10px;
}

.package-card--featured .package-card__price-note {
    color: rgba(255, 255, 255, 0.45);
}

.package-card__divider {
    width: 100%;
    height: 1px;
    margin-bottom: 24px;
    background: linear-gradient(90deg,
            rgba(199, 154, 91, 0.35),
            rgba(199, 154, 91, 0.05));
}

.package-card__features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.package-card__features li {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    color: #606761;

    font-family: var(--ff-source);
    font-size: 0.72rem;
    line-height: 1.5;
}

.package-card--featured .package-card__features li {
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   FEATURE ICON
   ========================================================= */

.feature-icon {
    flex: 0 0 auto;

    margin-top: 4px;

    color: var(--secondary);

    font-size: 7px;
    line-height: 1;
}

/* =========================================================
   CTA
   ========================================================= */

.package-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding: 13px 16px;
    color: var(--primary);
    background: transparent;
    border: 1px solid rgba(14, 42, 34, 0.18);
    border-radius: var(--radius-sm);
    font-family: var(--ff-source);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.35s ease, background-color 0.35s ease,
        border-color 0.35s ease, transform 0.35s ease;
}

.package-card__arrow {
    font-size: 15px;
    font-weight: 400;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.package-card__cta:hover {
    color: var(--primary);
    background: var(--secondary);
    border-color: var(--secondary);
}

.package-card__cta:hover .package-card__arrow {
    transform: translateX(5px);
}

/* Featured CTA */

.package-card--featured .package-card__cta {
    color: var(--primary);
    background: var(--secondary);
    border-color: var(--secondary);
}

.package-card--featured .package-card__cta:hover {
    color: var(--primary);
    background: #e0bc88;
    border-color: #e0bc88;
}

/* =========================================================
   NOTE
   ========================================================= */

.packages-note {
    max-width: 760px;
    margin: 25px auto 0;
    color: #aaa69e;
    font-family: var(--ff-source);
    font-size: 11px;
    line-height: 1.6;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
    .packages-section {
        padding: 80px 0 70px;
    }

    .package-card__content {
        padding: 28px 24px 25px;
    }

    .package-card--featured {
        transform: none;
    }

    .package-card--featured:hover {
        transform: translateY(-7px);
    }
}

@media (max-width: 767.98px) {
    .packages-section {
        padding: 75px 0 60px;
    }

    .packages-heading {
        margin-bottom: 40px;
    }

    .package-card--featured {
        transform: none;
    }

    .package-card--featured:hover {
        transform: translateY(-5px);
    }

    .package-card__content {
        padding: 30px 25px 25px;
    }

    .package-card__name {
        font-size: 1.85rem;
    }
}



/* =========================================
   À LA CARTE / SERVICES
========================================= */

.services-section {
    padding: 80px 0;
    background: #f8f5ee;
}

.services-inner {
    max-width: 100%;
}


/* Heading */
.services-heading {
    max-width: 620px;
    margin-bottom: 34px;
}


/* Grid */
.services-grid {
    max-width: 100%;
}

/* Category */
.service-category {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 91px;
    padding: 8px 12px;
    color: var(--dark);
    background: rgba(255, 255, 255, .22);
    border: 1px solid #e5dfd3;
    border-radius: 7px;
    text-decoration: none;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.service-category:hover {
    background: rgba(255, 255, 255, .65);
    border-color: #d7c9b1;
    transform: translateY(-1px);
}


/* Letter */

.service-category__letter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    border: 1px solid #e5dfd3;
    border-radius: 5px;
    font-weight: 600;
    font-family: var(--ff-title);
    font-size: 25px;
    line-height: 1;
}

/* Text */

.service-category__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.service-category__content strong {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.service-category__content small {
    margin-top: 2px;
    color: #5C6157;
    font-size: 10px;
    line-height: 1.2;
}


/* CTA */

.services-action {
    margin-top: 23px;
}

.btn-sirexe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-width: 146px;
    padding: 9px 14px;

    color: #111;
    background: var(--sirexe-gold);

    border: 1px solid var(--sirexe-gold);
    border-radius: 3px;

    font-size: 8px;
    font-weight: 600;
    text-decoration: none;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.btn-sirexe:hover {
    color: #111;

    background: var(--sirexe-gold-light);
    border-color: var(--sirexe-gold-light);

    transform: translateY(-1px);
}

.btn-sirexe:focus-visible,
.service-category:focus-visible {
    outline: 2px solid var(--sirexe-gold);
    outline-offset: 3px;
}


/* =========================================
   EXPERIENCES
========================================= */

.experiences-section {
    padding: 80px 0;
    color: #fff;
    background: var(--primary);
}

.experiences-inner {
    width: 100%;
}


/* =========================================
   HEADER
========================================= */

.experiences-heading {
    max-width: 650px;
    margin-bottom: 30px;
}


/* =========================================
   GRID
========================================= */

.experiences-grid {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}


/* =========================================
   EXPERIENCE CARD
========================================= */

.experience-card {
    position: relative;

    display: block;

    /* height: 180px; */
    height: 310px;

    overflow: hidden;

    color: #fff;

    border-radius: 7px;

    text-decoration: none;

    background: #183b34;
}

.experience-card__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s cubic-bezier(.2, .7, .2, 1),
        filter .4s ease;
}


/* Gradient */

.experience-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(4, 24, 20, .02) 20%,
            rgba(4, 24, 20, .15) 45%,
            rgba(4, 24, 20, .82) 100%);
}


/* Content */

.experience-card__content {
    position: absolute;
    inset: auto 0 0;

    padding: 0 13px 12px;
}


/* Meta */

.experience-card__meta {
    display: flex;
    gap: 6px;

    margin-bottom: 7px;
}

.experience-card__meta span {
    display: inline-flex;
    align-items: center;

    min-height: 15px;
    padding: 2px 6px;

    color: rgba(255, 255, 255, .78);

    background: rgba(9, 47, 39, .55);

    border: 1px solid rgba(205, 160, 93, .45);
    border-radius: 20px;

    font-size: 6px;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1;
}


/* Title */

.experience-card__title {
    max-width: 90%;

    margin: 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.2;
}


/* =========================================
   HOVER
========================================= */

.experience-card:hover {
    color: #fff;
}

.experience-card:hover .experience-card__image {
    transform: scale(1.04);

    filter: saturate(1.08);
}

.experience-card:hover .experience-card__overlay {
    background:
        linear-gradient(to bottom,
            rgba(4, 24, 20, .05) 15%,
            rgba(4, 24, 20, .2) 42%,
            rgba(4, 24, 20, .88) 100%);
}


/* =========================================
   CTA
========================================= */

.experiences-action {
    margin-top: 22px;
}

.btn-sirexe--outline {
    color: #fff;

    background: transparent;

    border-color: rgba(255, 255, 255, .75);
}

.btn-sirexe--outline:hover {
    color: var(--sirexe-green);

    background: #fff;
    border-color: #fff;
}


/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    padding: 7rem 0;
    background-color: #fff;
}


/* Image */

.about-image-wrapper {
    width: 100%;
}

.about-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}


/* Content */

.about-content {
    max-width: 560px;
}


/* Eyebrow */

.section-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;

    color: #b8874a;

    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}


/* List */

.about-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;

    margin: 0 0 1.2rem;
    padding: 0;
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 1rem;

    color: #555d59;

    font-size: 0.9rem;
    line-height: 1.5;
}

.about-list li::before {
    content: "•";

    position: absolute;
    top: 0;
    left: 0;

    color: #c58d50;
}


/* Award */

.about-award {
    display: flex;
    align-items: center;
    gap: 0.65rem;

    margin-bottom: 1.6rem;

    color: #555d59;

    font-size: 0.8rem;
}

.about-award-icon {
    color: #c58d50;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 5rem 0;
    }

    .about-content {
        max-width: none;
    }
}


@media (max-width: 767.98px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-image {
        aspect-ratio: 4 / 3;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 0.9rem;
    }
}


/* ========================================
   CONTACT / CTA
======================================== */

.contact-section {
    padding: 6rem 0;

    background-color: var(--primary);
    color: #fff;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}


/* Eyebrow */

.contact-section .section-eyebrow {
    margin-bottom: 1rem;

    color: var(--color-gold);
}


/* Title */

.contact-title {
    margin: 0 auto 1rem;

    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
}

.contact-title em {
    color: var(--color-gold);
    font-style: italic;
}


/* Description */



/* Actions */

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;

    margin-top: 1.75rem;
}


/* Buttons */

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0.75rem 1.5rem;

    border-radius: 3px;

    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.contact-btn-primary {
    border: 1px solid var(--color-gold);

    background: var(--color-gold);
    color: #fff;
}

.contact-btn-primary:hover {
    border-color: #d19a5c;
    background: #d19a5c;
    color: #fff;
}

.contact-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);

    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.contact-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}


/* Trust indicators */

.contact-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;

    margin: 2rem 0 0;
    padding: 0;

    list-style: none;

    color: rgba(255, 255, 255, 0.52);

    font-size: 0.68rem;
}

.contact-trust li {
    display: inline-flex;
    align-items: center;
}

.contact-trust li:not(:last-child)::after {
    content: "•";

    margin: 0 1rem;

    color: var(--color-gold);
}


/* Accessibility */

.contact-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}


/* Mobile */

@media (max-width: 767.98px) {

    .contact-section {
        padding: 4.5rem 1rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 0.85rem;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;

        max-width: 280px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-btn {
        width: 100%;
    }

    .contact-trust {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;

        text-align: left;
    }

    .contact-trust li:not(:last-child)::after {
        display: none;
    }
}