
:root {
    --or: #C0510A;
    --or2: #963D07;
    --or3: #E8661E;
    --gold: #D4A017;
    --ink: #1A1714;
    --ink2: #3D3530;
    --muted: #7A7068;
    --sand: #F7F2EA;
    --warm: #EDE5D8;
    --border: #DDD3C5;
    --white: #FFFFFF;
    --black: #0F0E0D;
    --green: #2A6E48;
    --fh: 'Playfair Display',Georgia,serif;
    --fb: 'Inter',system-ui,sans-serif;
    --fm: 'JetBrains Mono',monospace;
    --nh: 68px;
    --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--fb);
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    min-width: 320px
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: var(--fb);
    cursor: pointer
}

img {
    max-width: 100%;
    display: block
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-thumb {
    background: var(--or);
    border-radius: 4px
}

#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: opacity .5s
}

.ld-ico {
    width: 54px;
    height: 54px;
    background: var(--white);
    border: 2px solid var(--or);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    overflow: hidden;
    animation: ldpulse 1s ease-in-out infinite alternate
}

    .ld-ico img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 4px;
        box-sizing: border-box;
    }

@keyframes ldpulse {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.1)
    }
}

.ld-name {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink)
}

    .ld-name b {
        color: var(--or)
    }

.ld-track {
    width: 160px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden
}

.ld-fill {
    height: 100%;
    background: var(--or);
    border-radius: 2px;
    animation: ldfill 1.5s var(--ease) forwards
}

@keyframes ldfill {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

.ld-sub {
    font-family: var(--fm);
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted)
}

#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    height: var(--nh);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s,box-shadow .3s;
}

    #nav.scrolled {
        border-color: var(--border);
        box-shadow: 0 2px 20px rgba(0,0,0,.07)
    }

.nw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px
}

.nbrand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    cursor: pointer
}

.nbrand-ico {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 2px solid var(--or);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform .2s
}

.nbrand:hover .nbrand-ico {
    transform: scale(1.06)
}

.nbrand-txt strong {
    display: block;
    font-family: var(--fh);
    font-size: .86rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2
}

.nbrand-txt span {
    font-family: var(--fm);
    font-size: .5rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted)
}

.nlinks {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 0
}

.nlink {
    padding: 6px 11px;
    border-radius: 6px;
    font-size: .76rem;
    font-weight: 500;
    color: var(--ink2);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    background: none;
    border: none
}

    .nlink:hover {
        color: var(--or);
        background: rgba(192,81,10,.06)
    }

    .nlink.active {
        color: var(--or)
    }

.ncta {
    padding: 9px 20px;
    border-radius: 7px;
    background: var(--or);
    color: var(--white);
    font-size: .78rem;
    font-weight: 600;
    border: none;
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0
}

    .ncta:hover {
        background: var(--or3);
        box-shadow: 0 4px 16px rgba(192,81,10,.35);
        transform: translateY(-1px)
    }

.nlang {
    padding: 7px 14px;
    border-radius: 7px;
    background: transparent;
    color: var(--ink);
    font-size: .75rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    cursor: pointer
}

.ndon {
    background: var(--or3);
    text-decoration: none
}

    .ndon:hover {
        background: var(--or2);
        box-shadow: 0 4px 16px rgba(192,81,10,.35);
        transform: translateY(-1px)
    }

    .nlang:hover {
        border-color: var(--or);
        color: var(--or);
        background: rgba(192,81,10,.05)
    }

nav.scrolled .nlang {
    border-color: var(--or);
    color: var(--or)
}

    nav.scrolled .nlang:hover {
        border-color: var(--or3);
        color: var(--or3);
        background: rgba(192,81,10,.08)
    }

#ham {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
    flex-shrink: 0
}

    #ham span {
        display: block;
        width: 15px;
        height: 1.5px;
        background: var(--ink);
        transition: all .3s
    }

    #ham.open span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg)
    }

    #ham.open span:nth-child(2) {
        opacity: 0
    }

    #ham.open span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg)
    }

#mob {
    display: none;
    position: fixed;
    top: var(--nh);
    left: 0;
    right: 0;
    z-index: 790;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px 18px 18px;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    max-height: calc(100vh - var(--nh));
    overflow-y: auto
}

    #mob.open {
        display: flex
    }

    #mob .nlink {
        padding: 11px 14px;
        font-size: .85rem;
        text-align: left
    }

    #mob .ncta {
        margin-top: 8px;
        justify-content: center
    }

.page {
    display: none;
    padding-top: var(--nh)
}

    .page.active {
        display: block
    }

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px
}

.sec {
    padding: 96px 0
}

.sec-sm {
    padding: 64px 0
}

.sec-dark {
    background: linear-gradient(135deg, var(--or2) 0%, var(--or) 60%, var(--or3) 100%);
    position: relative;
    overflow: hidden;
}

    .sec-dark::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.08), transparent 55%), radial-gradient(circle at 15% 90%, rgba(0,0,0,.18), transparent 60%);
        pointer-events: none;
    }

    .sec-dark > .wrap {
        position: relative;
        z-index: 1;
    }

.sec-sand {
    background: var(--sand)
}

.sec-warm {
    background: var(--warm)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fm);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 14px
}

    .eyebrow::before {
        content: '';
        width: 18px;
        height: 2px;
        background: var(--or)
    }

    .eyebrow.gold {
        color: var(--gold)
    }

        .eyebrow.gold::before {
            background: var(--gold)
        }

h1.display {
    font-family: var(--fh);
    font-size: clamp(3rem,6vw,5.6rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.028em
}

h2.h2 {
    font-family: var(--fh);
    font-size: clamp(1.9rem,3.5vw,2.9rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em
}

h3.h3 {
    font-family: var(--fh);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2
}

.lead {
    font-size: 1rem;
    line-height: 1.82;
    font-weight: 300;
    color: var(--ink2)
}

.text {
    font-size: .9rem;
    line-height: 1.78;
    color: var(--ink2);
    font-weight: 300
}

em.brand {
    font-style: italic;
    color: var(--or)
}

.divider {
    width: 40px;
    height: 3px;
    background: var(--or);
    border-radius: 2px;
    margin: 20px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: .84rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .25s;
    font-family: var(--fb);
    text-decoration: none
}

.btn-primary {
    background: var(--or);
    color: var(--white)
}

    .btn-primary:hover {
        background: var(--or3);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(192,81,10,.35);
        color: var(--white)
    }

.btn-outline {
    background: transparent;
    color: var(--or);
    border: 2px solid var(--or)
}

    .btn-outline:hover {
        background: rgba(192,81,10,.06);
        transform: translateY(-2px)
    }

.btn-dark {
    background: var(--ink);
    color: var(--white)
}

    .btn-dark:hover {
        background: var(--ink2);
        transform: translateY(-2px);
        color: var(--white)
    }

.btn-white {
    background: var(--white);
    color: var(--or)
}

    .btn-white:hover {
        background: var(--sand);
        transform: translateY(-2px)
    }

.btn-ghost-w {
    background: transparent;
    color: var(--ink2);
    border: 1.5px solid var(--border)
}

    .btn-ghost-w:hover {
        border-color: var(--or);
        color: var(--or)
    }

.btn-wa {
    background: #25D366;
    color: var(--white)
}

    .btn-wa:hover {
        background: #1DAA54;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(37,211,102,.35);
        color: var(--white)
    }

.btn-gform {
    background: #4285F4;
    color: var(--white)
}

    .btn-gform:hover {
        background: #1A73E8;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(66,133,244,.35);
        color: var(--white)
    }

.btn-lg {
    padding: 14px 34px;
    font-size: .9rem
}

.btn-sm {
    padding: 8px 16px;
    font-size: .74rem
}

.tag {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 4px;
    font-family: var(--fm);
    font-size: .55rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500
}

.tg-or {
    background: rgba(192,81,10,.1);
    color: var(--or)
}

.tg-green {
    background: rgba(42,110,72,.1);
    color: var(--green)
}

.tg-gold {
    background: rgba(212,160,23,.12);
    color: #9A720E
}

.tg-dark {
    background: rgba(0,0,0,.05);
    color: var(--ink2)
}

.tg-gray {
    background: var(--warm);
    color: var(--muted)
}

.r {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease),transform .7s var(--ease)
}

    .r.in {
        opacity: 1;
        transform: none
    }

.rl {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .7s var(--ease),transform .7s var(--ease)
}

    .rl.in {
        opacity: 1;
        transform: none
    }

.rr {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .7s var(--ease),transform .7s var(--ease)
}

    .rr.in {
        opacity: 1;
        transform: none
    }

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

.d5 {
    transition-delay: .4s
}

.d6 {
    transition-delay: .48s
}

.hero {
    background: linear-gradient(100deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.10) 40%, rgba(255,255,255,.03) 70%, rgba(255,255,255,.0) 100%), url('../Images/_DSC8949.JPG') center/cover no-repeat;
    background-attachment: scroll, fixed;
    min-height: calc(100vh - var(--nh));
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden
}

    .hero::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(192,81,10,.10),transparent 65%);
        top: -220px;
        right: -120px;
        pointer-events: none
    }

    .hero::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(192,81,10,.05),transparent 65%);
        bottom: 80px;
        left: -80px;
        pointer-events: none
    }

.hero-body {
    display: grid;
    grid-template-columns: 1fr 380px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--border)
}

.hero-left {
    padding: 80px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(221,211,197,.4);
    background: linear-gradient( 90deg, rgba(255,255,255,.62) 0%, rgba(255,255,255,.38) 45%, rgba(255,255,255,.10) 75%, rgba(255,255,255,.0) 100% );
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.ps-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
    animation: psFloat .45s var(--ease) both;
}

    .ps-item:nth-child(1) {
        animation-delay: .04s
    }

    .ps-item:nth-child(2) {
        animation-delay: .08s
    }

    .ps-item:nth-child(3) {
        animation-delay: .12s
    }

    .ps-item:nth-child(4) {
        animation-delay: .16s
    }

    .ps-item:nth-child(5) {
        animation-delay: .20s
    }

    .ps-item:nth-child(6) {
        animation-delay: .24s
    }

    .ps-item:nth-child(7) {
        animation-delay: .28s
    }

    .ps-item:nth-child(8) {
        animation-delay: .32s
    }

    .ps-item:nth-child(9) {
        animation-delay: .36s
    }

    .ps-item:nth-child(10) {
        animation-delay: .40s
    }

@keyframes psFloat {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.ps-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 28px rgba(192,81,10,.18);
    border-color: var(--or);
}

.ps-logo-area {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 14px 10px;
    min-height: 90px;
    position: relative;
    overflow: hidden;
}

    .ps-logo-area::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(192,81,10,.05), transparent 60%);
        opacity: 0;
        transition: opacity .28s;
        pointer-events: none;
    }

.ps-item:hover .ps-logo-area::after {
    opacity: 1;
}

.ps-logo-area img {
    max-width: 100%;
    max-height: 68px;
    object-fit: contain;
    display: block;
    transition: transform .3s var(--ease);
}

.ps-item:hover .ps-logo-area img {
    transform: scale(1.07);
}

.ps-txt {
    font-family: var(--fh);
    font-size: .95rem;
    font-weight: 700;
    color: var(--or);
    text-align: center;
    line-height: 1.25;
    padding: 0 6px;
}

.ps-name-bar {
    width: 100%;
    padding: 8px 10px;
    border-top: 1px solid var(--border);
    text-align: center;
    background: rgba(247,242,234,.55);
    flex-shrink: 0;
}

.ps-name {
    font-family: var(--fm);
    font-size: .52rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .partners-showcase {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .ps-logo-area {
        min-height: 76px;
        padding: 14px 12px 8px;
    }

        .ps-logo-area img {
            max-height: 56px;
        }
}

@media (max-width: 480px) {
    .partners-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .ps-item {
        border-radius: 10px;
    }

    .ps-logo-area {
        min-height: 64px;
        padding: 12px 8px 8px;
    }

        .ps-logo-area img {
            max-height: 44px;
        }

    .ps-name {
        font-size: .46rem;
        letter-spacing: .04em;
    }

    .ps-txt {
        font-size: .78rem;
    }
}

@media (max-width: 380px) {
    .partners-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ps-logo-area {
        min-height: 58px;
        padding: 10px 8px 6px;
    }

        .ps-logo-area img {
            max-height: 38px;
        }
}

.hero-right {
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: rgba(15,14,13,.45);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-left: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 1
}
    .hero-right .hp-lbl {
        color: rgba(255,255,255,.55)
    }

    .hero-right .tb-place {
        color: rgba(255,255,255,.85)
    }

.tarifs-box {
    border-color: rgba(255,255,255,.12)
}

    .tarifs-box .tb-row {
        border-bottom-color: rgba(255,255,255,.08)
    }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fm);
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
    flex-wrap: wrap
}

.hkdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--or);
    animation: kblink 2s ease-in-out infinite;
    flex-shrink: 0
}

@keyframes kblink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

h1.hero-title {
    font-family: var(--fh);
    font-weight: 900;
    font-size: clamp(3.2rem,6.5vw,6rem);
    line-height: 1.0;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: 18px;

    text-shadow: 0 2px 8px rgba(255,255,255,.45);
}

    h1.hero-title .ita {
        font-style: italic;
        color: var(--or3)
    }

    h1.hero-title .ghost {
        -webkit-text-stroke: 2.5px #1A1714;
        -webkit-text-fill-color: transparent;
        color: transparent;
        text-shadow: none;
    }

.hero-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.hbadge {
    background: var(--or);
    color: var(--white);
    font-family: var(--fm);
    font-size: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 4px;
    font-weight: 500
}

.hero-badges p {
    font-family: var(--fm);
    font-size: .7rem;
    color: var(--muted)
}

.hero-desc {
    font-size: .98rem;
    line-height: 1.82;
    font-weight: 300;
    color: var(--ink2);
    max-width: 520px;
    margin-bottom: 32px
}

    .hero-desc strong {
        color: var(--ink);
        font-weight: 500
    }

.hero-locs {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.hloc {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: .75rem;
    transition: all .2s
}

    .hloc:hover {
        border-color: var(--or);
        color: var(--or)
    }

    .hloc i {
        color: var(--or);
        font-size: .64rem
    }

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hcd {
    margin-top: 44px;
    display: inline-block;
    padding: 18px 22px;
    border: 1px solid var(--border);
    border-radius: 8px;
    max-width: 100%
}

.hcd-lbl {
    font-family: var(--fm);
    font-size: .54rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px
}

.hcd-row {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    flex-wrap: wrap
}

.hcd-unit {
    text-align: center;
    min-width: 42px
}

.hcdn {
    font-family: var(--fh);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    display: block;
    line-height: 1
}

.hcdl {
    font-family: var(--fm);
    font-size: .5rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-top: 3px
}

.hcd-sep {
    font-family: var(--fh);
    font-size: 1.6rem;
    color: var(--or);
    opacity: .6;
    margin-top: 1px;
    animation: csep 1s step-end infinite
}

@keyframes csep {
    50% {
        opacity: .08
    }
}

.hp-lbl {
    font-family: var(--fm);
    font-size: .54rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted)
}

.stat2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border)
}

.s2item {
    padding: 18px 14px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

    .s2item:nth-child(2n) {
        border-right: none
    }

    .s2item:nth-last-child(-n+2) {
        border-bottom: none
    }

.s2n {
    font-family: var(--fh);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    display: block
}

    .s2n em {
        color: var(--or3);
        font-style: normal
    }

.s2l {
    font-size: .67rem;
    color: var(--muted);
    margin-top: 5px;
    line-height: 1.4
}

.tarifs-box {
    border: 1px solid var(--border);
    border-radius: 7px;
    overflow: hidden
}

.tb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
    flex-wrap: wrap
}

    .tb-row:last-child {
        border-bottom: none
    }

.tb-place {
    font-size: .77rem;
    color: var(--ink2)
}

.tb-price {
    font-family: var(--fm);
    font-size: .6rem;
    padding: 2px 8px;
    border-radius: 3px
}

.pfree {
    background: rgba(42,110,72,.1);
    color: var(--green)
}

.pyellow {
    background: rgba(212,160,23,.12);
    color: #9A720E
}

.porange {
    background: rgba(192,81,10,.1);
    color: #C0510A
}

.qlinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px
}

.qlink {
    padding: 10px 12px;
    border-radius: 7px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s
}

    .qlink:hover {
        background: var(--sand);
        border-color: var(--or)
    }

    .qlink span {
        font-size: .72rem;
        color: var(--ink2);
        font-weight: 500
    }

.hero-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border)
}

.hstrip {
    padding: 20px 26px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background .2s
}

    .hstrip:last-child {
        border-right: none
    }

    .hstrip:hover {
        background: rgba(0,0,0,.02)
    }

.hstrip-ico {
    font-size: 1.2rem
}

.hstrip strong {
    display: block;
    font-size: .78rem;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 2px
}

.hstrip span {
    font-size: .66rem;
    color: var(--muted);
    font-family: var(--fm)
}

.acc-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 50px
}

.acc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 22px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

    .acc-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--or);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s var(--ease)
    }

    .acc-card:hover {
        box-shadow: 0 8px 28px rgba(0,0,0,.1);
        transform: translateY(-4px)
    }

        .acc-card:hover::after {
            transform: scaleX(1)
        }

.acc-ico {
    font-size: 1.9rem;
    margin-bottom: 14px;
    display: block
}

.acc-title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px
}

.acc-body {
    font-size: .77rem;
    color: var(--muted);
    line-height: 1.65
}

.acc-more {
    margin-top: 14px;
    font-family: var(--fm);
    font-size: .58rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--or);
    display: flex;
    align-items: center;
    gap: 6px
}

.page-hero {
    background: var(--sand);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden
}

    .page-hero::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(192,81,10,.08),transparent 70%);
        top: -100px;
        right: -80px;
        pointer-events: none
    }

    .page-hero .h2 {
        color: var(--ink) !important;
        margin-bottom: 16px
    }

    .page-hero .lead {
        color: var(--ink2) !important;
        max-width: 600px
    }

    .page-hero .breadcrumb,
    .page-hero .breadcrumb span {
        color: var(--muted) !important;
    }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fm);
    font-size: .58rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    flex-wrap: wrap
}

    .breadcrumb b {
        color: var(--or)
    }

.bc-sep {
    color: var(--border)
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start
}

.two-col-lg {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start
}

.impact-list {
    margin-top: 28px
}

.il-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border)
}

    .il-row:first-child {
        border-top: 1px solid var(--border)
    }

.il-ico {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: var(--or);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .77rem;
    flex-shrink: 0;
    margin-top: 1px
}

.il-text strong {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 2px
}

.il-text span {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.5
}

.stat-panel {
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden
}

.sp-head {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border)
}

    .sp-head p {
        font-family: var(--fm);
        font-size: .55rem;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--muted)
    }

.sp-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px
}

    .sp-row:last-child {
        border-bottom: none
    }

.sp-n {
    font-family: var(--fh);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    line-height: 1
}

    .sp-n em {
        color: var(--or3);
        font-style: normal
    }

.sp-d {
    font-size: .73rem;
    color: var(--muted);
    line-height: 1.45;
    text-align: right
}

.sp-foot {
    padding: 16px 24px;
    background: var(--or);
    display: flex;
    align-items: center;
    justify-content: space-between
}

    .sp-foot p {
        font-family: var(--fm);
        font-size: .57rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(255,255,255,.8)
    }

    .sp-foot strong {
        font-family: var(--fh);
        font-size: 1.2rem;
        color: var(--white);
        font-weight: 700
    }

.visit-box {
    background: var(--warm);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 18px;
    margin-top: 16px
}

    .visit-box p {
        font-family: var(--fm);
        font-size: .55rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 10px
    }

.visit-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.vchip {
    font-size: .7rem;
    color: var(--ink2);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px 10px
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-top: 44px
}

.theme-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 18px;
    transition: all .25s
}

    .theme-card:hover {
        border-color: var(--or);
        box-shadow: 0 4px 16px rgba(0,0,0,.08)
    }

.tc-ico {
    font-size: 1.7rem;
    margin-bottom: 12px;
    display: block
}

.tc-title {
    font-size: .86rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px
}

.tc-body {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.6
}

.tc-age {
    font-family: var(--fm);
    font-size: .55rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--or);
    margin-top: 10px;
    display: block;
    padding-top: 10px;
    border-top: 1px solid var(--border)
}

.timeline {
    position: relative;
    padding-left: 28px;
    margin-top: 44px
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 7px;
        top: 10px;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg,var(--or),var(--border) 90%)
    }

.tl-entry {
    position: relative;
    margin-bottom: 8px
}

.tl-dot {
    position: absolute;
    left: -25px;
    top: 22px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    transition: all .25s;
    z-index: 1
}

.tl-entry:hover .tl-dot {
    background: var(--or);
    border-color: var(--or);
    box-shadow: 0 0 0 4px rgba(192,81,10,.12)
}

.tl-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px 20px;
    transition: all .25s
}

    .tl-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,.07);
        border-color: rgba(192,81,10,.25)
    }

.tl-year {
    font-family: var(--fm);
    font-size: .57rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 4px
}

.tl-title {
    font-size: .86rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px
}

.tl-body {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.6
}

.ptabs-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--nh);
    z-index: 50
}

.ptabs-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch
}

    .ptabs-inner::-webkit-scrollbar {
        display: none
    }

.ptab {
    padding: 14px 20px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    background: none;
    border: none;
    border-bottom: 2px solid transparent
}

    .ptab:hover {
        color: var(--or)
    }

    .ptab.active {
        color: var(--or);
        border-bottom-color: var(--or)
    }

.prog-content {
    display: none
}

    .prog-content.active {
        display: block
    }

.sched-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.sched-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05)
}

.sched-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap
}

.sh-left p {
    font-family: var(--fm);
    font-size: .57rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px
}

.sh-left strong {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink)
}

.day-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    border-bottom: 1px solid var(--border)
}

    .day-row:last-child {
        border-bottom: none
    }

.dr-day {
    padding: 13px 14px;
    background: var(--sand);
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center
}

    .dr-day .dd {
        font-family: var(--fm);
        font-size: .55rem;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: var(--muted);
        display: block
    }

    .dr-day .dn {
        font-family: var(--fh);
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--ink);
        line-height: 1
    }

.dr-act {
    padding: 13px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .dr-act .at {
        font-size: .8rem;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 2px
    }

    .dr-act .ad {
        font-size: .72rem;
        color: var(--muted);
        line-height: 1.4
    }

.sched-special {
    grid-column: 1/-1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    border-left: 4px solid var(--or)
}

.ss-head {
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.ss-badge {
    background: var(--or);
    color: var(--white);
    font-family: var(--fm);
    font-size: .56rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 4px
}

.ss-title {
    font-weight: 700;
    font-size: .88rem;
    color: var(--ink)
}

.ss-sub {
    font-size: .75rem;
    color: var(--muted);
    margin-left: auto
}

.ss-body {
    padding: 14px 22px;
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.6
}

.ftabs {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 36px;
    flex-wrap: wrap
}

.ftab {
    flex: 1;
    min-width: 140px;
    padding: 13px 10px;
    text-align: center;
    font-size: .76rem;
    font-weight: 600;
    color: var(--muted);
    background: var(--white);
    border: none;
    border-right: 1px solid var(--border);
    cursor: pointer;
    transition: all .2s
}

    .ftab:last-child {
        border-right: none
    }

    .ftab:hover {
        background: var(--sand);
        color: var(--ink)
    }

    .ftab.active {
        background: var(--or);
        color: var(--white)
    }

.ftab-content {
    display: none
}

    .ftab-content.active {
        display: block
    }

.fgrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden
}

.fitem {
    background: var(--white);
    padding: 26px 22px;
    transition: background .25s;
    position: relative;
    overflow: hidden
}

    .fitem::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20px;
        right: 20px;
        height: 2px;
        background: var(--or);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s var(--ease)
    }

    .fitem:hover {
        background: var(--sand)
    }

        .fitem:hover::after {
            transform: scaleX(1)
        }

.fi-ico {
    font-size: 1.8rem;
    margin-bottom: 13px;
    display: block
}

.fi-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 7px
}

.fi-desc {
    font-size: .76rem;
    color: var(--muted);
    line-height: 1.65
}

.fi-age {
    margin-top: 13px;
    display: block;
    padding-top: 11px;
    border-top: 1px solid var(--border);
    font-family: var(--fm);
    font-size: .56rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--or)
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s
}

    .form-card:hover {
        border-color: var(--or);
        box-shadow: 0 6px 18px rgba(0,0,0,.08);
        transform: translateY(-3px)
    }

.form-avatar {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white)
}

.form-body {
    padding: 12px 14px 14px
}

.form-name {
    font-size: .8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px
}

.form-role {
    font-family: var(--fm);
    font-size: .55rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 5px
}

.form-loc {
    font-size: .7rem;
    color: var(--muted)
}

.concours-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 52px
}

.conc-card {
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px 24px;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

    .conc-card:hover {
        background: var(--warm);
        border-color: var(--or)
    }

    .conc-card .cg-bar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--or);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s var(--ease)
    }

    .conc-card:hover .cg-bar {
        transform: scaleX(1)
    }

.conc-num {
    font-family: var(--fh);
    font-size: 3rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--border);
    line-height: 1;
    margin-bottom: 14px
}

.conc-title {
    font-size: .98rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px
}

.conc-desc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.7
}

.conc-foot {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-family: var(--fm);
    font-size: .6rem;
    color: var(--or);
    display: flex;
    align-items: center;
    gap: 7px
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 48px
}

.gal-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--warm);
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    transition: all .3s
}

    .gal-item:hover {
        transform: scale(1.02);
        box-shadow: 0 12px 32px rgba(0,0,0,.1)
    }

        .gal-item:hover .gal-overlay {
            opacity: 1
        }

.gal-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(135deg,var(--warm),var(--sand))
}

.gal-edition {
    font-family: var(--fh);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--or);
    opacity: .15;
    line-height: 1
}

.gal-ico {
    font-size: 2.8rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.1))
}

.gal-caption {
    font-family: var(--fm);
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center
}

.gal-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gal-item:hover .gal-img {
    transform: scale(1.05)
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(192,81,10,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity .3s;
    z-index: 2;
}

    .gal-overlay strong {
        color: var(--white);
        font-family: var(--fh);
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        padding: 0 16px
    }

    .gal-overlay span {
        color: rgba(255,255,255,.75);
        font-size: .75rem;
        font-family: var(--fm)
    }

.gal-big {
    grid-column: span 2;
    aspect-ratio: 16/7
}

.gal-section-title {
    font-family: var(--fm);
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 28px 0 16px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

    .gal-section-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border)
    }

.editions-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 44px
}

.ed-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
    transition: all .25s
}

    .ed-card:hover {
        border-color: var(--or);
        box-shadow: 0 4px 16px rgba(0,0,0,.08);
        transform: translateY(-3px)
    }

.ed-year {
    font-family: var(--fm);
    font-size: .58rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 10px;
    display: block
}

.ed-num {
    font-family: var(--fh);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    display: block
}

.ed-lbl {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 5px;
    line-height: 1.4
}

.ed-loc {
    font-family: var(--fm);
    font-size: .55rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    display: block
}

.partners-scroll {
    overflow: hidden;
    margin-top: 48px;
    position: relative
}

    .partners-scroll::before, .partners-scroll::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 2;
        pointer-events: none
    }

    .partners-scroll::before {
        left: 0;
        background: linear-gradient(90deg,var(--white),transparent)
    }

    .partners-scroll::after {
        right: 0;
        background: linear-gradient(270deg,var(--white),transparent)
    }

.ptrack {
    display: flex;
    gap: 14px;
    animation: pscroll 24s linear infinite;
    width: max-content
}

    .ptrack:hover {
        animation-play-state: paused
    }

@keyframes pscroll {
    to {
        transform: translateX(-50%)
    }
}

.plogo {
    padding: 14px 26px;
    border: 1px solid var(--border);
    border-radius: 8px;
    white-space: nowrap;
    font-size: .77rem;
    font-weight: 600;
    color: var(--ink2);
    transition: all .25s;
    min-width: 140px;
    text-align: center;
    background: var(--white)
}

    .plogo:hover {
        border-color: var(--or);
        color: var(--or);
        box-shadow: 0 2px 12px rgba(0,0,0,.06)
    }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 18px;
    text-align: center;
    transition: all .25s
}

    .partner-card:hover {
        border-color: var(--or);
        box-shadow: 0 4px 16px rgba(0,0,0,.08);
        transform: translateY(-3px)
    }

.pc-ico {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block
}

.pc-name {
    font-size: .86rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
}

.pc-type {
    font-family: var(--fm);
    font-size: .56rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted)
}

.become-box {
    background: var(--sand);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 52px;
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center
}

.bb-title {
    font-family: var(--fh);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px
}

.bb-body {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 540px
}

.partner-item {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    transition: all .3s;
}

    .partner-item:hover {
        border-color: var(--or);
        box-shadow: 0 6px 16px rgba(192,81,10,.15);
    }

    .partner-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.partner-placeholder {
    font-family: var(--fh);
    font-size: 1rem;
    font-weight: 700;
    color: var(--or);
    text-align: center;
    line-height: 1.25;
}

.uam-section {
    background: linear-gradient(135deg, var(--sand) 0%, var(--warm) 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--or);
    border-radius: 14px;
    padding: 36px 40px;
    margin: 32px 0;
    display: grid;
    grid-template-columns: 1fr 280px;
    align-items: center;
    gap: 32px;
}

    .uam-section h3 {
        font-family: var(--fh);
        font-size: 1.35rem;
        color: var(--or);
        font-weight: 700;
        margin-bottom: 6px;
        letter-spacing: .01em;
    }

    .uam-section .uam-name {
        font-family: var(--fh);
        color: var(--ink);
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .uam-section p {
        color: var(--muted);
        font-size: .82rem;
        line-height: 1.6;
        max-width: 480px;
    }

.uam-logo-placeholder {
    width: 280px;
    height: 200px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: var(--muted);
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

    .uam-logo-placeholder img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05)
}

.info-card-head {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px
}

.ich-ico {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--or);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0
}

.ich-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink)
}

.ich-sub {
    font-size: .72rem;
    color: var(--muted)
}

.info-card-body {
    padding: 20px 24px
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border)
}

    .info-row:last-child {
        border-bottom: none
    }

.ir-ico {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    flex-shrink: 0;
    margin-top: 1px
}

.ir-text strong {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px
}

.ir-text span {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.5
}

.tarif-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 44px
}

.tarif-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s;
    display: flex;
    flex-direction: column
}

    .tarif-card:hover {
        box-shadow: 0 12px 32px rgba(0,0,0,.1);
        transform: translateY(-4px)
    }

    .tarif-card.hl {
        border-color: var(--or)
    }

.tc-head {
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border)
}

.tarif-card.hl .tc-head {
    background: var(--or);
    border-color: var(--or)
}

.tc-city {
    font-family: var(--fm);
    font-size: .56rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 10px
}

.tarif-card.hl .tc-city {
    color: rgba(255,255,255,.65)
}

.tc-price {
    font-family: var(--fh);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1
}

.tarif-card.hl .tc-price {
    color: var(--white)
}

.tc-unit {
    font-size: .7rem;
    color: var(--muted);
    margin-top: 3px
}

.tarif-card.hl .tc-unit {
    color: rgba(255,255,255,.55)
}

.tc-body {
    padding: 16px 20px;
    flex: 1 1 auto
}

.tc-name {
    font-weight: 600;
    font-size: .85rem;
    color: var(--ink);
    margin-bottom: 7px
}

.tc-desc {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.6
}

.tc-note {
    font-size: .68rem;
    color: var(--muted);
    margin-top: 8px;
    font-style: italic
}

.tc-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px 20px;
    margin-top: auto
}

    .tc-cta .btn {
        width: 100%;
        justify-content: center
    }

.tc-collab {
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    text-align: center;
    background: var(--sand, rgba(0,0,0,.02))
}

.tc-collab-label {
    display: block;
    font-family: var(--fm);
    font-size: .56rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px
}

.tc-collab strong {
    font-size: .76rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 16px
}

.tr-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    transition: all .25s
}

    .tr-item:hover {
        border-color: var(--or);
        box-shadow: 0 4px 12px rgba(0,0,0,.07)
    }

.tr-ico {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block
}

.tr-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
}

.tr-body {
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.5
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.contact-info-card {
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden
}

.cic-head {
    padding: 28px;
    border-bottom: 1px solid var(--border)
}

    .cic-head p {
        font-family: var(--fm);
        font-size: .55rem;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 8px
    }

    .cic-head strong {
        font-family: var(--fh);
        font-size: 1.2rem;
        color: var(--ink);
        font-weight: 700
    }

.contact-items {
    padding: 0
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--border);
    transition: background .2s
}

    .ci-item:last-child {
        border-bottom: none
    }

    .ci-item:hover {
        background: rgba(0,0,0,.02)
    }

.ci-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0,0,0,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    color: var(--ink2)
}

.ci-text strong {
    display: block;
    color: var(--muted);
    font-weight: 400;
    font-family: var(--fm);
    font-size: .55rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px
}

.ci-text p {
    font-size: .84rem;
    color: var(--ink2);
    font-weight: 500;
    word-break: break-word
}

.social-links-dark {
    padding: 22px 28px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.sld {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .8rem;
    text-decoration: none;
    transition: all .2s
}

    .sld:hover {
        border-color: var(--or);
        color: var(--or);
        background: rgba(192,81,10,.08)
    }

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06)
}

.cf-title {
    font-family: var(--fh);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px
}

.cf-sub {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 26px
}

.form-group {
    margin-bottom: 18px
}

    .form-group label {
        display: block;
        font-size: .76rem;
        font-weight: 600;
        color: var(--ink2);
        margin-bottom: 7px
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 11px 14px;
        border: 1px solid var(--border);
        border-radius: 7px;
        font-family: var(--fb);
        font-size: .84rem;
        color: var(--ink);
        background: var(--white);
        transition: border-color .2s,box-shadow .2s;
        outline: none
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--or);
            box-shadow: 0 0 0 3px rgba(192,81,10,.1)
        }

    .form-group textarea {
        resize: vertical;
        min-height: 110px
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form-note {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 14px;
    line-height: 1.5
}

.form-success {
    display: none;
    text-align: center;
    padding: 28px;
    background: rgba(42,110,72,.06);
    border: 1px solid rgba(42,110,72,.15);
    border-radius: 8px;
    margin-top: 14px
}

    .form-success p {
        font-size: .9rem;
        color: var(--green);
        font-weight: 500
    }

.faq-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 72px;
    align-items: start
}

.fq-item {
    border-bottom: 1px solid var(--border)
}

    .fq-item:first-child {
        border-top: 1px solid var(--border)
    }

.fq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    cursor: pointer;
    gap: 20px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink);
    transition: color .2s;
    -webkit-user-select: none;
    user-select: none
}

    .fq-q:hover {
        color: var(--or)
    }

.fq-item.open .fq-q {
    color: var(--or)
}

.fq-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    color: var(--muted);
    flex-shrink: 0;
    transition: all .25s
}

.fq-item.open .fq-ico {
    background: var(--or);
    border-color: var(--or);
    color: var(--white);
    transform: rotate(45deg)
}

.fq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease),padding .3s;
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.75
}

    .fq-a.open {
        max-height: 500px;
        padding-bottom: 16px
    }

.inscription-hero {
    background: var(--sand);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

    .inscription-hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(192,81,10,.08),transparent 65%);
        top: -150px;
        right: -100px;
        pointer-events: none
    }

    .inscription-hero .h2 {
        color: var(--ink) !important
    }

    .inscription-hero .lead {
        color: var(--ink2) !important;
        max-width: 580px;
        margin-top: 12px
    }

.insc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.insc-panel {
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden
}

.ip-head {
    padding: 22px 26px;
    border-bottom: 1px solid var(--border)
}

    .ip-head small {
        font-family: var(--fm);
        font-size: .56rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--muted);
        display: block;
        margin-bottom: 5px
    }

    .ip-head strong {
        font-family: var(--fh);
        font-size: 1.15rem;
        color: var(--ink);
        font-weight: 700
    }

.ip-options {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ip-opt {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 18px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .25s;
    cursor: pointer
}

    .ip-opt:hover {
        transform: translateX(4px)
    }

.ip-wa {
    background: rgba(37,211,102,.07);
    border-color: rgba(37,211,102,.18)
}

    .ip-wa:hover {
        background: rgba(37,211,102,.13);
        border-color: rgba(37,211,102,.35)
    }

.ip-gf {
    background: rgba(66,133,244,.07);
    border-color: rgba(66,133,244,.18)
}

    .ip-gf:hover {
        background: rgba(66,133,244,.13);
        border-color: rgba(66,133,244,.35)
    }

.ip-opt-ico {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.ip-wa .ip-opt-ico {
    background: #25D366;
    color: var(--white)
}

.ip-gf .ip-opt-ico {
    background: #4285F4;
    color: var(--white)
}

.ip-txt strong {
    display: block;
    font-size: .84rem;
    color: var(--ink);
    margin-bottom: 2px
}

.ip-txt span {
    font-size: .7rem;
    color: var(--muted)
}

.ip-arrow {
    margin-left: auto;
    color: var(--muted);
    font-size: .68rem
}

.ip-checks {
    padding: 13px 18px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.ipck {
    font-family: var(--fm);
    font-size: .57rem;
    letter-spacing: .05em;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px
}

    .ipck::before {
        content: '✓';
        color: var(--green)
    }

.insc-info {
    display: flex;
    flex-direction: column;
    gap: 0
}

.insc-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 32px
}

.insc-li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: .84rem;
    color: var(--ink2)
}

    .insc-li::before {
        content: '→';
        color: var(--or);
        font-size: .78rem;
        flex-shrink: 0
    }

    .insc-li strong {
        color: var(--ink);
        font-weight: 500
    }

.tarif-mini-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.12)
}

.tml-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
    flex-wrap: wrap
}

    .tml-row:last-child {
        border-bottom: none
    }

.tml-city {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink)
}

.tml-price {
    font-family: var(--fm);
    font-size: .62rem;
    padding: 2px 9px;
    border-radius: 3px
}

.real-hero {
    background: var(--or);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

    .real-hero::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -150px;
        right: -100px;
        pointer-events: none
    }

    .real-hero .h2 {
        color: var(--white)
    }

    .real-hero .lead {
        color: rgba(255,255,255,.75);
        max-width: 580px;
        margin-top: 12px
    }

    .real-hero .eyebrow {
        color: rgba(255,255,255,.65)
    }

        .real-hero .eyebrow::before {
            background: rgba(255,255,255,.5)
        }

.impact-big {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 52px
}

.ib-item {
    background: var(--white);
    padding: 40px 28px;
    text-align: center;
    transition: background .25s
}

    .ib-item:hover {
        background: var(--sand)
    }

.ib-num {
    font-family: var(--fh);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--or);
    line-height: 1;
    display: block;
    margin-bottom: 8px
}

.ib-label {
    font-size: .88rem;
    color: var(--ink2);
    line-height: 1.5;
    max-width: 180px;
    margin: 0 auto
}

.editions-timeline {
    margin-top: 56px
}

.et-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: all .3s
}

    .et-item:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,.08);
        border-color: rgba(192,81,10,.25)
    }

.et-head {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    padding: 20px 24px;
    gap: 20px;
    cursor: pointer
}

.et-year {
    font-family: var(--fh);
    font-size: 2rem;
    font-weight: 700;
    color: var(--or);
    line-height: 1
}

.et-info strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px
}

.et-info p {
    font-size: .76rem;
    color: var(--muted)
}

.et-stats {
    display: flex;
    gap: 16px
}

.et-stat {
    text-align: right
}

    .et-stat .esn {
        font-family: var(--fh);
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--ink);
        display: block;
        line-height: 1
    }

    .et-stat .esl {
        font-size: .64rem;
        color: var(--muted);
        font-family: var(--fm);
        letter-spacing: .06em
    }

.et-body {
    padding: 0 24px 22px;
    border-top: 1px solid var(--border);
    display: none
}

.et-item.open .et-body {
    display: block;
    padding-top: 18px
}

.et-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px
}

.temo-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 48px
}

.temo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 26px 22px;
    transition: all .25s
}

    .temo-card:hover {
        box-shadow: 0 6px 20px rgba(0,0,0,.08);
        transform: translateY(-3px)
    }

.temo-quote {
    font-size: .88rem;
    color: var(--ink2);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
    padding-left: 16px
}

    .temo-quote::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -4px;
        font-family: var(--fh);
        font-size: 2rem;
        color: var(--or);
        line-height: 1;
        opacity: .4
    }

.temo-author {
    display: flex;
    align-items: center;
    gap: 11px
}

.temo-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0
}

.temo-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink)
}

.temo-role {
    font-size: .7rem;
    color: var(--muted)
}

.sec-with-bg {
    background-image: url('../Images/_DSC8949.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

    .sec-with-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(192,81,10,.88) 0%, rgba(150,61,7,.85) 55%, rgba(232,102,30,.82) 100%);
        z-index: 1;
    }

    .sec-with-bg .wrap {
        position: relative;
        z-index: 2;
    }

.formateurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.formateur-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s;
    text-align: center;
}

    .formateur-card:hover {
        box-shadow: 0 12px 32px rgba(0,0,0,.12);
        transform: translateY(-6px);
    }

.formateur-photo {
    width: 100%;
    height: 280px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}

    .formateur-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.formateur-info {
    padding: 22px 18px
}

.formateur-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.formateur-specialite {
    font-size: .75rem;
    color: var(--or);
    font-family: var(--fm);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.formateur-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.formateur-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink2);
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

    .formateur-social-btn:hover {
        background: var(--or);
        color: var(--white);
        border-color: var(--or);
        transform: scale(1.1);
    }

.companies-marquee {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.companies-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 38s linear infinite;
}

.companies-marquee:hover .companies-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.company-logo {
    flex: 0 0 auto;
    width: 360px;
    height: 260px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all .25s;
    font-family: var(--fm);
    font-size: .72rem;
    color: var(--ink2);
    text-align: center;
    font-weight: 500;
    overflow: hidden;
    position: relative;
}

    .company-logo:hover {
        border-color: var(--or);
        box-shadow: 0 6px 18px rgba(192,81,10,.18);
        transform: translateY(-3px);
    }

    .company-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

    .company-logo .cl-label {
        position: absolute;
        bottom: 8px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: .7rem;
        font-weight: 600;
        color: var(--white);
        background: rgba(0,0,0,.55);
        padding: 4px 8px;
        border-radius: 0 0 8px 8px;
    }

.companies-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    margin: 40px 0;
}

    .companies-carousel::-webkit-scrollbar {
        height: 6px
    }

    .companies-carousel::-webkit-scrollbar-track {
        background: var(--border);
        border-radius: 10px
    }

    .companies-carousel::-webkit-scrollbar-thumb {
        background: var(--or);
        border-radius: 10px
    }

.illu-collage {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 12px;
    margin-top: 28px;
}

    .illu-collage .illu {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background: var(--sand);
        box-shadow: 0 6px 18px rgba(0,0,0,.08);
        transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    }

        .illu-collage .illu:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0,0,0,.14);
        }

        .illu-collage .illu img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .8s var(--ease);
        }

        .illu-collage .illu:hover img {
            transform: scale(1.04)
        }

        .illu-collage .illu::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.4));
            pointer-events: none;
        }

        .illu-collage .illu .ilbl {
            position: absolute;
            left: 14px;
            bottom: 12px;
            font-family: var(--fm);
            font-size: .58rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--white);
            z-index: 1;
        }

.illu-big {
    grid-row: span 2
}

.form-teaser {
    background: linear-gradient(135deg, var(--sand) 0%, var(--warm) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px 36px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
}

    .form-teaser .ft-left .eyebrow {
        margin-bottom: 10px
    }

    .form-teaser h3 {
        font-family: var(--fh);
        font-size: 1.55rem;
        color: var(--ink);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .form-teaser p {
        font-size: .88rem;
        color: var(--muted);
        line-height: 1.65;
        max-width: 520px;
    }

.ft-avatars {
    display: flex;
    align-items: center
}

    .ft-avatars .fta {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 2.5px solid var(--white);
        background: var(--or);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--fh);
        font-weight: 700;
        font-size: .78rem;
        margin-left: -10px;
        box-shadow: 0 2px 6px rgba(0,0,0,.12);
    }

        .ft-avatars .fta:first-child {
            margin-left: 0
        }

    .ft-avatars .fta-more {
        background: var(--ink);
        font-size: .68rem;
        font-family: var(--fm);
    }

footer {
    background: linear-gradient(160deg, var(--or2) 0%, #6B2A05 55%, #4A1D03 100%);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -100px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,.07), transparent 65%);
        pointer-events: none;
    }

    footer .wrap {
        position: relative;
        z-index: 1;
    }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.07)
}

.fg-brand .fl-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.fl-ico {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 2px solid var(--or);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    overflow: hidden;
}

    .nbrand-ico img,
    .fl-ico img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 2px;
        box-sizing: border-box;
    }

.fl-name strong {
    font-family: var(--fh);
    font-size: .95rem;
    color: var(--white);
    font-weight: 700
}

.fg-brand p {
    font-size: .78rem;
    color: rgba(255,255,255,1);
    line-height: 1.75;
    max-width: 270px;
    margin-bottom: 18px
}

.socials {
    display: flex;
    gap: 9px
}

.soc {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.36);
    font-size: .75rem;
    text-decoration: none;
    transition: all .2s
}

    .soc:hover {
        border-color: var(--or);
        color: var(--or);
        background: rgba(192,81,10,.08)
    }

.fc-title {
    font-family: var(--fm);
    font-size: .56rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    margin-bottom: 16px
}

.fc-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

    .fc-links a {
        font-size: .78rem;
        color: rgba(255,255,255,.36);
        transition: color .2s;
        cursor: pointer
    }

        .fc-links a:hover {
            color: var(--white)
        }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

    .footer-bottom span {
        font-family: var(--fm);
        font-size: .63rem;
        color: rgba(255,255,255,.2)
    }

    .footer-bottom .heart {
        color: var(--or)
    }

#btt {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 500;
    width: 40px;
    height: 40px;
    background: var(--or);
    color: var(--white);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(12px);
    transition: all .3s;
    pointer-events: none
}

    #btt.vis {
        opacity: 1;
        transform: none;
        pointer-events: all
    }

    #btt:hover {
        background: var(--or3);
        transform: translateY(-3px) !important
    }

@media (max-width: 1100px) {
    .nlinks {
        display: none
    }

    #ham {
        display: flex
    }

    .ncta {
        display: none
    }

    .ndon {
        display: none
    }

    #mob .ncta,
    #mob .ndon {
        display: flex
    }

    .nlang {
        padding: 6px 10px;
        font-size: .7rem
    }

    .hero-body {
        grid-template-columns: 1fr
    }

    .hero-right {
        display: none
    }

    .hero-left {
        padding: 64px 28px;
        border-right: none;
        background: linear-gradient( 90deg, rgba(255,255,255,.58) 0%, rgba(255,255,255,.30) 50%, rgba(255,255,255,.08) 100% );
        -webkit-backdrop-filter: blur(1px);
        backdrop-filter: blur(1px);
    }

    .two-col, .two-col-lg, .contact-layout, .insc-layout, .faq-layout, .inscription-hero .two-col {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .sched-grid {
        grid-template-columns: 1fr
    }

    .fgrid {
        grid-template-columns: 1fr 1fr
    }

    .themes-grid {
        grid-template-columns: 1fr 1fr
    }

    .editions-grid {
        grid-template-columns: 1fr 1fr
    }

    .tarif-grid {
        grid-template-columns: 1fr 1fr
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }

    .acc-cards {
        grid-template-columns: 1fr
    }

    .impact-big {
        grid-template-columns: 1fr 1fr
    }

    .temo-grid {
        grid-template-columns: 1fr
    }

    .gal-grid {
        grid-template-columns: 1fr 1fr
    }

    .gal-big {
        grid-column: span 2
    }

    .become-box {
        grid-template-columns: 1fr
    }

    .formateurs-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .concours-grid {
        grid-template-columns: 1fr
    }

    .wrap {
        padding: 0 24px
    }

    .ptabs-inner {
        padding: 0 24px
    }

    .sec {
        padding: 72px 0
    }
}

@media (max-width: 900px) {
    .formateurs-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .editions-grid,
    .partners-grid,
    .tarif-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-strip {
        grid-template-columns: 1fr 1fr
    }

    .hstrip:nth-child(2) {
        border-right: none
    }

    .illu-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px
    }

    .illu-big {
        grid-column: span 2;
        grid-row: span 1
    }

    .form-teaser {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 32px 28px
    }

        .form-teaser .ft-right {
            align-items: flex-start !important
        }

    .uam-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 24px
    }

    .uam-logo-placeholder {
        width: 100%;
        max-width: 280px;
        margin: 0 auto
    }

    .uam-section p {
        margin: 0 auto
    }

    .concours-grid {
        grid-template-columns: 1fr 1fr
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .two-col,
    .two-col-lg {
        gap: 36px
    }

    .contact-layout,
    .insc-layout {
        gap: 36px
    }

    .faq-layout {
        gap: 40px
    }
}

@media (max-width: 680px) {
    :root {
        --nh: 62px
    }

    .hero::before,
    .hero::after,
    .page-hero::before,
    .inscription-hero::before {
        display: none !important
    }

    .hero {
        min-height: 0
    }

    .hero-body {
        grid-template-columns: 1fr
    }

    .hero-desc {
        max-width: 100%
    }

    .hero-left {
        padding: 40px 18px;
        background: linear-gradient( 180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.52) 60%, rgba(255,255,255,.20) 100% );
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
    }

    h1.hero-title {
        font-size: clamp(2.2rem,9vw,2.8rem);
        margin-bottom: 14px
    }

        h1.hero-title .ghost {
            -webkit-text-stroke: 2px #1A1714;
        }

    .hero-locs {
        margin-bottom: 28px
    }

    .hloc {
        font-size: .7rem;
        padding: 6px 12px
    }

    .two-col,
    .two-col-lg,
    .contact-layout,
    .insc-layout,
    .faq-layout,
    .inscription-hero .two-col {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .acc-cards,
    .info-grid,
    .sched-grid,
    .fgrid,
    .themes-grid,
    .tarif-grid,
    .concours-grid,
    .footer-grid,
    .gal-grid,
    .impact-big,
    .become-box,
    .form-row,
    .transport-grid {
        grid-template-columns: 1fr
    }

    .formateurs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .editions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .hero-strip {
        grid-template-columns: 1fr 1fr
    }

    .hstrip:nth-child(odd) {
        border-right: 1px solid var(--border)
    }

    .hstrip:nth-child(even) {
        border-right: none
    }

    .hstrip:nth-child(1),
    .hstrip:nth-child(2) {
        border-bottom: 1px solid var(--border)
    }

    .illu-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px
    }

        .illu-collage .illu {
            height: 200px
        }

    .illu-big {
        grid-column: span 1;
        grid-row: span 1
    }

    .illu-collage .illu-big {
        height: 240px
    }

    .form-teaser {
        grid-template-columns: 1fr;
        padding: 26px 22px;
        text-align: left;
        gap: 18px
    }

        .form-teaser .ft-right {
            align-items: flex-start !important;
            width: 100%
        }

        .form-teaser h3 {
            font-size: 1.3rem
        }

    .uam-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 20px;
        gap: 20px
    }

    .uam-logo-placeholder {
        width: 100%;
        max-width: 240px;
        height: 160px;
        margin: 0 auto
    }

    .day-row {
        grid-template-columns: 64px 1fr
    }

    .dr-day .dn {
        font-size: 1.2rem
    }

    .dr-day {
        padding: 10px 8px
    }

    .dr-act {
        padding: 11px 14px
    }

        .dr-act .at {
            font-size: .78rem
        }

        .dr-act .ad {
            font-size: .7rem
        }

    .sp-head, .sp-row, .sp-foot {
        padding-left: 16px;
        padding-right: 16px
    }

    .sp-n {
        font-size: 1.5rem
    }

    .sp-d {
        font-size: .7rem
    }

    .page-hero {
        padding: 56px 0 48px
    }

    .inscription-hero {
        padding: 56px 0
    }

    .timeline {
        padding-left: 22px
    }

    .tl-dot {
        left: -22px;
        width: 12px;
        height: 12px
    }

    .hero-desc,
    .page-hero .lead,
    .inscription-hero .lead,
    .form-teaser p,
    .fg-brand p,
    .uam-section p {
        max-width: 100%
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch
    }

        .hero-ctas .btn {
            width: 100%;
            justify-content: center
        }

    .sec, .sec-sm {
        padding: 48px 0
    }

    .companies-carousel {
        padding: 16px 0;
        margin: 28px 0
    }

    .fq-q {
        font-size: .85rem;
        gap: 12px;
        padding: 14px 0
    }

    .ptabs-inner {
        padding: 0 16px
    }

    .ptab {
        padding: 12px 14px;
        font-size: .74rem
    }

    .nw {
        padding: 0 16px;
        gap: 8px
    }

    .nbrand-txt strong {
        font-size: .78rem
    }

    .nbrand-txt span {
        font-size: .45rem
    }

    .wrap {
        padding: 0 16px
    }

    .hstrip {
        padding: 14px 16px
    }

    .hero-kicker {
        font-size: .55rem
    }

    .hero-desc {
        font-size: .92rem
    }

    .et-head {
        grid-template-columns: 60px 1fr;
        gap: 12px;
        padding: 16px
    }

    .et-stats {
        display: none
    }

    .et-year {
        font-size: 1.6rem
    }

    .contact-form {
        padding: 22px
    }

    .become-box {
        padding: 32px 22px
    }

    .bb-title {
        font-size: 1.4rem
    }

    .footer-bottom {
        justify-content: center;
        text-align: center
    }

        .footer-bottom span {
            flex: 1 1 100%;
            text-align: center
        }

    .btn {
        padding: 11px 20px;
        font-size: .8rem
    }

    .btn-lg {
        padding: 13px 24px;
        font-size: .85rem
    }

    .ftab {
        flex-basis: 50%;
        min-width: 0
    }

    .gal-section-title {
        font-size: .55rem
    }

    .gal-big {
        grid-column: span 1;
        aspect-ratio: 4/3
    }

    .ss-head {
        padding: 14px 16px
    }

    .ss-sub {
        margin-left: 0;
        width: 100%
    }

    .info-card-head, .info-card-body {
        padding: 16px
    }

    .ci-item {
        padding: 14px 18px
    }

    .cic-head {
        padding: 20px
    }

    .ip-head {
        padding: 18px 20px
    }

    .ip-options {
        padding: 8px
    }

    .ip-opt {
        padding: 14px
    }

    .tl-card {
        padding: 14px 16px
    }

    .hcdn {
        font-size: 1.6rem
    }

    .hcd {
        padding: 14px 16px
    }

    .hcd-row {
        gap: 5px
    }

    .hcd-unit {
        min-width: 36px
    }

    .hcd-sep {
        font-size: 1.2rem
    }

    #btt {
        bottom: 16px;
        right: 16px;
        width: 36px;
        height: 36px
    }
}

@media (max-width: 480px) {
    .formateurs-grid,
    .editions-grid,
    .partners-grid,
    .concours-grid,
    .tarif-grid {
        grid-template-columns: 1fr
    }

    .hero-strip {
        grid-template-columns: 1fr
    }

    .hstrip {
        border-right: none !important;
        border-bottom: 1px solid var(--border)
    }

        .hstrip:last-child {
            border-bottom: none
        }

    .form-teaser .ft-avatars .fta {
        width: 38px;
        height: 38px;
        font-size: .7rem;
        margin-left: -8px
    }

    .hcd-row {
        gap: 4px
    }

    .hcd-unit {
        min-width: 38px
    }

    .hcdn {
        font-size: 1.4rem
    }

    .hcd-sep {
        font-size: 1.1rem
    }

    .hero-badges {
        gap: 8px
    }

    .hbadge {
        font-size: .55rem;
        padding: 4px 10px
    }

    .gal-edition {
        font-size: 2rem
    }

    .btn {
        padding: 10px 18px;
        font-size: .78rem
    }

    .btn-lg {
        padding: 12px 22px;
        font-size: .82rem
    }

    .footer-bottom {
        text-align: center
    }

    .h2 {
        font-size: clamp(1.5rem,6vw,2rem)
    }
}

@media (max-width: 380px) {
    .nw {
        padding: 0 12px
    }

    .wrap {
        padding: 0 14px
    }

    .ptabs-inner {
        padding: 0 12px
    }

    .hero-left {
        padding: 32px 14px
    }

    .hero-left {
        background: linear-gradient( 180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.55) 60%, rgba(255,255,255,.22) 100% );
    }

    h1.hero-title {
        font-size: 2rem
    }

        h1.hero-title .ghost {
            -webkit-text-stroke: 1.8px #1A1714;
        }

    .day-row {
        grid-template-columns: 56px 1fr
    }

    .dr-day {
        padding: 8px 6px
    }

        .dr-day .dn {
            font-size: 1.1rem
        }

    .hcd {
        padding: 12px 14px
    }

    .hcd-unit {
        min-width: 34px
    }

    .hcdn {
        font-size: 1.25rem
    }

    .hcd-sep {
        font-size: 1rem
    }

    .hcd-lbl {
        font-size: .56rem
    }

    .form-teaser {
        padding: 22px 16px
    }

        .form-teaser h3 {
            font-size: 1.15rem
        }

    .ft-avatars .fta {
        width: 34px;
        height: 34px;
        font-size: .65rem
    }

    .nbrand-ico {
        width: 32px;
        height: 32px;
        font-size: 1rem
    }

    .nbrand-txt strong {
        font-size: .72rem
    }

    .nbrand-txt span {
        display: none
    }

    .editions-grid,
    .partners-grid,
    .formateurs-grid {
        grid-template-columns: 1fr
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important
    }
}

.formateur-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    overflow: visible;
}

.fp-circle {
    position: relative;
    width: 100%;
    max-width: 190px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 8px 22px rgba(0,0,0,.14);
    background: linear-gradient(135deg, #C0510A, #E8661E);
}

    .fp-circle img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

.fp-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 2.4rem;
    letter-spacing: .03em;
}

.formateur-social-btn.fsb-in:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #fff;
}

.formateur-social-btn.fsb-fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.insc-infos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 0 auto 44px;
}

.insc-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
}

.iir-ico {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C0510A, #E8661E);
    color: #fff;
    font-size: 1rem;
}

.iir-txt {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .iir-txt strong {
        color: var(--white);
        font-size: .92rem;
        font-weight: 700;
    }

    .iir-txt span {
        color: rgba(255,255,255,.55);
        font-size: .8rem;
    }

.insc-camps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.insc-camp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.insc-camp-img {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    box-shadow: 0 14px 38px rgba(0,0,0,.32);
    border: 1px solid rgba(255,255,255,.12);
    display: block;
}

.insc-camp.noimg {
    padding: 40px 0;
}

.insc-camp-btn {
    width: 100%;
    max-width: 380px;
    justify-content: center;
}

.home-camp-visual {
    display: block;
    flex: none;
    width: 100%;
    max-width: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
    transition: transform .25s, box-shadow .25s;
}

    .home-camp-visual:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0,0,0,.22);
    }

    .home-camp-visual img {
        width: 100%;
        height: auto;
        display: block;
    }

@media (max-width: 720px) {
    .insc-infos,
    .insc-camps {
        grid-template-columns: 1fr;
    }

    .home-camps {
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .home-camps .home-camp {
        flex: 1 1 100% !important;
        min-width: 100% !important;
    }
}

.et-video {
    position: relative;
    margin-top: 14px;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: 0 8px 22px rgba(0,0,0,.16);
}
.et-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease, filter .3s ease;
}
.et-video:hover img { transform: scale(1.05); filter: brightness(.82); }
.et-video .et-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.et-video .et-play i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(192,81,10,.92);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    padding-left: 4px;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    transition: transform .25s ease, background .25s ease;
}
.et-video:hover .et-play i { transform: scale(1.1); background: #C0510A; }
.et-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 1;
}
.et-video.loaded:not(.loading) iframe { opacity: 1; }
.et-video.loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 2;
}
.et-video.loading .et-play { display: none; }
.et-spinner {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 52px;
    height: 52px;
    border: 4px solid rgba(255,255,255,.28);
    border-top-color: #fff;
    border-radius: 50%;
    animation: etspin .8s linear infinite;
    z-index: 3;
}
@keyframes etspin { to { transform: rotate(360deg); } }
