@font-face {
    font-family: "DK Bocadillo";
    src: url("../fonts/DKBocadillo-Regular.woff2")format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Apercu Pro";
    src: url("../fonts/ApercuPro-Regular.woff2")format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Apercu Pro";
    src: url("../fonts/ApercuPro-Medium.woff2")format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Apercu Pro";
    src: url("../fonts/ApercuPro-Bold.woff2")format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    --color-bleu: #233060;
    --color-bleu-texte: #001e41;
    --color-white: #ffffff;
    --color-paper: #ffffff;
    --color-yellow-cream: #fff3d6;
    --color-yellow-chips: #f4c542;
    --color-bleu-hover: #1a2450;
    --color-shadow-card: 0 3px 12px rgba(0, 0, 0, 0.14);
    --color-shadow-pack: 0 2px 4px rgba(0, 0, 0, 0.25);
    --font-display: "DK Bocadillo", "Caveat Brush", cursive;
    --font-body: "Apercu Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
    --fs-h1: 2.5rem;
    --fs-h2: 2.0625rem;
    --fs-h3: 1.5625rem;
    --fs-body: 1rem;
    --fs-body-sm: 0.875rem;
    --lh-display: 1.3;
    --lh-body: 1.6;
    --lh-body-sm: 1.43;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --container-max: 1050px;
    --container-padding: clamp(1.25rem, 5vw, 158px);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --z-header: 100;
    --z-drawer: 200
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--color-bleu-texte);
    background: #e8e7e2
}

.site {
    margin-inline: auto;
    background: var(--color-paper);
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.04);
    overflow: hidden
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: var(--lh-display);
    color: var(--color-bleu)
}

h1 {
    font-size: var(--fs-h1)
}

h2 {
    font-size: var(--fs-h2)
}

h3 {
    font-size: var(--fs-h3)
}

strong,
b {
    font-weight: 700
}

.container {
    width: 100%;
    max-width: calc(var(--container-max)+2 * var(--container-padding));
    margin-inline: auto;
    padding-inline: var(--container-padding)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.125rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--fs-body-sm);
    line-height: 1.5;
    color: var(--color-white);
    background: var(--color-bleu);
    border-radius: var(--radius-sm);
    transition: background var(--transition-base), transform var(--transition-base)
}

.btn:hover {
    background: var(--color-bleu-hover)
}

.btn:active {
    transform: translateY(1px)
}

.nav-link {
    font-weight: 700;
    font-size: var(--fs-body-sm);
    color: var(--color-bleu);
    transition: opacity var(--transition-base)
}

.nav-link:hover {
    opacity: 0.7
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 800ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.reveal.reveal-delay-1 {
    transition-delay: 100ms
}

.reveal.reveal-delay-2 {
    transition-delay: 200ms
}

.reveal.reveal-delay-3 {
    transition-delay: 300ms
}

.reveal.reveal-delay-4 {
    transition-delay: 400ms
}

@media(prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}