:root {
    --jade-bg: #ffffff;

    --jade-surface: #f8f5f1;
    --jade-surface-2: #f1eae3;
    --jade-surface-3: #e5d6c7;

    --jade-text: #302923;
    --jade-muted: #70665f;

    --jade-accent: #a77d58;
    --jade-accent-dark: #755338;
    --jade-accent-soft: #d8c0a9;

    --jade-dark: #1c1816;
    --jade-dark-soft: #28211d;

    --jade-border: #dfd5cb;
    --jade-border-soft: #ede6df;

    --jade-white: #ffffff;

    --jade-container: 1280px;

    --jade-radius-sm: 8px;
    --jade-radius-md: 15px;
    --jade-radius-lg: 24px;
    --jade-radius-xl: 32px;

    --jade-shadow-sm:
        0 7px 20px rgba(35, 26, 21, .07);

    --jade-shadow-md:
        0 18px 44px rgba(35, 26, 21, .11);

    --jade-shadow-lg:
        0 30px 80px rgba(35, 26, 21, .16);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--jade-bg);
    color: var(--jade-text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3,
h4 {
    color: var(--jade-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 400;
    line-height: 1.08;
}

p {
    margin-top: 0;
}

.jade-shell {
    width: min(
        calc(100% - 48px),
        var(--jade-container)
    );

    margin-inline: auto;
}

.jade-section {
    padding: 105px 0;
}

.screen-reader-text,
.jade-skip-link {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
}

.jade-skip-link:focus {
    position: fixed;

    top: 12px;
    left: 12px;

    z-index: 999999;

    width: auto;
    height: auto;

    padding: 10px 16px;

    clip: auto;

    border-radius: var(--jade-radius-sm);

    background: var(--jade-dark);
    color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--jade-accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

@media (max-width: 767px) {

    .jade-shell {
        width: calc(100% - 30px);
    }

    .jade-section {
        padding: 72px 0;
    }
}

/* ==========================================================
   ACCESSIBILITE - CIBLE GLOBALE DU SKIP LINK
========================================================== */

.jade-content-start {
    position: relative;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    outline: none;
}

.jade-content-start:focus {
    outline: none;
}

