:root {
    --c1: #49668b;
    --c2: #7092b9;
    --c3: #f7fbfc;
    --c4: #0b1c36;
    --c5: #293b59;
    --c6: #a2b7ce;
    --c7: #666d7d;
    --c8: #d1d2d7;
    --serif: 'Libre Baskerville', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    /* Unified image overlay — subtle cool wash, keeps images readable */
    --img-overlay: rgba(11, 28, 54, 0.18);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--c3);
    color: var(--c4);
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-thumb {
    background: var(--c1);
    border-radius: 2px
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none
}

/* ── PROGRESS ── */
#pbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--c2);
    z-index: 9999;
    width: 0;
    transition: width .1s
}

/* ── COOKIE ── */
#ckbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4000;
    background: var(--c4);
    padding: 1rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform .5s;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

#ckbar.show {
    transform: translateY(0)
}

#ckbar p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.6;
    max-width: 640px
}

#ckbar a {
    color: var(--c6);
    text-decoration: underline;
    cursor: pointer
}

.ck-bs {
    display: flex;
    gap: .6rem;
    flex-shrink: 0
}

.ck-a,
.ck-r {
    padding: .44rem 1.1rem;
    border-radius: 7px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--sans);
    transition: all .2s
}

.ck-a {
    background: var(--c1);
    color: #fff
}

.ck-a:hover {
    background: var(--c2)
}

.ck-r {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .65);
    border: 1px solid rgba(255, 255, 255, .15)
}

.ck-r:hover {
    background: rgba(255, 255, 255, .15)
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s
}

nav.scrolled {
    background: rgba(11, 28, 54, .96);
    backdrop-filter: blur(18px);
    padding: .78rem 5vw;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.brand-name {
    font-family: var(--serif);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none
}

.nav-links a {
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: color .2s;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c6);
    transition: width .3s
}

.nav-links a:hover {
    color: #fff
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    background: var(--c1);
    color: #fff !important;
    padding: .48rem 1.3rem;
    border-radius: 50px;
    transition: background .2s !important
}

.nav-cta:hover {
    background: var(--c2) !important
}

.nav-cta::after {
    display: none !important
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s
}

.mob-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--c4);
    flex-direction: column;
    padding: 5.5rem 2rem 3rem;
    gap: 1.8rem
}

.mob-nav.open {
    display: flex
}

.mob-nav a {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, .75);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 1.1rem;
    transition: color .2s
}

.mob-nav a:hover {
    color: #fff
}

.mob-close {
    position: absolute;
    top: 1.4rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, .08);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem
}

/* ══════════════════════════════════════
   HERO CAROUSEL — fixed responsiveness
══════════════════════════════════════ */
.hero {
    position: relative;
    /* Use 100svh on modern browsers, fallback to 100vh */
    height: 100svh;
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
    /* Ensure the hero takes exact viewport width */
    width: 100%;
}

/* Track: one flex row, each slide = exactly the viewport width */
.slides-track {
    display: flex;
    height: 100%;
    /* Use 100vw per slide so it never overflows */
    width: 400%;
    /* 4 slides × 100% */
    will-change: transform;
    transition: transform .72s cubic-bezier(0.4, 0, 0.2, 1);
    /* smoother than .77,0,.175,1 */
}

.slide {
    /* Each slide = exactly 1/4 of the 400%-wide track = 100vw */
    width: 25%;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    /* Prevent any overflow leakage */
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 7s ease;
    /* Prevent bg from bleeding into neighbour slides */
    width: 100%;
    height: 100%;
}

.slide.active .slide-bg {
    transform: scale(1)
}

.ov-assoc {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(11, 28, 54, .9) 0%, rgba(11, 28, 54, .55) 55%, rgba(11, 28, 54, .1) 100%)
}

.ov-event {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11, 28, 54, .96) 0%, rgba(11, 28, 54, .9) 42%, rgba(11, 28, 54, .38) 68%, rgba(11, 28, 54, .04) 100%)
}

.slide-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 5%;
    padding: 0 5vw;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease .18s, transform .65s ease .18s;
}

.slide.active .slide-wrap {
    opacity: 1;
    transform: translateY(0)
}

.slide-single {
    max-width: 600px
}

.slide-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%
}

.slide-right {
    display: flex;
    justify-content: center
}

/* ── FLYER: larger ── */
.flyer-card {
    width: 280px;
    /* was 220px */
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
}

.flyer-inner {
    position: relative;
    height: 380px;
    /* was 320px */
    overflow: hidden;
}

.flyer-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder (when no image) */
.flyer-ph {
    aspect-ratio: 3/4;
    background: linear-gradient(155deg, rgba(73, 102, 139, .3), rgba(41, 59, 89, .5));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    padding: 1.5rem;
    text-align: center;
}

.flyer-ph svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: rgba(255, 255, 255, .4);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.flyer-ph p {
    font-size: .73rem;
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    line-height: 1.6
}

.flyer-footer {
    padding: .8rem 1rem;
    background: rgba(11, 28, 54, .5);
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center
}

.flyer-footer span {
    font-size: .68rem;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .09em
}

/* Slide text atoms */
.slide-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50px;
    padding: .34rem .9rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .82);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.4rem
}

.kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c6);
    flex-shrink: 0
}

.kicker-dot.live {
    background: #5fc46a;
    box-shadow: 0 0 0 3px rgba(95, 196, 106, .22);
    animation: dpulse 2s infinite
}

@keyframes dpulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(95, 196, 106, .22)
    }

    50% {
        box-shadow: 0 0 0 5px rgba(95, 196, 106, .06)
    }
}

.date-pill {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    background: rgba(73, 102, 139, .28);
    border: 1px solid rgba(162, 183, 206, .22);
    border-radius: 11px;
    padding: .65rem 1.15rem;
    margin-bottom: 1.4rem
}

.date-big {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.date-sub .date-m {
    font-size: .76rem;
    color: var(--c6);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600
}

.date-sub .date-y {
    font-size: .67rem;
    color: rgba(255, 255, 255, .35);
    margin-top: .1rem
}

.slide-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 1rem
}

.slide-title em {
    font-style: italic;
    color: var(--c6)
}

.slide-desc {
    font-size: .94rem;
    color: rgba(255, 255, 255, .64);
    line-height: 1.82;
    max-width: 480px;
    margin-bottom: 1.8rem;
    font-weight: 300
}

.slide-btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.btn-white {
    background: #fff;
    color: var(--c4);
    padding: .78rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .03em;
    transition: all .2s;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .18)
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 26px rgba(0, 0, 0, .27)
}

.btn-ghost {
    color: rgba(255, 255, 255, .78);
    border: 1.5px solid rgba(255, 255, 255, .28);
    padding: .78rem 1.9rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    transition: all .2s
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .6);
    color: #fff
}

.btn-gf {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--c2);
    color: #fff;
    padding: .78rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .03em;
    box-shadow: 0 5px 18px rgba(73, 102, 139, .45);
    transition: all .2s
}

.btn-gf:hover {
    background: var(--c1);
    transform: translateY(-2px);
    box-shadow: 0 9px 26px rgba(73, 102, 139, .55)
}

.btn-gf svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

/* Carousel controls */
.hero-bottom {
    position: absolute;
    bottom: 2rem;
    left: 5vw;
    right: 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10
}

.dots {
    display: flex;
    gap: .5rem;
    align-items: center
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all .3s
}

.dot.active {
    width: 22px;
    border-radius: 4px;
    background: var(--c2)
}

.arrows {
    display: flex;
    gap: .6rem
}

.arr {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all .2s
}

.arr:hover {
    background: rgba(255, 255, 255, .2)
}

.arr svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.side-bars {
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.side-bar {
    width: 3px;
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
    background: rgba(255, 255, 255, .18);
    height: 28px;
    transition: height .3s
}

.side-bar.active {
    height: 46px
}

.side-bar-fill {
    width: 100%;
    height: 0;
    background: var(--c2);
    border-radius: 2px
}

.hero-pbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, .1);
    z-index: 10;
    overflow: hidden
}

.hero-pbar-inner {
    height: 100%;
    width: 0;
    background: var(--c2)
}

/* ══════════════════════════════════════
   UNIFIED IMAGE OVERLAY
   Applied to every image container
   OUTSIDE the hero. Gives calm, low-
   contrast look while keeping images
   visible.
══════════════════════════════════════ */
.img-wrap {
    position: relative;
    overflow: hidden
}

.img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--img-overlay);
    pointer-events: none;
    z-index: 1;
}

/* Also apply overlay to inline image wrappers */
.ab-main,
.ab-sm,
.acard-img,
.gp,
.c-img,
.tm-photo {
    position: relative;
    overflow: hidden;
}

.ab-main::after,
.ab-sm::after,
.acard-img::after,
.gp::after,
.c-img::after,
.tm-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--img-overlay);
    pointer-events: none;
    z-index: 1;
}

/* Existing overlay elements stay on top of the photo overlay */
.acard-img-ov,
.gp-ov,
.gp-cap,
.tm-fade {
    z-index: 2
}

/* ── SECTIONS ── */
section {
    padding: 6rem 5vw
}

.wrap {
    max-width: 1260px;
    margin: 0 auto
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c1);
    font-weight: 600;
    margin-bottom: .75rem
}

.tag::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--c1)
}

h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--c4);
    letter-spacing: -.015em
}

h2 .hi {
    color: var(--c1)
}

.lead {
    font-size: .93rem;
    color: var(--c7);
    line-height: 1.88;
    max-width: 520px;
    margin-top: .75rem;
    font-weight: 300
}

.rv {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s ease, transform .75s ease
}

.rv.in {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .32s
}

.d4 {
    transition-delay: .44s
}

/* ── ABOUT ── */
.about-sec {
    background: #fff;
    position: relative;
    overflow: hidden
}

.about-sec::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    background: linear-gradient(135deg, var(--c3), #e1ecf5);
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1
}

.about-p {
    font-size: .94rem;
    color: #4a5470;
    line-height: 1.9;
    margin: 1.2rem 0 1.7rem;
    font-weight: 300
}

.about-p strong {
    font-weight: 600;
    color: var(--c4)
}

.about-items {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.ai {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 1rem;
    align-items: start;
    padding: .88rem 1.1rem;
    border-radius: 11px;
    background: var(--c3);
    border-left: 2.5px solid var(--c1);
    transition: background .2s, transform .2s;
    cursor: default
}

.ai:hover {
    background: #e1ecf5;
    transform: translateX(4px)
}

.ai-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--c5), var(--c1));
    display: flex;
    align-items: center;
    justify-content: center
}

.ai-ico svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ai-t {
    font-size: .86rem;
    font-weight: 600;
    color: var(--c4)
}

.ai-s {
    font-size: .76rem;
    color: var(--c7);
    font-weight: 300;
    margin-top: .17rem;
    line-height: 1.5
}

.about-vis {
    position: relative
}

.ab-main {
    border-radius: 16px;
    overflow: hidden;
    height: 270px;
    box-shadow: 0 8px 28px rgba(11, 28, 54, .12)
}

.ab-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ab-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin-top: .85rem;
    height: 155px
}

.ab-sm {
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(11, 28, 54, .08)
}

.ab-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ab-quote {
    position: absolute;
    bottom: -10px;
    left: -14px;
    z-index: 2;
    background: var(--c4);
    border-radius: 13px;
    padding: 1.1rem 1.4rem;
    max-width: 218px;
    box-shadow: 0 18px 55px rgba(11, 28, 54, .32)
}

.ab-qt {
    font-family: var(--serif);
    font-size: .95rem;
    font-style: italic;
    color: #fff;
    line-height: 1.55
}

.ab-qt span {
    color: var(--c6)
}

.ab-by {
    font-size: .65rem;
    color: rgba(255, 255, 255, .36);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .55rem
}

/* ── ACTIONS ── */
.actions-sec {
    background: var(--c3)
}

.ac-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
    gap: 1.5rem
}

.ac-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem
}

.acard {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: default
}

.acard:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(11, 28, 54, .1)
}

.acard-img {
    height: 185px;
    overflow: hidden;
    position: relative
}

.acard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s
}

.acard:hover .acard-img img {
    transform: scale(1.06)
}

.acard-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 28, 54, .22), transparent);
    z-index: 2
}

.acard-bar {
    height: 3px;
    flex-shrink: 0
}

.b1 {
    background: linear-gradient(90deg, var(--c1), var(--c2))
}

.b2 {
    background: linear-gradient(90deg, #2e7d63, #48b892)
}

.b3 {
    background: linear-gradient(90deg, #5a4a8a, #9580c8)
}

.b4 {
    background: linear-gradient(90deg, #a05a28, #d4844a)
}

.acard-body {
    padding: 1.55rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.acard-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .95rem
}

.acard-ico svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.i1 {
    background: linear-gradient(135deg, #dce9f7, #bbd1ed)
}

.i1 svg {
    stroke: var(--c1)
}

.i2 {
    background: linear-gradient(135deg, #d0f0e4, #a7e2cc)
}

.i2 svg {
    stroke: #2e7d63
}

.i3 {
    background: linear-gradient(135deg, #e5dff5, #cdc3ea)
}

.i3 svg {
    stroke: #5a4a8a
}

.i4 {
    background: linear-gradient(135deg, #fbe5d2, #f4c9a4)
}

.i4 svg {
    stroke: #a05a28
}

.acard-title {
    font-family: var(--serif);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--c4);
    margin-bottom: .48rem
}

.acard-desc {
    font-size: .83rem;
    color: var(--c7);
    line-height: 1.75;
    font-weight: 300;
    flex: 1
}

.acard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .36rem;
    margin-top: .85rem
}

.acard-tag {
    font-size: .67rem;
    padding: .22rem .68rem;
    border-radius: 20px;
    background: var(--c3);
    color: var(--c5);
    font-weight: 500;
    border: 1px solid var(--c8)
}

.acard-n {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(11, 28, 54, .04);
    line-height: 1;
    pointer-events: none
}

/* ── AGENDA ── */
.agenda-sec {
    background: var(--c4);
    position: relative;
    overflow: hidden
}

.agenda-sec::before {
    content: '2026';
    position: absolute;
    top: -3rem;
    right: -1rem;
    font-family: var(--serif);
    font-size: 18rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .025);
    line-height: 1;
    pointer-events: none;
    user-select: none
}

.agenda-sec h2 {
    color: #fff
}

.agenda-sec .tag {
    color: var(--c6)
}

.agenda-sec .tag::before {
    background: var(--c6)
}

.agenda-sec .lead {
    color: rgba(255, 255, 255, .45)
}

.sem-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.6rem;
    flex-wrap: wrap;
    gap: 1.5rem
}

.sem-tabs {
    display: flex;
    gap: .4rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    padding: .3rem;
    border-radius: 50px
}

.sem-tab {
    padding: .38rem 1.15rem;
    border-radius: 50px;
    font-size: .76rem;
    font-weight: 500;
    cursor: pointer;
    color: rgba(255, 255, 255, .45);
    transition: all .25s;
    border: none;
    background: none;
    font-family: var(--sans)
}

.sem-tab.on {
    background: var(--c1);
    color: #fff;
    box-shadow: 0 3px 12px rgba(73, 102, 139, .4)
}

.sem-pane {
    display: none
}

.sem-pane.on {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem
}

.ev {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 13px;
    padding: 1.15rem;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    cursor: default
}

.ev:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(162, 183, 206, .2);
    transform: translateY(-3px)
}

.ev::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5px;
    height: 0;
    background: var(--c2);
    transition: height .3s
}

.ev:hover::before {
    height: 100%
}

.ev-dt {
    min-width: 48px;
    text-align: center
}

.ev-day {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.ev-mon {
    font-size: .62rem;
    color: var(--c6);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    margin-top: .14rem
}

.ev-vr {
    width: 1px;
    background: rgba(255, 255, 255, .1);
    flex-shrink: 0
}

.ev-t {
    font-size: .86rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .18rem;
    line-height: 1.4
}

.ev-w {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    margin-bottom: .32rem
}

.ev-b {
    display: inline-block;
    font-size: .61rem;
    padding: .14rem .5rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase
}

.bh {
    background: rgba(80, 160, 120, .18);
    color: #68dba8;
    border: 1px solid rgba(80, 160, 120, .25)
}

.bp {
    background: rgba(73, 102, 139, .22);
    color: var(--c6);
    border: 1px solid rgba(73, 102, 139, .3)
}

.ba {
    background: rgba(120, 90, 180, .2);
    color: #c8aaf0;
    border: 1px solid rgba(120, 90, 180, .28)
}

.be {
    background: rgba(196, 162, 90, .2);
    color: #e8d070;
    border: 1px solid rgba(196, 162, 90, .28)
}

.bv {
    background: rgba(80, 160, 80, .18);
    color: #88d470;
    border: 1px solid rgba(80, 160, 80, .25)
}

/* ══════════════════════════════════════
   TEAM — No photos. Editorial cards.
   Each card has:
   - abstract geometric gradient bg
   - large serif initial
   - name + role
   - decorative SVG motif
══════════════════════════════════════ */
.team-sec {
    background: var(--c3)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2.5rem
}

.tmcard {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--c8);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    cursor: default;
    display: flex;
    flex-direction: column;
}

.tmcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(11, 28, 54, .12);
    border-color: var(--c6);
}

/* Coloured top panel — different gradient per card */
.tm-panel {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tm-panel-1 {
    background: linear-gradient(135deg, var(--c5) 0%, var(--c1) 60%, var(--c2) 100%)
}

.tm-panel-2 {
    background: linear-gradient(135deg, #1e4d3c 0%, #2e7d63 60%, #48b892 100%)
}

.tm-panel-3 {
    background: linear-gradient(135deg, #3a2860 0%, #5a4a8a 60%, #9580c8 100%)
}

/* Decorative circles in the background of each panel */
.tm-panel::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, .07);
    top: -60px;
    right: -60px;
}

.tm-panel::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 28px solid rgba(255, 255, 255, .05);
    bottom: -40px;
    left: -30px;
}

/* Large initial letter */
.tm-initial {
    font-family: var(--serif);
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    line-height: 1;
    position: relative;
    z-index: 1;
    /* Subtle text shadow for depth */
    text-shadow: 0 4px 24px rgba(0, 0, 0, .25);
    letter-spacing: -.02em;
}

/* Decorative SVG motif (top-left corner) */
.tm-motif {
    position: absolute;
    bottom: 14px;
    right: 16px;
    opacity: .18;
    z-index: 1;
}

.tm-motif svg {
    width: 52px;
    height: 52px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Bottom content */
.tm-body {
    padding: 1.6rem 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
}

.tm-role-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--c3);
    border: 1px solid var(--c8);
    border-radius: 50px;
    padding: .28rem .85rem;
    font-size: .68rem;
    font-weight: 600;
    color: var(--c1);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .4rem;
}

.tm-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c4);
    line-height: 1.25;
}

.tm-desc {
    font-size: .78rem;
    color: var(--c7);
    font-weight: 300;
    line-height: 1.55;
    margin-top: .2rem;
}

/* Hover accent line */
.tm-line {
    height: 2px;
    width: 0;
    border-radius: 2px;
    margin-top: 1rem;
    transition: width .4s ease
}

.tmcard:hover .tm-line {
    width: 40px
}

/* ── GALLERY ── */
.gallery-sec {
    background: var(--c3)
}

.gal-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
    gap: 1.5rem
}

.gal-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    grid-template-rows: 240px 210px;
    gap: .85rem;
    border-radius: 16px;
    overflow: hidden
}

.gp {
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.gp:first-child {
    grid-row: 1/3
}

.gp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s, filter .4s
}

.gp:hover img {
    transform: scale(1.07);
    filter: brightness(.8)
}

.gp-ov {
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 54, .3);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3
}

.gp:hover .gp-ov {
    opacity: 1
}

.gp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center
}

.gp-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round
}

.gp-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .8rem 1rem;
    background: linear-gradient(to top, rgba(11, 28, 54, .6), transparent);
    transform: translateY(6px);
    opacity: 0;
    transition: all .3s;
    z-index: 2
}

.gp:hover .gp-cap {
    opacity: 1;
    transform: translateY(0)
}

.gp-cap span {
    font-size: .71rem;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em
}

/* ── CTA BAR ── */
.cta-bar {
    background: var(--c1);
    padding: 2rem 5vw
}

.cta-bar-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap
}

.cta-bar-text {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff
}

.cta-bar-btn {
    background: #fff;
    color: var(--c4);
    padding: .72rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .86rem;
    transition: all .2s;
    white-space: nowrap
}

.cta-bar-btn:hover {
    background: var(--c3);
    transform: translateY(-1px)
}

/* ── CONTACT ── */
.contact-sec {
    background: #fff
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 4rem;
    margin-top: 2.6rem;
    align-items: start
}

.c-intro {
    font-size: .92rem;
    color: #4a5470;
    line-height: 1.88;
    font-weight: 300;
    margin-bottom: 1.8rem
}

.c-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .95rem 1.1rem;
    background: var(--c3);
    border-radius: 12px;
    border: 1px solid var(--c8);
    margin-bottom: .8rem;
    transition: transform .2s
}

.c-card:hover {
    transform: translateX(4px)
}

.c-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--c5), var(--c1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.c-ico svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.c-label {
    font-size: .68rem;
    color: var(--c7);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: .15rem
}

.c-val {
    font-size: .88rem;
    font-weight: 500;
    color: var(--c4)
}

.c-val a {
    color: var(--c4);
    transition: color .2s
}

.c-val a:hover {
    color: var(--c1)
}

.c-img {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1rem;
    height: 145px;
    border: 1px solid var(--c8);
    position: relative
}

.c-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

/* overlay already applied via .c-img::after */
.c-form {
    background: var(--c3);
    border-radius: 18px;
    padding: 2.2rem;
    border: 1px solid var(--c8)
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin-bottom: .8rem
}

.fg {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: .75rem
}

.fl {
    font-size: .68rem;
    font-weight: 600;
    color: var(--c4);
    letter-spacing: .07em;
    text-transform: uppercase
}

.fi,
.fta,
.fsel {
    border: 1.5px solid var(--c8);
    border-radius: 10px;
    padding: .72rem .92rem;
    font-family: var(--sans);
    font-size: .87rem;
    color: var(--c4);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s
}

.fi:focus,
.fta:focus,
.fsel:focus {
    border-color: var(--c1);
    box-shadow: 0 0 0 3px rgba(73, 102, 139, .11);
    background: #fff
}

.fta {
    resize: vertical;
    min-height: 100px
}

.fsel {
    appearance: none;
    cursor: pointer
}

.fcheck {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: .85rem
}

.fcheck input {
    margin-top: 3px;
    accent-color: var(--c1);
    flex-shrink: 0;
    cursor: pointer
}

.fcheck label {
    font-size: .72rem;
    color: var(--c7);
    line-height: 1.55;
    cursor: pointer
}

.fcheck a {
    color: var(--c1);
    cursor: pointer
}

.fsub {
    width: 100%;
    background: linear-gradient(135deg, var(--c5), var(--c1));
    color: #fff;
    border: none;
    padding: .88rem;
    border-radius: 11px;
    font-family: var(--sans);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .04em;
    transition: transform .2s, box-shadow .2s
}

.fsub:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(73, 102, 139, .33)
}

.fnote {
    font-size: .68rem;
    color: var(--c7);
    text-align: center;
    margin-top: .6rem;
    line-height: 1.5
}

.fnote a {
    color: var(--c1);
    cursor: pointer
}

/* ── FOOTER ── */
footer {
    background: var(--c4);
    padding: 4rem 5vw 1.8rem;
    color: rgba(255, 255, 255, .43)
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .85rem
}

.ft-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--c1);
    display: flex;
    align-items: center;
    justify-content: center
}

.ft-logo-mark svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round
}

.ft-name {
    font-family: var(--serif);
    color: #fff;
    font-size: 1.12rem;
    font-weight: 700
}

.ft-assoc {
    display: inline-flex;
    background: rgba(73, 102, 139, .2);
    border: 1px solid rgba(73, 102, 139, .32);
    border-radius: 5px;
    padding: .18rem .52rem;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--c6);
    margin-bottom: .85rem
}

.ft-tagline {
    font-size: .81rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.75;
    max-width: 260px;
    margin-bottom: 1.4rem
}

.ft-soc {
    display: flex;
    gap: .5rem
}

.soc-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .45);
    transition: all .2s
}

.soc-btn svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.soc-btn:hover {
    background: var(--c1);
    border-color: var(--c1);
    color: #fff;
    transform: translateY(-2px)
}

.ft-col-t {
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem
}

.ft-links {
    list-style: none
}

.ft-links li {
    margin-bottom: .45rem
}

.ft-links a {
    color: rgba(255, 255, 255, .38);
    font-size: .81rem;
    transition: color .2s;
    cursor: pointer
}

.ft-links a:hover {
    color: var(--c6)
}

.ft-hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 1.5rem
}

.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .9rem
}

.ft-bottom p {
    font-size: .72rem
}

.ft-ll {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap
}

.ft-ll a {
    color: var(--c6);
    font-size: .72rem;
    cursor: pointer
}

.ft-ll a:hover {
    text-decoration: underline
}

/* ── MODALS ── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(6px);
    overflow-y: auto;
    padding: 2rem
}

.modal.open {
    display: flex;
    align-items: flex-start;
    justify-content: center
}

.mbox {
    background: #fff;
    border-radius: 18px;
    padding: 2.5rem;
    max-width: 740px;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    box-shadow: 0 28px 72px rgba(0, 0, 0, .22)
}

.mclose {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--c3);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--c4);
    font-size: .9rem;
    transition: background .2s
}

.mclose:hover {
    background: var(--c8)
}

.mbox h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--c4)
}

.mbox h3 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--c4);
    margin: 1.3rem 0 .52rem
}

.mbox p,
.mbox li {
    font-size: .83rem;
    color: #4a5470;
    line-height: 1.85;
    margin-bottom: .52rem
}

.mbox ul {
    padding-left: 1.3rem
}

.mmeta {
    font-size: .72rem;
    color: var(--c7);
    font-style: italic;
    margin-bottom: 1.1rem
}

.mtag {
    display: inline-flex;
    background: var(--c3);
    border: 1px solid var(--c8);
    border-radius: 5px;
    padding: .18rem .55rem;
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--c1);
    margin-bottom: 1rem
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:960px) {

    nav,
    section,
    footer {
        padding-left: 4vw;
        padding-right: 4vw
    }

    nav.scrolled {
        padding-left: 4vw;
        padding-right: 4vw
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .about-sec::before {
        display: none
    }

    .ac-grid,
    .ft-grid {
        grid-template-columns: 1fr 1fr
    }

    .team-grid {
        grid-template-columns: 1fr 1fr
    }

    .sem-pane.on {
        grid-template-columns: 1fr
    }

    /* Event slides: hide flyer on tablet, show text full width */
    .slide-two {
        grid-template-columns: 1fr
    }

    .slide-right {
        display: none
    }

    .gal-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px
    }

    .gp:first-child {
        grid-row: 1/3;
        grid-column: 1/3
    }
}

@media(max-width:640px) {
    nav {
        padding: 1rem 5vw
    }

    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    section,
    footer {
        padding: 4rem 5vw
    }

    .ac-grid,
    .team-grid,
    .ft-grid,
    .ft-ll {
        grid-template-columns: 1fr
    }

    .frow {
        grid-template-columns: 1fr
    }

    .gal-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }

    .gp:first-child {
        grid-row: auto;
        grid-column: auto
    }

    .ft-bottom {
        flex-direction: column;
        text-align: center
    }

    .side-bars {
        display: none
    }

    .cta-bar-inner {
        flex-direction: column;
        gap: 1rem
    }

    /* Hero: ensure full coverage */
    .slide-wrap {
        padding: 0 4vw
    }

    .slide-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem)
    }

    .slide-desc {
        font-size: .88rem
    }

    .btn-white,
    .btn-ghost,
    .btn-gf {
        padding: .7rem 1.4rem;
        font-size: .82rem
    }
}

@media(max-width:480px) {
    .brand-mark {
        width: 32px;
        height: 32px
    }

    .brand-name {
        font-size: 1rem
    }

    .hero-bottom {
        bottom: 1.4rem
    }
}









/* ══════════════════════════════════════
   À AJOUTER À LA FIN DE assets/css/app.css
   Slide 1 — Image stack (colonne droite)
══════════════════════════════════════ */

.s1-stack {
    position: relative;
    width: 380px;
    height: 460px;
    flex-shrink: 0;
}

/* Grande image principale */
.s1-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.12);
}
.s1-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Petite image superposée bas-gauche */
.s1-thumb {
    position:absolute;bottom:-24px;left:-24px;
    width:180px;height:140px;
    border-radius:16px;overflow:hidden;
    border:4px solid var(--navy);
    box-shadow:0 12px 30px rgba(0,0,0,.4);
    animation:float 6s ease-in-out infinite;
}
.s1-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badge "150+ Jeunes accompagnés" — verre dépoli */
.s1-badge {
    position: absolute;
    top: -10px;
    right: -14px;
    z-index: 3;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 16px;
    padding: .9rem 1.35rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    min-width: 130px;
}
.s1-badge-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em;
}
.s1-badge-num span {
    font-size: 1.4rem;
    color: var(--c6);
}
.s1-badge-label {
    font-size: .6rem;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 600;
    margin-top: .35rem;
}

@media(max-width:960px) {
    .s1-stack { display: none; }
}

@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-18px)}}