/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */
.hero {
    padding: 0;
}

.hero-kicker {
    background: var(--cream);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    padding: 8px 12px;
    letter-spacing: .02em;
}

.hero-text {
    justify-content: center;
    text-align: center;
    padding-bottom: 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    grid-template-rows: 1fr auto;
    min-height: clamp(560px, 70vh, 760px);
}

.hero-media {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    background: #ddd;
    max-height: 750px;
}

.hero-media img,
.hero-media video,
.hero-media .ph--cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-panel {
    grid-column: 2;
    grid-row: 1;
    background: var(--yellow);
    display: flex;
    align-items: center;
    position: relative;
    max-height: 750px;
}

.hero-panel-inner {
    padding: clamp(28px, 4vw, 56px) 0;
    align-items: center;
    text-align: center;
}

.hero-panel-inner p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-badge {
    margin: 18px 0 10px;
}

.hero-badge-oval {
    margin: auto;
    width: 200px;
    height: 320px;
    background: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-badge-img {
    width: 100%;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    justify-content: center;
}

.bauhaus.cluster {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 26px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-block;
}

.dot--yellow {
    background: var(--yellow);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .06);
}

.dot--pink {
    background: var(--pink);
}

.dot--teal {
    background: var(--teal);
}

.tile {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
}

.tile--navy {
    background: var(--navy);
}

.tile--orange {
    background: var(--orange);
}

/* ---------------------------------------------------------
   Marquee
--------------------------------------------------------- */
.marquee {
    grid-column: 1 / -1;
    grid-row: 2;
    background: rgba(248, 245, 239, .92);
    border-top: 1px solid rgba(0, 0, 0, .08);
    overflow: hidden;
    padding: 10px 0;
    font-family: var(--font-head);
}

.marquee-track {
    display: inline-flex;
    gap: 16px;
    padding-left: 16px;
    white-space: nowrap;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------------------------------------------------------
   Sections
--------------------------------------------------------- */
.section {
    padding: clamp(46px, 6vw, 88px) 0;
}

.section--tight {
    padding: clamp(36px, 5vw, 68px) 0;
}

.section--soft {
    background: color-mix(in srgb, var(--navy) 3%, var(--cream));
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-head--center {
    display: block;
    text-align: center;
    margin-bottom: 26px;
}

/* ---------------------------------------------------------
   Prestations cards
--------------------------------------------------------- */
.cards-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.big-card {
    border-radius: 52px;
    padding: 34px;
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.big-card--teal {
    background: var(--teal);
}

.big-card--blue {
    background: var(--blue);
}

.big-card-inner {
    max-width: 46ch;
}

.pill {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0 0 10px;
}

.price {
    margin: 0 0 12px;
    font-size: 16px;
}

.big-card .text {
    margin-top: 0;
    opacity: .95;
}

.big-card-foot {
    margin: 26px 0 0;
    font-family: var(--font-head);
    font-size: 16px;
    opacity: .95;
}

/* ---------------------------------------------------------
   Timeline (Bauhaus loop)
--------------------------------------------------------- */
.timeline-image {
    padding-top: 16px;
}

.timeline {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 34px;
    margin-top: 26px;
    align-items: start;
}

.timeline-title {
    margin: 0 0 16px;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.timeline-title--orange {
    color: var(--orange);
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
}

.step-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--orange);
    margin-top: 4px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .2);
}

.step-dot--yellow {
    background: var(--yellow);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .08);
}

.step-title {
    margin: 0;
    font-weight: 800;
}

.step-text {
    margin: 6px 0 0;
    opacity: .9;
}

.timeline-col--right {
    position: relative;
    padding-top: 8px;
}

.loop {
    position: absolute;
    inset: -10px 0 auto auto;
    width: min(520px, 100%);
    height: 360px;
    border-radius: 220px;
    border: 6px dashed color-mix(in srgb, var(--pink) 85%, #fff);
    opacity: .7;
    transform: translateY(8px);
    pointer-events: none;
}

/* ---------------------------------------------------------
   Slider (CSS scroll-snap)
--------------------------------------------------------- */
.slider {
    background: transparent;
}

.slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.review {
    scroll-snap-align: start;
    background: color-mix(in srgb, var(--pink) 35%, #fff);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, .06);
}

.review-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.review-name {
    margin: 0;
    font-weight: 900;
    color: var(--orange);
}

.review-text {
    margin: 14px 0 0;
    text-align: center;
    opacity: .95;
}

.slider-hint {
    margin: 10px 0 0;
    font-size: 13px;
    opacity: .75;
    text-align: center;
}

.review .timeline-img {
    border-radius: 999px;
}

.timeline-img {
    width: 100%;
    height: auto;
}

/* ---------------------------------------------------------
   Projects (legacy 4-col grid)
--------------------------------------------------------- */
.projects {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.project {
    background: rgba(255, 255, 255, .42);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    padding: 14px;
}

.project .h3 {
    font-size: 18px;
    margin-top: 12px;
}

/* ================================
   PRESTATIONS v2
   ================================ */

.prestations--v2 {
    padding: clamp(46px, 6vw, 88px) 0;
}

.prestations--v2 .section-title {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    margin: 0 0 40px;
    color: var(--teal, #0B6B66);
    font-family: var(--font-head, "Urbanist", system-ui);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.prestations--v2 .cards {
    display: flex;
    gap: clamp(18px, 4vw, 80px);
    flex-wrap: wrap;
    justify-content: space-between;
}

.prestations--v2 .card {
    position: relative;
    width: min(380px, 100%);
    height: 520px;
    padding: 60px 42px;
    color: #fff;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    flex: 1 1 380px;
    overflow: visible;
}

.prestations--v2 .card--green {
    background: var(--teal, #006C6A);
}

.prestations--v2 .card--blue {
    background: var(--blue, #004E8C);
}

.prestations--v2 .badge {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.prestations--v2 .badge--hand {
    position: relative;
    padding: 10px 22px;
}

.prestations--v2 .badge--hand svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.prestations--v2 .badge-text {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.prestations--v2 .p-price {
    margin-top: 80px;
    font-weight: 700;
}

.prestations--v2 .p-text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.6;
    opacity: .95;
}

.prestations--v2 .note {
    position: absolute;
    bottom: -45px;
    left: 155px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 340px;
    font-family: "Caveat", cursive, sans-serif;
}

.prestations--v2 .note svg {
    flex-shrink: 0;
}

.note--teal {
    color: var(--teal, #006C6A);
}

.note--blue {
    color: var(--blue, #004E8C);
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .hero-media {
        grid-column: 1;
        grid-row: 1;
        min-height: 320px;
    }

    .hero-panel {
        grid-column: 1;
        grid-row: 2;
    }

    .marquee {
        grid-column: 1;
        grid-row: 3;
    }

    .hero-panel-inner {
        padding: 36px 0;
    }

    .cards-2 {
        grid-template-columns: 1fr;
    }

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

    .loop {
        display: none;
    }

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

    .prestations--v2 .card {
        height: auto;
        min-height: 520px;
    }

    .prestations--v2 .note {
        position: static;
        margin-top: 22px;
        color: rgba(255, 255, 255, .92);
    }
}

@media (max-width: 560px) {
    .projects {
        grid-template-columns: 1fr;
    }
}
