/* ===================================================================
 * NEF PRO - Main Stylesheet
 * ------------------------------------------------------------------
 *
 * TOC:
 * # settings and variables
 *      ## fonts
 *      ## colors
 *      ## vertical spacing and typescale
 *      ## grid variables
 * # normalize
 * # basic/base setup styles
 *      ## media
 *      ## typography resets
 *      ## links
 *      ## inputs
 * # Grid v3.0.0
 *      ## medium screen devices
 *      ## tablets
 *      ## mobile devices
 *      ## small mobile devices <= 400px
 * # block grids
 *      ## block grids - medium screen devices
 *      ## block grids - tablets
 *      ## block grids - mobile devices
 *      ## block grids - small mobile devices <= 400px
 * # MISC
 * # custom grid, block grid STACK breakpoints
 * # base style overrides
 *      ## links
 *      ## focus
 * # typography & general theme styles
 *      ## lists
 *      ## responsive video container
 *      ## floated image
 *      ## tables
 *      ## spacing
 * # forms
 *      ## style placeholder text
 *      ## change autocomplete styles in Chrome
 *      ## field states
 * # buttons
 * # common and reusable styles
 *      ## item list
 *      ## cards
 *      ## reveal on scroll
 * # site header
 *      ## header logo
 *      ## main navigation
 *      ## mobile menu toggle
 *      ## header contact button
 * # hero
 *      ## hero content
 *      ## hero scroll
 *      ## animate intro content
 * # pillars
 * # tools marquee (bandeau outils, repris a l'identique)
 * # about / method
 *      ## about process
 * # services
 * # content sections
 *      ## proof
 *      ## calculator
 *      ## offers
 *      ## faq
 *      ## booking
 * # contact
 * # footer
 *      ## footer block
 *      ## footer list
 *      ## copyright
 *      ## go top
 * # legal page
 * # reduced motion
 *
 * ------------------------------------------------------------------ */



/* ===================================================================
 * # settings and variables
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## fonts
 * Montserrat + Nunito Sans are loaded with <link> in the document head
 * (no render-blocking @import chain).
 * ------------------------------------------------------------------- */
:root {
    --font-1: "Nunito Sans", sans-serif;
    --font-2: "Montserrat", sans-serif;

    /* monospace
     */
    --font-mono: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}


/* ------------------------------------------------------------------- 
 * ## colors
 * ------------------------------------------------------------------- */
:root {

    /* color-1(#ab1721) deep red
     * color-2(#eb5e55)
     * color-3(#f2d0a4)
     */
    --color-1: hsla(356, 76%, 38%, 1);
    --color-2: hsla(4, 79%, 63%, 1);
    --color-3: hsla(34, 75%, 80%, 1);

    /* theme color variations
     * light (#ca212c): large text, rules, bullets and icons on dark (3.2:1)
     */
    --color-1-lighter: hsla(356, 70%, 54%, 1);
    --color-1-light  : hsla(356, 72%, 46%, 1);
    --color-1-dark   : hsla(356, 76%, 30%, 1);
    --color-1-darker : hsla(356, 76%, 22%, 1);
    --color-2-lighter: hsla(4, 79%, 83%, 1);
    --color-2-light  : hsla(4, 79%, 73%, 1);
    --color-2-dark   : hsla(4, 79%, 53%, 1);
    --color-2-darker : hsla(4, 79%, 43%, 1);

    /* feedback colors
     * color-error(#ffd1d2), color-success(#c8e675), 
     * color-info(#d7ecfb), color-notice(#fff099)
     */
    --color-error          : hsla(359, 100%, 91%, 1);
    --color-success        : hsla(76, 69%, 68%, 1);
    --color-info           : hsla(205, 82%, 91%, 1);
    --color-notice         : hsla(51, 100%, 80%, 1);
    --color-error-content  : hsla(359, 50%, 50%, 1);
    --color-success-content: hsla(76, 29%, 28%, 1);
    --color-info-content   : hsla(205, 32%, 31%, 1);
    --color-notice-content : hsla(51, 30%, 30%, 1);

    /* shades
     */
    --color-black  : #000000;
    --color-gray-19: #0b0b0c;
    --color-gray-18: #161719;
    --color-gray-17: #202225;
    --color-gray-16: #2b2e32;
    --color-gray-15: #363a3f;
    --color-gray-14: #41454b;
    --color-gray-13: #4c5158;
    --color-gray-12: #565c64;
    --color-gray-11: #616871;
    --color-gray-10: #6c737d;
    --color-gray-9 : #7b818a;
    --color-gray-8 : #898f97;
    --color-gray-7 : #989da4;
    --color-gray-6 : #a7abb1;
    --color-gray-5 : #b6b9be;
    --color-gray-4 : #c4c7cb;
    --color-gray-3 : #d3d5d8;
    --color-gray-2 : #e2e3e5;
    --color-gray-1 : #f0f1f2;
    --color-white  : #ffffff;

    /* text
     * lightened within the same gray scale so body copy passes
     * WCAG AA on --color-bg (gray-7: 6.6:1, gray-8: 5.5:1)
     */
    --color-text       : var(--color-gray-7);
    --color-text-dark  : var(--color-white);
    --color-text-light : var(--color-gray-8);
    --color-placeholder: var(--color-gray-8);

    /* small labels (eyebrows, section labels, kickers): a deep red can't
     * reach 4.5:1 on the dark background at that size, so they are light
     * neutral and carry a short red rule instead (see .eyebrow::before)
     */
    --color-accent-text: var(--color-gray-3);

    /* buttons
     */
    --color-btn                   : var(--color-gray-15);
    --color-btn-text              : var(--color-white);
    --color-btn-hover             : var(--color-white);
    --color-btn-hover-text        : var(--color-black);
    --color-btn-primary           : var(--color-1);
    --color-btn-primary-text      : var(--color-white);
    --color-btn-primary-hover     : var(--color-black);
    --color-btn-primary-hover-text: var(--color-white);
    --color-btn-primary-hover-edge: var(--color-gray-14);
    --color-btn-stroke            : var(--color-white);
    --color-btn-stroke-text       : var(--color-white);
    --color-btn-stroke-hover      : var(--color-white);
    --color-btn-stroke-hover-text : var(--color-black);

    /* others
     */
    --color-body  : var(--color-1);
    --color-bg    : #14171B;
    --color-border: var(--color-gray-17);

    /* motion
     */
    --ease-out     : cubic-bezier(0.215, 0.61, 0.355, 1);
    --duration     : .3s;
    --duration-slow: .6s;
}


/* ------------------------------------------------------------------- 
 * ## vertical spacing and typescale
 * ------------------------------------------------------------------- */
:root {

    /* spacing
     * base font size: 18px 
     * vertical space unit : 32px
     */
    --base-size     : 62.5%;
    --base-font-size: 1.8rem;
    --space         : 3.2rem;

    /* vertical spacing 
     */
    --vspace-0_25: calc(0.25 * var(--space));
    --vspace-0_5 : calc(0.5 * var(--space));
    --vspace-0_75: calc(0.75 * var(--space));
    --vspace-1   : calc(var(--space));
    --vspace-1_25: calc(1.25 * var(--space));
    --vspace-1_5 : calc(1.5 * var(--space));
    --vspace-1_75: calc(1.75 * var(--space));
    --vspace-2   : calc(2 * var(--space));
    --vspace-2_5 : calc(2.5 * var(--space));
    --vspace-3   : calc(3 * var(--space));
    --vspace-3_5 : calc(3.5 * var(--space));
    --vspace-4   : calc(4 * var(--space));

    /* type scale
     * ratio 1:2 | base: 18px
     * -------------------------------------------------------
     *
     * --text-display-3 = (77.40px)
     * --text-display-2 = (64.50px)
     * --text-display-1 = (53.75px)
     * --text-xxxl      = (44.79px)
     * --text-xxl       = (37.32px)
     * --text-xl        = (31.10px)
     * --text-lg        = (25.92px)
     * --text-md        = (21.60px)
     * --text-size      = (18.00px) BASE
     * --text-sm        = (15.00px)
     * --text-xs        = (12.50px)
     *
     * -------------------------------------------------------
     */
    --text-scale-ratio: 1.2;
    --text-size       : var(--base-font-size);
    --text-xs         : calc((var(--text-size) / var(--text-scale-ratio)) / var(--text-scale-ratio));
    --text-sm         : calc(var(--text-xs) * var(--text-scale-ratio));
    --text-md         : calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
    --text-lg         : calc(var(--text-md) * var(--text-scale-ratio));
    --text-xl         : calc(var(--text-lg) * var(--text-scale-ratio));
    --text-xxl        : calc(var(--text-xl) * var(--text-scale-ratio));
    --text-xxxl       : calc(var(--text-xxl) * var(--text-scale-ratio));
    --text-display-1  : calc(var(--text-xxxl) * var(--text-scale-ratio));
    --text-display-2  : calc(var(--text-display-1) * var(--text-scale-ratio));
    --text-display-3  : calc(var(--text-display-2) * var(--text-scale-ratio));

    /* default button height
     */
    --vspace-btn: var(--vspace-2);
}

/* on mobile devices below 480px
 */
@media screen and (max-width: 480px) {
    :root {
        --base-font-size: 1.6rem;
        --space         : 2.8rem;
    }
}


/* ------------------------------------------------------------------- 
 * ## grid variables
 * ------------------------------------------------------------------- */
:root {

    /* widths for rows and containers
     */
    --width-full    : 100%;
    --width-max     : 1200px;
    --width-wide    : 1400px;
    --width-wider   : 1600px;
    --width-widest  : 1800px;
    --width-narrow  : 1000px;
    --width-narrower: 900px;
    --width-grid-max: var(--width-max);

    /* gutters
     */
    --gutter-lg : 2rem;
    --gutter-md : 1.6rem;
    --gutter-mob: 1rem;
}



/* ==========================================================================
 * # normalize
 * normalize.css v8.0.1 | MIT License |
 * github.com/necolas/normalize.css
 *
 * -------------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## document
 * ------------------------------------------------------------------- */

/* 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.*/

html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/* ------------------------------------------------------------------- 
 * ## sections
 * ------------------------------------------------------------------- */

/* Remove the margin in all browsers. */

body {
    margin: 0;
}

/* Render the `main` element consistently in IE. */

main {
    display: block;
}

/* Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari. */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* ------------------------------------------------------------------- 
 * ## grouping
 * ------------------------------------------------------------------- */

/* 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE. */

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/* 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */

pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* ------------------------------------------------------------------- 
 * ## text-level semantics
 * ------------------------------------------------------------------- */

/* Remove the gray background on active links in IE 10. */

a {
    background-color: transparent;
}

/* 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    /* 2 */
}

/* Add the correct font weight in Chrome, Edge, and Safari. */

b, strong {
    font-weight: bolder;
}

/* 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */

code, kbd, samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* Add the correct font size in all browsers. */

small {
    font-size: 80%;
}

/* Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers. */

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* ------------------------------------------------------------------- 
 * ## embedded content
 * ------------------------------------------------------------------- */

/* Remove the border on images inside links in IE 10. */

img {
    border-style: none;
}

/* ------------------------------------------------------------------- 
 * ## forms
 * ------------------------------------------------------------------- */

/* 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari. */

button, input, optgroup, select, textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

/* Show the overflow in IE.
 * 1. Show the overflow in Edge. */

button, input {
    /* 1 */
    overflow: visible;
}

/* Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox. */

button, select {
    /* 1 */
    text-transform: none;
}

/* Correct the inability to style clickable types in iOS and Safari. */

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

/* Remove the inner border and padding in Firefox. */

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/* Restore the focus styles unset by the previous rule. */

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/* Correct the padding in Firefox. */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/* 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers. */

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera. */

progress {
    vertical-align: baseline;
}

/* Remove the default vertical scrollbar in IE 10+. */

textarea {
    overflow: auto;
}

/* 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10. */

[type="checkbox"], [type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/* Correct the cursor style of increment and decrement buttons in Chrome. */

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/* 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari. */

[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

/* Remove the inner padding in Chrome and Safari on macOS. */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/* 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari. */

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/* ------------------------------------------------------------------- 
 * ## interactive
 * ------------------------------------------------------------------- */

/* Add the correct display in Edge, IE 10+, and Firefox. */

details {
    display: block;
}

/* Add the correct display in all browsers. */

summary {
    display: list-item;
}

/* ------------------------------------------------------------------- 
 * ## misc
 * ------------------------------------------------------------------- */

/* Add the correct display in IE 10+. */

template {
    display: none;
}

/* Add the correct display in IE 10. */

[hidden] {
    display: none;
}



/* ===================================================================
 * # basic/base setup styles
 *
 * ------------------------------------------------------------------- */
html {
    font-size: 62.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*, *::before, *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    font-weight: normal;
    line-height: 1;
    word-wrap: break-word;
    -moz-font-smoothing: grayscale;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: none;
}


/* ------------------------------------------------------------------- 
 * ## media
 * ------------------------------------------------------------------- */
svg, img, video embed, iframe, object {
    max-width: 100%;
    height: auto;
}


/* ------------------------------------------------------------------- 
 * ## typography resets
 * ------------------------------------------------------------------- */
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

p {
    font-size: inherit;
    text-rendering: optimizeLegibility;
}

em, i {
    font-style: italic;
    line-height: inherit;
}

strong, b {
    font-weight: bold;
    line-height: inherit;
}

small {
    font-size: 60%;
    line-height: inherit;
}

ol, ul {
    list-style: none;
}

li {
    display: block;
}


/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
    text-decoration: none;
    line-height: inherit;
}

a img {
    border: none;
}


/* ------------------------------------------------------------------- 
 * ## inputs
 * ------------------------------------------------------------------- */
fieldset {
    margin: 0;
    padding: 0;
}

input[type="email"], 
input[type="number"], 
input[type="search"], 
input[type="text"], 
input[type="tel"], 
input[type="url"], 
input[type="password"], 
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}



/* ===================================================================
 * # Grid v3.0.0
 *
 *   -----------------------------------------------------------------
 * - Grid breakpoints are based on MAXIMUM WIDTH media queries, 
 *   meaning they apply to that one breakpoint and ALL THOSE BELOW IT.
 * - Grid columns without a specified width will automatically layout 
 *   as equal width columns.
 * ------------------------------------------------------------------- */

/* rows
 * ------------------------------------- */
.row {
    width: 92%;
    max-width: var(--width-grid-max);
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
}

.row .row {
    width: auto;
    max-width: none;
    margin-left: calc(var(--gutter-lg) * -1);
    margin-right: calc(var(--gutter-lg) * -1);
}

/* columns
 * -------------------------------------- */
.column {
    -ms-flex: 1 1 0%;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    padding: 0 var(--gutter-lg);
}

.collapse>.column, .column.collapse {
    padding: 0;
}

/* flex row containers utility classes
 */
.row.row-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.row-nowrap {
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
}

.row.row-y-top {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
}

.row.row-y-bottom {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
}

.row.row-y-center {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.row.row-stretch {
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
}

.row.row-baseline {
    -ms-flex-align: baseline;
    -webkit-box-align: baseline;
    align-items: baseline;
}

.row.row-x-left {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.row.row-x-right {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.row.row-x-center {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

/* flex item utility alignment classes
 */
.align-center {
    margin: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-left {
    margin-right: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-right {
    margin-left: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-x-center {
    margin-right: auto;
    margin-left: auto;
}

.align-x-left {
    margin-right: auto;
}

.align-x-right {
    margin-left: auto;
}

.align-y-center {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-y-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-y-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

/* large screen column widths 
 */
.large-1 {
    -ms-flex: 0 0 8.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.large-2 {
    -ms-flex: 0 0 16.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.large-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
}

.large-4 {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.large-5 {
    -ms-flex: 0 0 41.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.large-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.large-7 {
    -ms-flex: 0 0 58.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.large-8 {
    -ms-flex: 0 0 66.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.large-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
}

.large-10 {
    -ms-flex: 0 0 83.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.large-11 {
    -ms-flex: 0 0 91.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.large-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}


/* ------------------------------------------------------------------- 
 * ## medium screen devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .row .row {
        margin-left: calc(var(--gutter-md) * -1);
        margin-right: calc(var(--gutter-md) * -1);
    }
    .column {
        padding: 0 var(--gutter-md);
    }
    .medium-1 {
        -ms-flex: 0 0 8.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .medium-2 {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .medium-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .medium-4 {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .medium-5 {
        -ms-flex: 0 0 41.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .medium-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .medium-7 {
        -ms-flex: 0 0 58.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .medium-8 {
        -ms-flex: 0 0 66.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .medium-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .medium-10 {
        -ms-flex: 0 0 83.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .medium-11 {
        -ms-flex: 0 0 91.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .medium-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* ------------------------------------------------------------------- 
 * ## tablets
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .row {
        width: 90%;
    }
    .tab-1 {
        -ms-flex: 0 0 8.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .tab-2 {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .tab-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .tab-4 {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .tab-5 {
        -ms-flex: 0 0 41.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .tab-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .tab-7 {
        -ms-flex: 0 0 58.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .tab-8 {
        -ms-flex: 0 0 66.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .tab-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .tab-10 {
        -ms-flex: 0 0 83.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .tab-11 {
        -ms-flex: 0 0 91.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .tab-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hide-on-tablet {
        display: none;
    }
}


/* ------------------------------------------------------------------- 
 * ## mobile devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .row {
        width: 100%;
        padding-left: 6vw;
        padding-right: 6vw;
    }
    .row .row {
        margin-left: calc(var(--gutter-mob) * -1);
        margin-right: calc(var(--gutter-mob) * -1);
        padding-left: 0;
        padding-right: 0;
    }
    .column {
        padding: 0 var(--gutter-mob);
    }
    .mob-1 {
        -ms-flex: 0 0 8.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .mob-2 {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .mob-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .mob-4 {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .mob-5 {
        -ms-flex: 0 0 41.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .mob-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .mob-7 {
        -ms-flex: 0 0 58.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .mob-8 {
        -ms-flex: 0 0 66.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .mob-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .mob-10 {
        -ms-flex: 0 0 83.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .mob-11 {
        -ms-flex: 0 0 91.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .mob-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hide-on-mobile {
        display: none;
    }
}

/* ------------------------------------------------------------------- 
 * ## small mobile devices <= 400px
 * ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
    .row .row {
        margin-left: 0;
        margin-right: 0;
    }
    .column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
}



/* ===================================================================
 * # block grids
 *
 * -------------------------------------------------------------------
 * Equally-sized columns define at parent/row level.
 * ------------------------------------------------------------------- */
.block-large-1-8>.column {
    -ms-flex: 0 0 12.5%;
    -webkit-box-flex: 0;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.block-large-1-6>.column {
    -ms-flex: 0 0 16.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.block-large-1-5>.column {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
}

.block-large-1-4>.column {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
}

.block-large-1-3>.column {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.block-large-1-2>.column {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.block-large-full>.column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}


/* ------------------------------------------------------------------- 
 * ## block grids - medium screen devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .block-medium-1-8>.column {
        -ms-flex: 0 0 12.5%;
        -webkit-box-flex: 0;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .block-medium-1-6>.column {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .block-medium-1-5>.column {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .block-medium-1-4>.column {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .block-medium-1-3>.column {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .block-medium-1-2>.column {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .block-medium-full>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* ------------------------------------------------------------------- 
 * ## block grids - tablets
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .block-tab-1-8>.column {
        -ms-flex: 0 0 12.5%;
        -webkit-box-flex: 0;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .block-tab-1-6>.column {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .block-tab-1-5>.column {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .block-tab-1-4>.column {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .block-tab-1-3>.column {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .block-tab-1-2>.column {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .block-tab-full>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* ------------------------------------------------------------------- 
 * ## block grids - mobile devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .block-mob-1-8>.column {
        -ms-flex: 0 0 12.5%;
        -webkit-box-flex: 0;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .block-mob-1-6>.column {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .block-mob-1-5>.column {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .block-mob-1-4>.column {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .block-mob-1-3>.column {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .block-mob-1-2>.column {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .block-mob-full>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* ------------------------------------------------------------------- 
 * ## block grids - small mobile devices <= 400px
 * ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
    .stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
}



/* ===================================================================
 * # MISC
 *
 * ------------------------------------------------------------------- */
.h-group:after {
    content: "";
    display: table;
    clear: both;
}

/* misc helper classes
 */
.is-hidden {
    display: none;
}
.is-invisible {
    visibility: hidden;
}
.h-antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.h-overflow-hidden {
    overflow: hidden;
}
.h-remove-top {
    margin-top: 0;
}
.h-remove-bottom {
    margin-bottom: 0;
}
.h-add-half-bottom {
    margin-bottom: var(--vspace-0_5) !important;
}
.h-add-bottom {
    margin-bottom: var(--vspace-1) !important;
}
.h-no-border {
    border: none;
}
.h-full-width {
    width: 100%;
}
.h-text-center {
    text-align: center;
}
.h-text-left {
    text-align: left;
}
.h-text-right {
    text-align: right;
}
.h-pull-left {
    float: left;
}
.h-pull-right {
    float: right;
}



/* ===================================================================
 * # custom grid, block grid STACK breakpoints 
 *
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
    .block-1000-stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 900px) {
    .w-900-stack, .block-900-stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}



/* ===================================================================
 * # base style overrides
 *
 * ------------------------------------------------------------------- */
html {
    font-size: var(--base-size);
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

html, body {
    height: 100%;
}

body {
    background: var(--color-body);
    font-family: var(--font-1);
    font-size: var(--text-size);
    font-style: normal;
    font-weight: normal;
    line-height: var(--vspace-1);
    color: var(--color-text);
    margin: 0;
    padding: 0;
}


/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
    color: var(--color-accent-text);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover, a:focus, a:active {
    color: white;
}

a:hover, a:active {
    outline: 0;
}

/* links inside running text
 */
.text-link {
    color: var(--color-text-dark);
    text-decoration: underline;
    text-decoration-color: var(--color-1);
    text-decoration-thickness: 1px;
    text-underline-offset: .25em;
}

.text-link:hover, .text-link:focus {
    color: var(--color-accent-text);
}


/* -------------------------------------------------------------------
 * ## focus
 * visible keyboard focus everywhere (WCAG 2.4.7)
 * ------------------------------------------------------------------- */
:focus-visible {
    outline: 2px solid var(--color-1-light);
    outline-offset: 3px;
}

.s-contact :focus-visible,
.s-footer :focus-visible {
    outline-color: var(--color-white);
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    z-index: 200;
    position: absolute;
    top: -100px;
    left: 2rem;
    padding: 1.2rem 2rem;
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-2);
    font-weight: 600;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .2em;
}

.skip-link:focus {
    top: 2rem;
    color: var(--color-black);
}



/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */

/* type scale - ratio 1:2 | base: 18px
 * -------------------------------------------------------------------
    --text-display-3 = (77.40px)
    --text-display-2 = (64.50px)
    --text-display-1 = (53.75px)
    --text-xxxl      = (44.79px)
    --text-xxl       = (37.32px)
    --text-xl        = (31.10px)
    --text-lg        = (25.92px)
    --text-md        = (21.60px)
    --text-size      = (18.00px) BASE
    --text-sm        = (15.00px)
    --text-xs        = (12.50px)
 * -------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-2);
    font-weight: 500;
    font-style: normal;
    color: var(--color-text-dark);
    -webkit-font-variant-ligatures: common-ligatures;
    font-variant-ligatures: common-ligatures;
    text-rendering: optimizeLegibility;
}

h1, .h1 {
    margin-top: var(--vspace-2_5);
    margin-bottom: var(--vspace-0_75);
}

h2, .h2, h3, .h3, h4, .h4 {
    margin-top: var(--vspace-2);
    margin-bottom: var(--vspace-0_5);
}

h5, .h5, h6, .h6 {
    margin-top: var(--vspace-1_5);
    margin-bottom: var(--vspace-0_5);
}

h1, .h1 {
    font-size: var(--text-display-1);
    line-height: var(--vspace-2);
    letter-spacing: -.015em;
}

@media screen and (max-width: 400px) {
    h1, .h1 {
        font-size: var(--text-xxxl);
        line-height: var(--vspace-1_75);
    }
}

h2, .h2 {
    font-size: var(--text-xxl);
    line-height: var(--vspace-1_5);
}

h3, .h3 {
    font-size: var(--text-xl);
    line-height: var(--vspace-1_25);
}

h4, .h4 {
    font-size: var(--text-lg);
    line-height: var(--vspace-1);
}

h5, .h5 {
    font-size: var(--text-md);
    line-height: calc(0.875 * var(--space));
}

h6, .h6 {
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: var(--vspace-0_75);
    text-transform: uppercase;
    letter-spacing: .22em;
}

.lead, .attention-getter {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: var(--text-md);
    line-height: calc(1.125 * var(--space));
}

@media screen and (max-width: 400px) {
    .lead, .attention-getter {
        font-size: 1.9rem;
    }
}

figure img, p img {
    margin: 0;
    vertical-align: bottom;
}

em, i, strong, b {
    font-size: inherit;
    line-height: inherit;
}

em, i {
    font-family: var(--font-1);
    font-style: italic;
}

strong, b {
    font-family: var(--font-1);
    font-weight: 600;
}

small {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: calc(0.5 * var(--space));
}

blockquote {
    margin: 0 0 var(--vspace-1) 0;
    padding: var(--vspace-1) var(--vspace-1_5);
    border-left: 4px solid var(--color-text-light);
    position: relative;
}

@media screen and (max-width: 400px) {
    blockquote {
        padding: var(--vspace-0_75) var(--vspace-0_75);
    }
}

blockquote p {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: var(--text-md);
    font-style: normal;
    line-height: calc(1.125 * var(--space));
    color: var(--color-text-dark);
    padding: 0;
}

blockquote cite {
    display: block;
    font-family: var(--font-1);
    font-weight: 400;
    font-size: var(--text-sm);
    line-height: var(--vspace-0_75);
    font-style: normal;
}

blockquote cite:before {
    content: "\2014 \0020";
}

blockquote cite, blockquote cite a, blockquote cite a:visited {
    color: var(--color-text);
    border: none;
}

figure {
    display: block;
    margin-left: 0;
    margin-right: 0;
}

figure img+figcaption {
    margin-top: var(--vspace-1);
}

figcaption {
    font-size: var(--text-sm);
    text-align: center;
    margin-bottom: 0;
}

var, kbd, samp, code, pre {
    font-family: var(--font-mono);
}

pre {
    padding: var(--vspace-0_75) var(--vspace-1) var(--vspace-1);
    background: var(--color-gray-18);
    overflow-x: auto;
}

code {
    font-size: var(--text-sm);
    line-height: 1.6rem;
    margin: 0 .2rem;
    padding: calc(((var(--vspace-1) - 1.6rem) / 2) - .1rem) calc(.8rem - .1rem);
    white-space: nowrap;
    background: var(--color-gray-18);
    border: 1px solid var(--color-gray-17);
    color: var(--color-text-dark);
    border-radius: 3px;
}

pre>code {
    display: block;
    white-space: pre;
    line-height: var(--vspace-1);
    padding: 0;
    margin: 0;
    border: none;
}

.prettyprint code {
    background: var(--color-gray-2);
}

pre.prettyprint>code {
    border: none;
}

del {
    text-decoration: line-through;
}

abbr {
    font-family: var(--font-1);
    font-weight: 600;
    font-variant: small-caps;
    text-transform: lowercase;
    letter-spacing: .1em;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
    text-decoration: none;
}

mark {
    background: var(--color-3);
    color: black;
}

hr {
    border: solid var(--color-border);
    border-width: .1rem 0 0;
    clear: both;
    margin: var(--vspace-2) 0 calc(var(--vspace-2) - .1rem);
    height: 0;
}

hr.fancy {
    border: none;
    margin: var(--vspace-2) 0;
    height: var(--vspace-1);
    text-align: center;
}

hr.fancy::before {
    content: "*****";
    letter-spacing: .3em;
}


/* ------------------------------------------------------------------- 
 * ## lists
 * ------------------------------------------------------------------- */
ol {
    list-style: decimal;
}
ul {
    list-style: disc;
}
li {
    display: list-item;
}
ol, ul {
    margin-left: 1.6rem;
}
ul li {
    padding-left: .4rem;
}
ul ul, ul ol, ol ol, ol ul {
    margin: var(--vspace-0_5) 0 var(--vspace-0_5) var(--vspace-0_5);
}

ul.disc li {
    display: list-item;
    list-style: none;
    padding: 0 0 0 .8rem;
    position: relative;
}

ul.disc li::before {
    content: "";
    display: inline-block;
    width: var(--vspace-0_25);
    height: var(--vspace-0_25);
    border-radius: 50%;
    background: var(--color-1-light);
    position: absolute;
    left: -.9em;
    top: .65em;
    vertical-align: middle;
}

dt {
    margin: 0;
    color: var(--color-1);
}

dd {
    margin: 0 0 0 2rem;
}


/* ------------------------------------------------------------------- 
 * ## responsive video container
 * ------------------------------------------------------------------- */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe, 
.video-container object, 
.video-container embed, 
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ------------------------------------------------------------------- 
 * ## floated image
 * ------------------------------------------------------------------- */
img.h-pull-right {
    margin: var(--vspace-0_5) 0 var(--vspace-0_5) 2.8rem;
}

img.h-pull-left {
    margin: var(--vspace-0_5) 2.8rem var(--vspace-0_5) 0;
}


/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */
table {
    border-width: 0;
    width: 100%;
    max-width: 100%;
    font-family: var(--font-1);
    border-collapse: collapse;
}

th, td {
    padding: var(--vspace-0_5) 3.2rem calc(var(--vspace-0_5) - .1rem);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

th {
    padding: var(--vspace-0_5) 3.2rem;
    color: var(--color-text-dark);
    font-family: var(--font-2);
    font-weight: 600;
}

th:first-child, 
td:first-child {
    padding-left: 0;
}

th:last-child, td:last-child {
    padding-right: 0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* ------------------------------------------------------------------- 
 * ## spacing
 * ------------------------------------------------------------------- */
img, 
p, 
pre, 
table, 
blockquote, 
figure, 
figcaption, 
ul, 
ol,
dl, 
form, 
fieldset, 
input, 
textarea, 
select, 
button, 
.btn, 
.video-container, 
.ss-custom-select {
    margin-bottom: var(--vspace-1);
}



/* ===================================================================
 * # forms 
 *
 * ------------------------------------------------------------------- */
fieldset {
    border: none;
    margin-bottom: var(--vspace-0_5);
}

input[type="email"], 
input[type="number"], 
input[type="search"], 
input[type="text"], 
input[type="tel"], 
input[type="url"], 
input[type="password"], 
textarea, 
select {
    --input-height: var(--vspace-2);
    --input-line-height: var(--vspace-1);
    --input-vpadding: calc(((var(--input-height) - var(--input-line-height)) / 2) - .1rem);

    display: block;
    height: var(--input-height);
    padding: var(--input-vpadding) calc(2.4rem - .1rem);
    border: 0;
    outline: none;
    color: var(--color-gray-3);
    font-family: var(--font-1);
    font-size: var(--text-sm);
    line-height: var(--input-line-height);
    max-width: 100%;
    background-color: var(--color-gray-17);
    border: .1rem solid transparent;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-radius: 4px;
}

.ss-custom-select {
    position: relative;
    padding: 0;
}

.ss-custom-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    margin: 0;
    vertical-align: middle;
}

.ss-custom-select select option {
    padding-left: 2rem;
    padding-right: 2rem;
}

.ss-custom-select select::-ms-expand {
    display: none;
}

.ss-custom-select::after {
    border-bottom: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    margin-top: -7px;
    pointer-events: none;
    position: absolute;
    right: 2.4rem;
    top: 50%;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

textarea {
    min-height: calc(8 * var(--space));
}

input[type="email"]:focus, 
input[type="number"]:focus, 
input[type="search"]:focus, 
input[type="text"]:focus, 
input[type="tel"]:focus, 
input[type="url"]:focus, 
input[type="password"]:focus, 
textarea:focus, 
select:focus {
    color: white;
    -webkit-box-shadow: 0 0 8px var(--color-gray-15);
    box-shadow: 0 0 8px var(--color-gray-15);
    border: 1px solid var(--color-gray-8);
}

label, legend {
    font-family: var(--font-1);
    font-weight: 600;
    font-size: var(--text-sm);
    line-height: var(--vspace-0_5);
    margin-bottom: var(--vspace-0_5);
    color: var(--color-text-dark);
    display: block;
}

input[type="checkbox"], 
input[type="radio"] {
    display: inline;
}

label>.label-text {
    display: inline-block;
    margin-left: 1rem;
    font-family: var(--font-1);
    line-height: inherit;
}

label>input[type="checkbox"], 
label>input[type="radio"] {
    margin: 0;
    position: relative;
    top: .2rem;
}


/* ------------------------------------------------------------------- 
 * ## style placeholder text
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: var(--color-placeholder);
}
:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--color-placeholder);
}
::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--color-placeholder);
}
::placeholder {
    /* Most modern browsers support this now. */
    color: var(--color-placeholder);
}
.placeholder {
    color: var(--color-placeholder) !important;
}


/* ------------------------------------------------------------------- 
 * ## change autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus input:-webkit-autofill, textarea:-webkit-autofill, textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}


/* -------------------------------------------------------------------
 * ## field states
 * markup:
 *
 * <div class="field">
 *     <label for="x">Label <span class="field__optional">facultatif</span></label>
 *     <input id="x" class="h-full-width" aria-describedby="x-error">
 *     <p class="field__error" id="x-error"></p>
 * </div>
 * ------------------------------------------------------------------- */
.field {
    position: relative;
    margin-bottom: var(--vspace-0_75);
}

.field input,
.field textarea,
.field select,
.field .ss-custom-select {
    margin-bottom: 0;
}

.field textarea {
    height: auto;
    min-height: calc(5 * var(--space));
    resize: vertical;
}

.field__optional {
    font-weight: 400;
    color: var(--color-text-light);
    margin-left: .4rem;
}

.field__error {
    display: none;
    font-size: 1.4rem;
    line-height: var(--vspace-0_75);
    color: var(--color-error);
    margin: .6rem 0 0;
}

.field.is-invalid .field__error {
    display: block;
}

.field.is-invalid input,
.field.is-invalid textarea {
    border-color: var(--color-2);
}

.field.is-valid input,
.field.is-valid textarea {
    border-color: var(--color-gray-12);
}

.field__hint {
    font-size: 1.4rem;
    line-height: var(--vspace-0_75);
    color: var(--color-text-light);
    margin: .6rem 0 0;
}



/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn, 
button, 
input[type="submit"], 
input[type="reset"], 
input[type="button"] {
    --btn-height: var(--vspace-btn);

    display: inline-block;
    font-family: var(--font-2);
    font-weight: 600;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .5em;
    height: var(--btn-height);
    line-height: calc(var(--btn-height) - .4rem);
    padding: 0 3.2rem;
    margin: 0 0.4rem var(--vspace-0_5) 0;
    color: var(--color-btn-text);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-btn);
    border: 0.2rem solid var(--color-btn);
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover, 
input[type="reset"]:hover, 
input[type="button"]:hover, 
.btn:focus, 
button:focus, 
input[type="submit"]:focus, 
input[type="reset"]:focus, 
input[type="button"]:focus {
    background-color: var(--color-btn-hover);
    border-color: var(--color-btn-hover);
    color: var(--color-btn-hover-text);
    outline: 0;
}

/* button primary
 * ------------------------------------------------- */
.btn.btn--primary, 
button.btn--primary, 
input[type="submit"].btn--primary, 
input[type="reset"].btn--primary, 
input[type="button"].btn--primary {
    background: var(--color-btn-primary);
    border-color: var(--color-btn-primary);
    color: var(--color-btn-primary-text);
}

.btn.btn--primary:hover, 
button.btn--primary:hover, 
input[type="submit"].btn--primary:hover, 
input[type="reset"].btn--primary:hover, 
input[type="button"].btn--primary:hover, 
.btn.btn--primary:focus, 
button.btn--primary:focus, 
input[type="submit"].btn--primary:focus, 
input[type="reset"].btn--primary:focus, 
input[type="button"].btn--primary:focus {
    background: var(--color-btn-primary-hover);
    border-color: var(--color-btn-primary-hover-edge);
    color: var(--color-btn-primary-hover-text);
}

/* button modifiers
 * ------------------------------------------------- */
.btn.h-full-width, 
button.h-full-width {
    width: 100%;
    margin-right: 0;
}

.btn--small, 
button.btn--small {
    font-size: 1.2rem;
    --btn-height: calc(var(--vspace-btn) - var(--vspace-0_5));
}

.btn--medium, 
button.btn--medium {
    --btn-height: calc(var(--vspace-btn) + var(--vspace-0_25));
}

.btn--large, 
button.btn--large {
    --btn-height: calc(var(--vspace-btn) + var(--vspace-0_5));
}

.btn--stroke, 
button.btn--stroke {
    background: transparent !important;
    border: 0.2rem solid var(--color-btn-stroke);
    color: var(--color-btn-stroke-text);
}

.btn--stroke:hover, 
button.btn--stroke:hover {
    background: var(--color-btn-stroke-hover) !important;
    border: 0.2rem solid var(--color-btn-stroke-hover);
    color: var(--color-btn-stroke-hover-text);
}

.btn--pill, 
button.btn--pill {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
    border-radius: 1000px !important;
}

/* light variant, for crimson backgrounds (same as the footer button)
 */
.btn--light,
button.btn--light {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-black);
}

.btn--light:hover,
.btn--light:focus,
button.btn--light:hover,
button.btn--light:focus {
    background-color: var(--color-gray-19);
    border-color: var(--color-gray-19);
    color: var(--color-white);
}

/* disabled / busy state
 */
.btn[aria-disabled="true"],
button[disabled] {
    opacity: .6;
    cursor: progress;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* long French labels on small screens
 */
@media screen and (max-width: 600px) {
    .btn,
    button,
    input[type="submit"] {
        letter-spacing: .3em;
        padding: 0 2.4rem;
    }
}

@media screen and (max-width: 400px) {
    .btn,
    button,
    input[type="submit"] {
        letter-spacing: .2em;
        padding: 0 1.6rem;
    }
}



/* ===================================================================
 * # common and reusable styles
 *
 * ------------------------------------------------------------------- */
.wide {
    max-width: var(--width-wide);
}
.wider {
    max-width: var(--width-wider);
}
.narrow {
    max-width: var(--width-narrow);
}
.narrower {
    max-width: var(--width-narrower);
}

.section-title {
    display: block;
    margin-bottom: var(--vspace-2);
    position: relative;
}
.section-title::before {
    content: attr(data-num);
    font-family: var(--font-2);
    font-weight: 600;
    font-size: calc(var(--text-size) * 10);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-text);
    opacity: .1;
}

.section-title .h6 {
    z-index: 2;
    font-weight: 500;
    color: var(--color-accent-text);
    padding-bottom: 2em;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    left: 1em;
    bottom: 0;
}

.display-1 {
    font-size: var(--text-xxl);
    font-weight: 500;
    line-height: var(--vspace-1_75);
    margin-top: 0;
}

.item-title {
    font-family: var(--font-2);
    font-weight: 500;
    font-size: var(--text-lg);
    line-height: var(--vspace-1_25);
    margin-top: 0;
    margin-bottom: var(--vspace-0_5);
}

/* small uppercase label above an item title
 */
.item-kicker {
    display: block;
    font-family: var(--font-2);
    font-weight: 600;
    font-size: 1.2rem;
    line-height: var(--vspace-0_75);
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-accent-text);
    margin: 0 0 var(--vspace-0_25);
}

.item-kicker--muted {
    color: var(--color-text-light);
}

/* short red rule that carries the accent color of small labels
 * (centered labels get one on each side)
 */
.eyebrow::before,
.section-title .h6::before,
.item-kicker:not(.item-kicker--muted)::before,
.h-text-center .eyebrow::after,
.s-hero--centered .eyebrow::after {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2px;
    margin-right: 1.2rem;
    vertical-align: middle;
    background-color: var(--color-1-light);
    -webkit-transform: translateY(-.1em);
    transform: translateY(-.1em);
}

.h-text-center .eyebrow::after,
.s-hero--centered .eyebrow::after {
    margin-right: 0;
    margin-left: .9rem;
}

.item-kicker:not(.item-kicker--muted)::before {
    width: 1.6rem;
    margin-right: .8rem;
}

/* compact bullet list, based on ul.disc
 */
ul.disc.list-compact {
    font-size: 1.6rem;
    line-height: calc(0.875 * var(--space));
    margin-left: 1.2rem;
}

ul.disc.list-compact li {
    margin-bottom: var(--vspace-0_25);
}

.h-color-dark {
    color: var(--color-text-dark);
}


/* -------------------------------------------------------------------
 * ## item list
 * ------------------------------------------------------------------- */
.item-list {
    margin-top: var(--vspace-2_5);
}
.item-list .item {
    padding-right: 8.6rem;
    margin-bottom: var(--vspace-0_5);
}


/* -------------------------------------------------------------------
 * ## cards
 * bordered variant of .item, used for offers and proof
 * ------------------------------------------------------------------- */
.card-grid > .column {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-bottom: calc(2 * var(--gutter-lg));
}

.card {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    flex-direction: column;
    width: 100%;
    /* 4.8rem visible on all four sides: the top padding is smaller by
     * the leading above the label's capitals (about .8rem) */
    padding: 4rem 4.8rem 4.8rem;
    border: 1px solid var(--color-gray-16);
    background-color: var(--color-bg);
    -webkit-transition: border-color var(--duration) ease-in-out, background-color var(--duration) ease-in-out;
    transition: border-color var(--duration) ease-in-out, background-color var(--duration) ease-in-out;
}

.card:hover {
    border-color: var(--color-gray-14);
}

.card--featured,
.card--featured:hover {
    border-color: var(--color-1);
    background-color: var(--color-gray-19);
}

/* vertical rhythm inside a card, the same in every card:
 * label → title 1.2rem, title → text 1.6rem, text → list 1.6rem,
 * content → button 3.2rem (button centered)
 */
.card .item-kicker {
    margin: 0 0 1.2rem;
}

.card__title {
    font-family: var(--font-2);
    font-weight: 500;
    font-size: var(--text-lg);
    line-height: var(--vspace-1_25);
    color: var(--color-text-dark);
    margin: 0 0 1.6rem;
}

.card__intro {
    font-size: 1.6rem;
    line-height: calc(0.875 * var(--space));
    margin: 0;
}

.card .list-compact {
    margin-top: 1.6rem;
    margin-bottom: 0;
}

.card .list-compact li:last-child {
    margin-bottom: 0;
}

.card__footer {
    margin-top: auto;
    padding-top: 3.2rem;
    text-align: center;
}

.card__footer .btn {
    margin: 0;
    letter-spacing: .3em;
    padding: 0 1.6rem;
    min-width: 60%;
}

@media screen and (max-width: 1200px) {
    .card__intro,
    .card .list-compact {
        max-width: 64ch;
    }
}


/* -------------------------------------------------------------------
 * ## reveal on scroll
 * elements marked [data-reveal] fade up once when they enter the
 * viewport (js/main.js). Same timing as the template's AOS setup:
 * 600ms, ease-in-out. Hidden only when JS is running.
 * ------------------------------------------------------------------- */
html.js [data-reveal] {
    opacity: 0;
    -webkit-transform: translate3d(0, 3.2rem, 0);
    transform: translate3d(0, 3.2rem, 0);
    -webkit-transition: opacity var(--duration-slow) ease-in-out, -webkit-transform var(--duration-slow) var(--ease-out);
    transition: opacity var(--duration-slow) ease-in-out, transform var(--duration-slow) var(--ease-out);
    -webkit-transition-delay: var(--reveal-delay, 0s);
    transition-delay: var(--reveal-delay, 0s);
}

html.js [data-reveal].is-revealed {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * common and reusable styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1100px) {
    .item-list .item {
        padding-right: 2rem;
    }
}
@media screen and (max-width: 1000px) {
    .section-title::before {
        font-size: calc(var(--text-size) * 8);
    }
}
@media screen and (max-width: 800px) {
    .section-title {
        margin-bottom: var(--vspace-1);
    }
    .item-list .item {
        margin-bottom: 0;
    }
    .item-list .item {
        padding-right: var(--gutter-md);
    }
    .card {
        padding: 2.4rem 3.2rem 3.2rem;
    }
}
@media screen and (max-width: 600px) {
    .item-list .item {
        padding-right: var(--gutter-mob);
    }
    .card-grid > .column {
        margin-bottom: var(--vspace-0_75);
    }
}
@media screen and (max-width: 400px) {
    .display-1 {
        font-size: var(--text-xl);
        line-height: var(--vspace-1_5);
    }
    .item-title,
    .card__title {
        font-size: var(--text-md);
        line-height: var(--vspace-1);
    }
    .item-list .item {
        padding-right: 0;
    }
    .card {
        padding: 1.6rem 2.4rem 2.4rem;
    }
}



/* ===================================================================
 * # site header
 *
 * ------------------------------------------------------------------- */
.s-header {
    z-index: 100;
    width: 100%;
    height: 8.8rem;
    position: absolute;
    top: var(--vspace-0_75);
    left: 0;
}

.s-header.offset {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.s-header.scrolling {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.s-header.sticky {
    background-color: var(--color-gray-19);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
}

.s-header.sticky .s-header__content .btn {
    --btn-height: calc(var(--vspace-btn) - 1.6rem) !important;
}

.s-header.sticky.scrolling {
    opacity: 1;
    visibility: visible;
}

.s-header__content {
    height: 8.8rem;
    position: relative;
}


/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
.s-header__logo {
    z-index: 101;
    display: inline-block;
    margin: 0;
    padding: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .5s;
    transition: all .5s;
    position: absolute;
    left: 8rem;
    top: calc(50% - 2px);
}

.s-header__logo a {
    display: block;
    border: none;
    padding: 0;
}

/* text wordmark (replaces the template image logo)
 */
.s-header__logo a,
.wordmark {
    font-family: var(--font-2);
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: .28em;
    color: var(--color-white);
    white-space: nowrap;
}

.s-header__logo a:hover,
.s-header__logo a:focus {
    color: var(--color-accent-text);
}

@media screen and (max-width: 480px) {
    .s-header .s-header__logo a {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 400px) {
    .s-header .s-header__logo a {
        font-size: 1.6rem;
        letter-spacing: .22em;
    }
}

@media screen and (max-width: 340px) {
    .s-header .s-header__cta {
        display: none !important;
    }
}


/* -------------------------------------------------------------------
 * ## main navigation
 * ------------------------------------------------------------------- */
.s-header__nav-wrap {
    padding-left: 27.6rem;
}

.s-header__nav {
    list-style: none;
    font-family: var(--font-2);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 6rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .4em;
}

.s-header__nav a {
    color: var(--color-gray-8);
}

.s-header__nav a:hover, .s-header__nav a:focus,
.s-header__nav a.is-current {
    color: white !important;
}

.s-header__nav a {
    position: relative;
}

.s-header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: .4em;
    bottom: -.8rem;
    height: 1px;
    background-color: var(--color-1);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transition: -webkit-transform var(--duration) var(--ease-out);
    transition: transform var(--duration) var(--ease-out);
}

.s-header__nav a:hover::after,
.s-header__nav a.is-current::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.s-header__nav li {
    display: inline-block;
    padding-left: 0;
    margin: 0 1.6rem;
}


/* ------------------------------------------------------------------- 
 * ## mobile menu toggle
 * ------------------------------------------------------------------- */
.s-header__menu-toggle {
    z-index: 101;
    display: none;
    height: 4.2rem;
    width: 4.2rem;
    line-height: 4.2rem;
    font-family: var(--font-2);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: white;
    outline: none;
    -webkit-transition: all .5s;
    transition: all .5s;
    position: absolute;
    right: 5.2rem;
    top: 1.6rem;
}

/* the toggle is a <button>: reset the template button styles
 */
button.s-header__menu-toggle {
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    letter-spacing: .2rem;
}

.s-header__menu-toggle:hover,
.s-header__menu-toggle:focus,
button.s-header__menu-toggle:hover,
button.s-header__menu-toggle:focus {
    color: white;
    background: transparent;
}

.s-header__menu-toggle span {
    display: block;
    width: 2.4rem;
    height: 2px;
    background-color: white;
    -webkit-transition: all .5s;
    transition: all .5s;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    left: .9rem;
    right: auto;
    bottom: auto;
}

.s-header__menu-toggle span::before, 
.s-header__menu-toggle span::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    -webkit-transition: all .5s;
    transition: all .5s;
    position: absolute;
    left: 0;
}

.s-header__menu-toggle span::before {
    top: -.9rem;
}

.s-header__menu-toggle span::after {
    bottom: -.9rem;
}

.s-header__menu-toggle.is-clicked span {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all .1s;
    transition: all .1s;
}

.s-header__menu-toggle.is-clicked span::before, 
.s-header__menu-toggle.is-clicked span::after {
    background-color: white;
}

.s-header__menu-toggle.is-clicked span::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.s-header__menu-toggle.is-clicked span::after {
    bottom: 0;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}


/* ------------------------------------------------------------------- 
 * ## header contact button
 * ------------------------------------------------------------------- */
.s-header__content .btn {
    --btn-height: calc(var(--vspace-btn) - 1.2rem);

    font-size: 1rem;
    padding: 0 2.8rem;
    margin: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 10rem;
}

.s-header__content .btn svg {
    height: var(--vspace-0_5);
    width: var(--vspace-0_5);
    margin-right: 1.6rem;
    -webkit-transform: translateY(-0.1rem);
    transform: translateY(-0.1rem);
}

.s-header__content .btn svg path {
    fill: white;
}

/* red buttons turn black on hover, like every red button of the page
 */
.s-header__content .btn:hover,
.s-header__content .btn:focus {
    background-color: var(--color-btn-primary-hover) !important;
    border-color: var(--color-btn-primary-hover-edge) !important;
    color: white;
}

/* compact CTA kept visible next to the menu toggle on small screens
 */
.s-header__cta {
    display: none;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1700px) {
    .s-header__logo {
        left: 6rem;
    }
    .s-header__nav-wrap {
        padding-left: 25.6rem;
    }
    .s-header__content .btn {
        right: 6rem;
    }
}

/* menu centered on the page, between the logo and the button, so the
 * header weighs the same on both sides
 */
@media screen and (min-width: 1101px) {
    .s-header__nav-wrap {
        padding-left: 0;
    }
    .s-header__nav {
        text-align: center;
        /* makes up for the letter spacing after the last letter */
        padding-left: .4em;
    }
}

@media screen and (max-width: 1000px) {
    .s-header__logo a {
        font-size: 1.9rem;
    }
    .s-header__nav-wrap {
        padding-left: 22.4rem;
    }
    .s-header__nav {
        letter-spacing: .3em;
    }
    .s-header__nav li {
        margin: 0 .6rem;
    }
    .s-header__content .btn {
        --btn-height: calc(var(--vspace-btn) - 1.6rem) !important;
    }
}

@media screen and (max-width: 900px) {
    .s-header {
        top: var(--vspace-0_5);
        height: 8rem;
    }
    .s-header.sticky .s-header__content .btn, 
    .s-header .s-header__content .btn {
        --btn-height: calc(var(--vspace-btn) - 1.2rem) !important;
    }
    .s-header__content {
        display: block;
        background-color: var(--color-gray-19);
        height: auto;
        width: 100%;
        padding: calc(5 * var(--space)) 6rem var(--vspace-2);
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        position: absolute;
        top: calc(var(--vspace-0_5) * -1);
        left: 0;
    }
    .s-header__content .btn {
        margin-top: var(--vspace-1_5);
        text-align: center;
        -webkit-transform: translateY(-2rem);
        transform: translateY(-2rem);
        opacity: 0;
        visibility: hidden;
        position: static;
    }
    .s-header__nav-wrap {
        padding: 0;
        -webkit-transform: translateY(-2rem);
        transform: translateY(-2rem);
        opacity: 0;
        visibility: hidden;
    }
    .s-header__nav {
        display: block;
        width: 100%;
        padding: 0;
    }
    .s-header__nav a {
        display: block;
    }
    .s-header__nav li {
        border-top: 1px solid rgba(255, 255, 255, 0.03);
        display: block;
        margin: 0;
    }
    .s-header__nav li:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }
    .s-header__menu-toggle {
        display: block;
    }
    .s-header .s-header__cta {
        z-index: 101;
        display: block;
        --btn-height: 3.6rem;
        font-size: 1rem;
        letter-spacing: .25em;
        padding: 0 1.6rem;
        margin: 0;
        position: absolute;
        top: 2.1rem;
        right: calc(5.2rem + 4.2rem + 1.2rem);
    }
    .menu-is-open .s-header__cta {
        opacity: 0;
        visibility: hidden;
    }
    .menu-is-open .s-header__content {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .menu-is-open .s-header__content .btn {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        -webkit-transition-property: opacity, -webkit-transform;
        transition-property: opacity, -webkit-transform;
        transition-property: transform, opacity;
        transition-property: transform, opacity, -webkit-transform;
        -webkit-transition-duration: .4s;
        transition-duration: .4s;
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transition-delay: .25s;
        transition-delay: .25s;
    }
    .menu-is-open .s-header__nav-wrap {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transition-delay: .15s;
        transition-delay: .15s;
    }
}

@media screen and (max-width: 600px) {
    .s-header__logo {
        left: 4rem;
    }
    .s-header__menu-toggle {
        right: 4rem;
    }
    .s-header .s-header__cta {
        right: calc(4rem + 4.2rem + .8rem);
    }
    .s-header__content {
        padding: calc(5 * var(--space)) 4rem var(--vspace-2);
    }
    .s-header__content .btn {
        display: block;
    }
    .s-header__content .btn svg {
        -webkit-transform: translateY(0.3rem);
        transform: translateY(0.3rem);
    }
}



/* ===================================================================
 * # hero
 *
 * ------------------------------------------------------------------- */
.s-hero {
    background-color: #121417;
    width: 100%;
    min-height: 100vh;
    min-height: max(100vh, calc(22 * var(--space)));
    overflow: hidden;
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.s-hero__bg {
    background-image: url(../images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 36.5vw;
}

/* darker than the template (.25) so the headline stays readable
 * where it overlaps the photo
 */
.s-hero__bg::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    opacity: .6;
}

.s-hero__bg .gradient-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, black), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, black 10%, rgba(0, 0, 0, 0) 100%);
    opacity: .35;
}


/* -------------------------------------------------------------------
 * ## hero content
 * ------------------------------------------------------------------- */
.s-hero__content {
    width: 92%;
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
    padding-top: calc(8.8rem + var(--vspace-0_75) + var(--vspace-2));
    padding-bottom: 12vh;
    position: relative;
}

.eyebrow {
    color: var(--color-accent-text);
    margin-top: 0;
    margin-bottom: var(--vspace-1);
}

.s-hero__content h1 {
    font-size: var(--text-display-2);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.08;
    color: var(--color-white);
    max-width: 15ch;
    margin-top: 0;
    margin-bottom: var(--vspace-1_5);
    position: relative;
}

.s-hero__content h1 .h-accent {
    color: var(--color-1);
}

.s-hero__content h1::before {
    display: block;
    content: "";
    height: 10rem;
    width: 20rem;
    background-image: url(../images/dots.svg);
    -webkit-transform: translateX(-4rem);
    transform: translateX(-4rem);
    opacity: .25;
    position: absolute;
    bottom: .14em;
    right: 100%;
}

/* hero content about
 * ----------------------------------------------- */
.s-hero__content-about {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: var(--text-md);
    line-height: 1.6;
    color: var(--color-gray-4);
    padding-left: 3.6em;
    position: relative;
}

.s-hero__content-about::before {
    content: "";
    display: block;
    height: 1px;
    width: 2.4em;
    background-color: var(--color-1);
    position: absolute;
    left: .5em;
    top: .8em;
}

.s-hero__content-about p {
    max-width: 34em;
    margin-bottom: var(--vspace-1_25);
}

/* hero calls to action
 * ----------------------------------------------- */
.s-hero__cta {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    gap: 1.6rem 3.2rem;
    margin-bottom: var(--vspace-1);
}

.s-hero__cta .btn {
    margin: 0;
}

/* discreet secondary link, same typography as the buttons
 */
.link-more {
    display: inline-block;
    font-family: var(--font-2);
    font-weight: 600;
    font-size: var(--text-xs);
    line-height: var(--vspace-1);
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-gray-13);
}

.link-more:hover,
.link-more:focus {
    color: var(--color-white);
    border-bottom-color: var(--color-1);
}

.link-more span {
    display: inline-block;
    -webkit-transition: -webkit-transform var(--duration) var(--ease-out);
    transition: transform var(--duration) var(--ease-out);
}

.link-more:hover span,
.link-more:focus span {
    -webkit-transform: translateX(.4rem);
    transform: translateX(.4rem);
}

/* reassurance line under the buttons
 */
.check-list {
    list-style: none;
    margin: 0;
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: var(--color-text);
}

.check-list li {
    padding-left: 2.2rem;
    position: relative;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: .2rem;
    top: .75rem;
    width: .9rem;
    height: .5rem;
    border-left: 2px solid var(--color-1-light);
    border-bottom: 2px solid var(--color-1-light);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.check-list--inline {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: .4rem 2.8rem;
}


/* -------------------------------------------------------------------
 * ## hero scroll
 * ------------------------------------------------------------------- */
.s-hero__scroll {
    position: absolute;
    right: 4.8rem;
    bottom: 0;
    -webkit-transform: rotate(90deg) translateX(-100px) translateY(3.2rem);
    transform: rotate(90deg) translateX(-100px) translateY(3.2rem);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
}

.s-hero__scroll-link {
    display: inline-block;
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 1rem;
    line-height: 3.2rem;
    height: 3.2rem;
    text-transform: uppercase;
    letter-spacing: .4em;
    text-align: left;
    vertical-align: middle;
    color: var(--color-text);
    position: relative;
}

.s-hero__scroll-link:hover,
.s-hero__scroll-link:focus {
    color: white;
}


/* -------------------------------------------------------------------
 * ## animate intro content
 * short staggered rise (600ms) instead of the template's 3s preloader
 * sequence; --i sets the order.
 * ------------------------------------------------------------------- */
html.js .s-hero [data-intro] {
    opacity: 0;
    -webkit-transform: translate3d(0, 2.4rem, 0);
    transform: translate3d(0, 2.4rem, 0);
    -webkit-animation: heroRise var(--duration-slow) var(--ease-out) forwards;
    animation: heroRise var(--duration-slow) var(--ease-out) forwards;
    -webkit-animation-delay: calc(var(--i, 0) * 90ms + 100ms);
    animation-delay: calc(var(--i, 0) * 90ms + 100ms);
}

@-webkit-keyframes heroRise {
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes heroRise {
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


/* -------------------------------------------------------------------
 * ## centered hero + typed headline
 * the photo covers the whole hero behind a darker layer, the content
 * is centered both ways; the headline's last word is typed by
 * js/main.js (slot width fixed per word, so nothing shifts)
 * ------------------------------------------------------------------- */
.s-hero--centered {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
}

.s-hero--centered .s-hero__bg {
    left: 0;
}

.s-hero--centered .s-hero__bg::after {
    opacity: .72;
}

/* soft darkening behind the centered text only */
.s-hero--centered .s-hero__bg .gradient-overlay {
    background: radial-gradient(ellipse 55% 50% at 50% 52%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.35) 10%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
}

.s-hero--centered .s-hero__content {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    padding-top: calc(8.8rem + var(--vspace-0_75) + var(--vspace-1));
    padding-bottom: var(--vspace-2_5);
}

.s-hero--centered .s-hero__content h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.s-hero--centered .s-hero__content h1::before,
.s-hero--centered .s-hero__content-about::before {
    display: none;
}

.s-hero--centered .s-hero__content-about {
    padding-left: 0;
    max-width: 84rem;
    margin: 0 auto;
}

.s-hero--centered .s-hero__content-about p {
    max-width: 30em;
    margin-left: auto;
    margin-right: auto;
}

.s-hero--centered .s-hero__cta,
.s-hero--centered .check-list--inline {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.s-hero--centered .check-list {
    text-align: left;
}

.hero-title {
    font-size: var(--text-display-2);
    line-height: 1.1;
}

.hero-title__static {
    display: block;
    text-wrap: balance;
}

/* small screens: the eyebrow wraps, so a single rule sits above it */
@media screen and (max-width: 600px) {
    .s-hero--centered .eyebrow::before,
    .h-text-center .eyebrow::before {
        display: block;
        margin: 0 auto 1.2rem;
        -webkit-transform: none;
        transform: none;
    }
    .s-hero--centered .eyebrow::after,
    .h-text-center .eyebrow::after {
        display: none;
    }
}

.hero-title__line {
    display: block;
    min-height: 1.1em;
    white-space: nowrap;
}

.hero-title__slot {
    display: inline-block;
    position: relative;
    height: 1.1em;
    vertical-align: top;
    text-align: left;
    white-space: nowrap;
    color: var(--color-1-light);
}

.hero-title__word {
    position: relative;
    z-index: 1;
}

.hero-title__caret {
    position: absolute;
    z-index: 2;
    top: .128em;
    left: calc(var(--caret-x, 0px) + .06em);
    width: .06em;
    height: .82em;
    background-color: currentColor;
}

.hero-title__line.is-idle .hero-title__caret {
    -webkit-animation: caretBlink 1.06s steps(1) infinite;
    animation: caretBlink 1.06s steps(1) infinite;
}

html.no-js .hero-title__caret {
    display: none;
}

@-webkit-keyframes caretBlink {
    50% { opacity: 0; }
}

@keyframes caretBlink {
    50% { opacity: 0; }
}


/* -------------------------------------------------------------------
 * responsive:
 * hero
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1400px) {
    .s-hero__scroll {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .s-hero__content h1 {
        font-size: var(--text-display-1);
    }
}

@media screen and (max-width: 1000px) {
    .s-hero__content-about {
        padding-left: .6em;
    }
    .s-hero__content-about::before {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .s-hero__bg {
        background-image: url(../images/hero-bg-1200.jpg);
        display: block;
        width: 50vw;
        height: 50vh;
        top: 12rem;
        right: 0;
        bottom: auto;
        left: auto;
    }
    .s-hero__bg::after {
        opacity: .7;
    }
    .s-hero--centered .s-hero__bg {
        width: auto;
        height: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .s-hero--centered .s-hero__bg::after {
        opacity: .78;
    }
}

@media screen and (max-width: 800px) {
    .s-hero__content {
        padding-bottom: 8vh;
    }
    .s-hero__content h1::before {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        left: -1.2rem;
        bottom: .8em;
    }
}

@media screen and (max-width: 600px) {
    .s-hero__content {
        width: 100%;
    }
    .s-hero__content h1 {
        font-size: var(--text-xxxl);
        line-height: 1.12;
    }
    .s-hero__content-about {
        font-size: var(--text-size);
        padding-left: 0;
    }
    .s-hero__cta .btn {
        width: 100%;
    }
    .s-hero__cta .link-more {
        margin: 0 auto;
    }
}

@media screen and (max-width: 500px) {
    .s-hero__content h1::before {
        left: -6rem;
        bottom: .6em;
    }
}

@media screen and (max-width: 400px) {
    .s-header__logo {
        left: 3.2rem;
    }
    .s-header__menu-toggle {
        right: 3.2rem;
    }
    .s-header .s-header__cta {
        right: calc(3.2rem + 4.2rem + .6rem);
    }
    .s-hero__content h1 {
        font-size: 3.4rem;
    }
    .s-hero__content h1::before {
        left: -8rem;
    }
}



/* ===================================================================
 * # pillars
 * three short principles right under the hero
 * ------------------------------------------------------------------- */
.s-pillars {
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding-top: var(--vspace-2);
    padding-bottom: var(--vspace-1);
}

/* le filet, le titre et le texte forment un bloc de largeur fixe, centre
 * dans sa colonne : meme ecart a gauche et a droite, et meme longueur de
 * ligne pour les trois piliers. Sous 30rem de colonne, le bloc occupe
 * toute la largeur disponible et reste donc symetrique. */
.s-pillars__title,
.s-pillars__item p {
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.s-pillars__title {
    font-family: var(--font-2);
    font-weight: 600;
    font-size: var(--text-size);
    line-height: var(--vspace-1);
    color: var(--color-white);
    margin-top: 0;
    margin-bottom: var(--vspace-0_25);
}

.s-pillars__title::before {
    content: "";
    display: block;
    width: 3.2rem;
    height: 2px;
    background-color: var(--color-1);
    margin-bottom: var(--vspace-0_5);
}

.s-pillars__item p {
    font-size: 1.6rem;
    line-height: calc(0.875 * var(--space));
    text-wrap: balance;
}



/* ===================================================================
 * # tools marquee (bandeau outils)
 *
 * Logos, filtres, survol, vitesse, sens et keyframes repris a
 * l'identique de l'ebauche NEF PRO (Accueil). NE PAS MODIFIER.
 *
 * Adapte a la demande : libelle en Montserrat (police du site) et un
 * peu plus grand ; bandeau plus haut, avec trois ecarts optiques egaux
 * (haut du bandeau / libelle / logos / bas du bandeau). Les paddings
 * compensent l'espace interne du texte (au-dessus des capitales) et
 * des SVG (marges autour des logos) : --nefm-space est l'ecart visible.
 *
 * Neutralisation locale des regles globales du template qui
 * modifieraient le rendu : line-height du body (3.2rem), marge basse
 * des images (3.2rem), max-width/height auto des images, box-sizing
 * border-box, cesure.
 * ------------------------------------------------------------------- */
@keyframes nefMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.nefm-band {
    /* visible gap, identical above the label, between label and logos,
     * and below the logos. Offsets measured on the rendered page:
     * 2px above the capitals and 1.8px under the baseline (13px label,
     * line-height 1), 16px of empty space above and below the logo inks
     * inside the 66px track. Total height: 200px (was 175px).
     */
    --nefm-space: 52px;

    border-top: 1px solid #232a2d;
    background: #0c1012;
    padding: calc(var(--nefm-space) - 2px) 0 calc(var(--nefm-space) - 16px);
    display: flex;
    flex-direction: column;
    gap: calc(var(--nefm-space) - 18px);
    overflow: hidden;

    /* neutralisation du template */
    margin: 0;
    color: #eaeef0;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    word-wrap: normal;
}

.nefm-band,
.nefm-band * {
    box-sizing: content-box;
}

.nefm-band__label {
    font-family: var(--font-2);
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-light);
    text-align: center;
    margin: 0;
    padding: 0;
}

.nefm-band__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: nefMarquee 72s linear infinite;    /* 64s for 8 logos: same speed with 9 */
    margin: 0;
    padding: 0;
}

.nefm-band__group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}

.nefm-band__item {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.nefm-band__logo {
    height: 34px;
    width: auto;
    max-width: 120px;
    filter: grayscale(1) opacity(.5);
    transition: filter .35s ease, opacity .35s ease;
    margin: 0;
    padding: 0;
    border: 0;
}

.nefm-band__logo:not(.nefm-band__logo--openai):hover {
    filter: none !important;
    opacity: 1 !important;
}

.nefm-band__logo--n8n {
    height: 30px;
}

.nefm-band__logo--slack {
    height: 66px;
}

.nefm-band__logo--openai {
    height: 46px;
    filter: invert(1) opacity(.5);
}

.nefm-band__logo--openai:hover {
    filter: invert(1) opacity(1) !important;
}



/* ===================================================================
 * # about / method
 *
 * ------------------------------------------------------------------- */
.s-about {
    background-color: var(--color-bg);
    padding-top: calc(6 * var(--space));
    padding-bottom: var(--vspace-2);
    position: relative;
}


/* -------------------------------------------------------------------
 * ## about process
 * ------------------------------------------------------------------- */
.s-about__process {
    counter-reset: ctr;
}

.s-about__process h3 {
    padding-left: 2.5em;
    position: relative;
}

.s-about__process h3::before {
    content: counter(ctr);
    counter-increment: ctr;
    display: block;
    font-family: var(--font-2);
    font-size: var(--text-size);
    font-weight: 600;
    text-align: center;
    color: white;
    background-color: var(--color-1);
    height: var(--vspace-1_5);
    width: var(--vspace-1_5);
    line-height: var(--vspace-1_5);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -5px;
}

.s-about__process .item-process {
    position: relative;
    margin-bottom: var(--vspace-1_5);
}

/* same section break as the others: the last row's margin is cancelled */
.s-about__process {
    margin-bottom: calc(-1 * var(--vspace-1_5));
}

.s-about__process .item-process__time {
    padding-left: calc(2.5 * var(--text-lg));
    margin-top: calc(-1 * var(--vspace-0_25));
    margin-bottom: var(--vspace-0_5);
}

/* call to action placed in the last cell of the process grid
 */
.item-process--cta {
    border-left: 2px solid var(--color-1);
    padding-left: var(--vspace-1) !important;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.item-process--cta .item-title {
    color: var(--color-white);
}

.item-process--cta .btn {
    margin-bottom: var(--vspace-0_5);
}

/* two steps side by side share their rows (title, weeks, text, then one
 * row per bullet), so each bullet lines up with its neighbour
 */
@media screen and (min-width: 801px) {
    .s-about__process {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .s-about__process > .item-process {
        display: grid;
        grid-row: span 6;
        grid-template-rows: subgrid;
        row-gap: 0;
        align-content: start;
        max-width: none;
    }
    .s-about__process ul.disc {
        display: grid;
        grid-row: span 3;
        grid-template-rows: subgrid;
        row-gap: 0;
    }
    .s-about__process > .item-process--cta {
        display: block;
    }
}


/* -------------------------------------------------------------------
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-about {
        padding-top: calc(5 * var(--space));
    }
}

@media screen and (max-width: 400px) {
    .s-about {
        padding-top: var(--vspace-4);
    }
    .s-about__process h3 {
        padding-left: 3em;
        margin-bottom: var(--vspace-0_75);
    }
    .s-about__process .item-process__time {
        padding-left: calc(3 * var(--text-md));
    }
}



/* ===================================================================
 * # services
 * shared by the content sections below (same rhythm as the template)
 * ------------------------------------------------------------------- */
.s-services,
.s-problem,
.s-commitments,
.s-proof,
.s-offers,
.s-faq,
.s-booking {
    background-color: var(--color-bg);
    padding-top: calc(6 * var(--space));
    padding-bottom: var(--vspace-2);
}

/* respiration entre le titre de la FAQ et la colonne des questions
 * (uniquement quand les deux colonnes sont cote a cote) */
@media screen and (min-width: 901px) {
    .s-faq .column.large-5 {
        padding-right: var(--space);
    }
}

.s-services .lead,
.section-intro .lead {
    margin-top: var(--vspace-0_25);
}

.s-services .item-service {
    margin-bottom: 0;
}

.service-icon {
    display: block;
    width: calc(2.25 * var(--space));
    height: calc(2.25 * var(--space));
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    margin-bottom: var(--vspace-0_75);
}

.service-icon--email {
    background-image: url(../images/icons/services/icon-email.svg);
}

.service-icon--profile {
    background-image: url(../images/icons/services/icon-profile.svg);
}

.service-icon--data {
    background-image: url(../images/icons/services/icon-data.svg);
}

/* 02 and 03: three tones from title to bullets, white title, light
 * grey text (gray-4), then the usual grey (gray-7) for the bullets
 */
.s-services .item-service > p:not(.item-kicker),
.s-about__process .item-process > p:not(.item-kicker):not(.item-title):not(.form-note) {
    color: var(--color-gray-4);
}

/* services grid (02)
 * the three columns share their rows (icon, label, title, text, then
 * one row per bullet, up to four), so titles, texts and each bullet
 * line up across columns
 */
@media screen and (min-width: 801px) {
    .service-grid {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .item-list.service-grid > .item {
        display: grid;
        grid-row: span 8;
        grid-template-rows: subgrid;
        row-gap: 0;
        -ms-flex-line-pack: start;
        align-content: start;
        max-width: none;
        padding-right: calc(1.5 * var(--vspace-1));
    }
    .service-grid .item > p:not(.item-kicker) {
        margin-bottom: var(--vspace-0_75);
    }
    .service-grid ul.disc {
        display: grid;
        grid-row: span 4;
        grid-template-rows: subgrid;
        row-gap: 0;
        margin-bottom: 0;
    }
}

/* feature grid
 * the problems (01) and commitments (04) as even, centered cards. Each
 * card is numbered in red, with a short red rule on its top edge (the
 * same accent as the pillars). Number, title and text follow each other
 * with fixed gaps, so a one-line title sits as close to its text as a
 * two-line one; cards of a line keep the same height.
 */
.feature-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(1.5 * var(--gutter-lg));
    padding: 0 var(--gutter-lg);
    counter-reset: feature;
}

.item-list.feature-grid .item {
    counter-increment: feature;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    flex-direction: column;
    position: relative;
    margin: 0;
    /* about 3rem visible on every side: the top and bottom paddings
     * make up for the leading around the first and last lines */
    padding: 2.8rem 3rem 2.2rem;
    text-align: center;
    border: 1px solid var(--color-border);
    background-color: var(--color-gray-19);
    -webkit-transition: border-color var(--duration) ease-in-out;
    transition: border-color var(--duration) ease-in-out;
}

.item-list.feature-grid .item:hover {
    border-color: var(--color-gray-15);
}

.feature-grid .item::before {
    content: counter(feature, decimal-leading-zero);
    display: block;
    font-family: var(--font-2);
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: .16em;
    color: var(--color-1-light);
    /* with the title's leading, this leaves the same visible gap above
     * and below the digits (top padding 2.8rem) */
    margin-bottom: 2rem;
}

.feature-grid .item::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 3.2rem;
    height: 2px;
    margin-left: -1.6rem;
    background-color: var(--color-1);
}

.feature-grid .item-title {
    font-size: var(--text-md);
    line-height: var(--vspace-1);
    margin-bottom: var(--vspace-0_5);
}

.feature-grid .item p {
    font-size: 1.6rem;
    line-height: calc(0.875 * var(--space));
    margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .feature-grid--trio {
        grid-template-columns: minmax(0, 1fr);
        max-width: 64rem;
    }
}

@media screen and (max-width: 600px) {
    .feature-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--gutter-lg);
        padding: 0 var(--gutter-mob);
    }
}


/* -------------------------------------------------------------------
 * responsive:
 * services
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-services,
    .s-problem,
    .s-commitments,
    .s-proof,
    .s-offers,
    .s-faq,
    .s-booking {
        padding-top: calc(5 * var(--space));
    }
}

@media screen and (max-width: 400px) {
    .s-services,
    .s-problem,
    .s-commitments,
    .s-proof,
    .s-offers,
    .s-faq,
    .s-booking {
        padding-top: var(--vspace-4);
    }
}



/* ===================================================================
 * # content sections
 *
 * ------------------------------------------------------------------- */

/* -------------------------------------------------------------------
 * ## proof
 * ------------------------------------------------------------------- */

/* single card (05 and 06)
 * the card sits in the middle column; on each side a hairline at its
 * mid-height fades out toward the page edge and ends, next to the card,
 * on a small grey dot. It fills the empty sides without drawing the eye.
 */
.card-solo {
    display: -ms-grid;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 56rem) minmax(0, 1fr);
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.card-grid.card-solo > .column {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    margin-bottom: 0;
}

/* 05 and 06 cards share width and height (main.js sets the height of
 * the taller one on both); in 05 the text is centered, midway between
 * the top edge and the button
 */
.s-proof .card {
    text-align: center;
}

.s-proof .card .item-kicker {
    margin-top: auto;
}

.s-proof .card__intro {
    margin-left: auto;
    margin-right: auto;
}

.card-solo::before,
.card-solo::after {
    content: "";
    grid-row: 1;
    height: 7px;
    background-repeat: no-repeat;
}

.card-solo::before {
    grid-column: 1;
    margin-left: var(--gutter-lg);
    background-image:
        radial-gradient(circle, var(--color-gray-14) 2.5px, transparent 3px),
        linear-gradient(to right, transparent, var(--color-gray-16));
    background-position: right center, left center;
    background-size: 7px 7px, calc(100% - 1.2rem) 1px;
}

.card-solo::after {
    grid-column: 3;
    margin-right: var(--gutter-lg);
    background-image:
        radial-gradient(circle, var(--color-gray-14) 2.5px, transparent 3px),
        linear-gradient(to left, transparent, var(--color-gray-16));
    background-position: left center, right center;
    background-size: 7px 7px, calc(100% - 1.2rem) 1px;
}

@media screen and (max-width: 800px) {
    .card-solo {
        grid-template-columns: minmax(0, 1fr);
    }
    .card-grid.card-solo > .column {
        grid-column: 1;
    }
    .card-solo::before,
    .card-solo::after {
        display: none;
    }
}

/* -------------------------------------------------------------------
 * ## faq
 * native <details>, no script needed
 * ------------------------------------------------------------------- */
.faq {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--vspace-1);
}

.faq__item {
    border-top: 1px solid var(--color-border);
}

.faq__item summary {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    gap: 2.4rem;
    padding: var(--vspace-0_75) 0;
    font-family: var(--font-2);
    font-weight: 500;
    font-size: var(--text-md);
    line-height: var(--vspace-1);
    color: var(--color-white);
    list-style: none;
    cursor: pointer;
    -webkit-transition: color var(--duration) ease-in-out;
    transition: color var(--duration) ease-in-out;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary:hover {
    color: var(--color-accent-text);
}

.faq__icon {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 1.4rem;
    height: 1.4rem;
    margin-top: .9rem;
    position: relative;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-1);
    -webkit-transition: -webkit-transform var(--duration) var(--ease-out);
    transition: transform var(--duration) var(--ease-out);
}

.faq__icon::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.faq__item[open] .faq__icon::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.faq__answer {
    padding: 0 4rem var(--vspace-1) 0;
}

.faq__answer p {
    max-width: 62ch;
    margin-bottom: 0;
}

@media (prefers-reduced-motion: no-preference) {
    @supports (interpolate-size: allow-keywords) {
        :root {
            interpolate-size: allow-keywords;
        }
        .faq__item::details-content {
            block-size: 0;
            overflow: clip;
            transition: block-size .35s var(--ease-out), content-visibility .35s allow-discrete;
        }
        .faq__item[open]::details-content {
            block-size: auto;
        }
    }
}

@media screen and (max-width: 600px) {
    .faq__item summary {
        font-size: var(--text-size);
        line-height: calc(0.875 * var(--space));
    }
    .faq__icon {
        margin-top: .7rem;
    }
    .faq__answer {
        padding-right: 0;
    }
}


/* -------------------------------------------------------------------
 * ## booking
 * ------------------------------------------------------------------- */

/* the form is narrower than the intro above it (64rem visible) and
 * leaves more room before the red email band below
 */
.s-booking {
    padding-bottom: calc(5 * var(--space));
}

.s-booking .row.item-list {
    max-width: calc(64rem + 2 * var(--gutter-lg));
}

.booking-form {
    /* 4.8rem visible on every side, leading of the first and last
     * lines included */
    padding: 4.2rem 4.8rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-gray-19);
}

/* dot accent
 * the Flare dot grid, used sparingly: it peeks out from behind the
 * corner of a few panels that lead to the booking (first-client card,
 * recommended offer, booking form). The host column isolates so the
 * dots sit under the panel but above the section background.
 */
.dots-host {
    isolation: isolate;
}

.dots {
    position: relative;
}

.dots::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 24rem;
    height: 14.4rem;
    background-image: url(../images/dots.svg);
    opacity: .25;
    pointer-events: none;
}

.dots--top-left::before {
    top: -4.8rem;
    left: -4.8rem;
}

.dots--bottom-left::before {
    bottom: -4.8rem;
    left: -4.8rem;
}

.dots--bottom-right::before {
    bottom: -4.8rem;
    right: -4.8rem;
}

.s-proof,
.s-offers,
.s-booking {
    overflow-x: clip;
}

@media screen and (max-width: 600px) {
    .dots::before {
        width: 14.4rem;
        height: 9.6rem;
    }
    .dots--top-left::before {
        top: -2.4rem;
        left: -2.4rem;
    }
    .dots--bottom-left::before {
        bottom: -2.4rem;
        left: -2.4rem;
    }
    .dots--bottom-right::before {
        bottom: -2.4rem;
        right: -2.4rem;
    }
}

.booking-form__row {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--gutter-lg);
}

.booking-form .btn {
    margin: var(--vspace-0_25) 0 var(--vspace-0_25);
}

/* typed examples in the empty "cible" field (js/main.js): placeholder
 * colour and the field's own type, with the headline's caret
 */
.typed-field {
    position: relative;
}

.typed-hint {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-style: solid;
    border-color: transparent;
    color: var(--color-placeholder);
    white-space: pre-wrap;
    pointer-events: none;
}

.typed-hint__caret {
    display: inline-block;
    width: 1px;
    height: 1.15em;
    margin-left: 1px;
    vertical-align: -.2em;
    background-color: currentColor;
}

.typed-hint.is-idle .typed-hint__caret {
    -webkit-animation: caretBlink 1.06s steps(1) infinite;
    animation: caretBlink 1.06s steps(1) infinite;
}

html.no-js .typed-hint {
    display: none;
}

/* privacy note, set right under the full-width button */
.booking-form .form-note {
    text-align: center;
}

.booking-form .btn .btn__arrow {
    display: inline-block;
    -webkit-transition: -webkit-transform var(--duration) var(--ease-out);
    transition: transform var(--duration) var(--ease-out);
}

.booking-form .btn:hover .btn__arrow,
.booking-form .btn:focus .btn__arrow {
    -webkit-transform: translateX(.4rem);
    transform: translateX(.4rem);
}

.form-note {
    font-size: 1.4rem;
    line-height: var(--vspace-0_75);
    color: var(--color-text-light);
    margin-bottom: 0;
}

.form-note + .form-note {
    margin-top: var(--vspace-0_25);
}

.form-status {
    display: none;
    font-size: 1.5rem;
    line-height: var(--vspace-0_75);
    margin-bottom: var(--vspace-0_5);
}

.form-status.is-visible {
    display: block;
}

.form-status--error {
    color: var(--color-error);
}

/* success panel, shown once the request is sent
 */
.booking-success {
    display: none;
}

.booking-form.is-sent form {
    display: none;
}

.booking-form.is-sent .booking-success {
    display: block;
    -webkit-animation: heroRise var(--duration-slow) var(--ease-out) both;
    animation: heroRise var(--duration-slow) var(--ease-out) both;
}

.booking-success__icon {
    display: block;
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: var(--vspace-0_75);
}

/* clearly marked slot for content still to be supplied
 */
.to-supply {
    display: block;
    border: 1px dashed var(--color-gray-13);
    padding: var(--vspace-0_5) var(--vspace-0_75);
    margin-bottom: var(--vspace-1);
    font-family: var(--font-mono);
    font-size: 1.4rem;
    line-height: var(--vspace-0_75);
    color: var(--color-gray-5);
}

@media screen and (max-width: 600px) {
    .booking-form {
        padding: 1.8rem 2.4rem;
    }
    .booking-form__row {
        grid-template-columns: 1fr;
    }
}



/* ===================================================================
 * # contact
 *
 * ------------------------------------------------------------------- */
.s-contact {
    background-color: var(--color-1);
    padding-top: var(--vspace-3);
    padding-bottom: var(--vspace-2);
}

.s-contact__top .display-1 {
    margin-bottom: 0;
}

/* home page: the sentence always holds on one line (its size --p
 * follows the width); the address is 1.5 times smaller, never below
 * 12px for legibility and never larger than the sentence
 */
.s-contact--swap,
.s-contact--legal {
    --p: min(4rem, calc((92vw - 4rem) / 21.6));
}

.s-contact--swap .s-contact__top .display-1 {
    font-size: var(--p);
    line-height: 1.2;
    white-space: nowrap;
}

/* legal pages: same sentence and address sizes as the home page, the
 * longer sentence may wrap
 */
.s-contact--legal .s-contact__top .display-1 {
    font-size: var(--p);
    line-height: 1.2;
}

.s-contact--swap .s-contact__email,
.s-contact--legal .s-contact__email {
    font-size: min(var(--p), max(1.2rem, calc(var(--p) / 1.5)));
    line-height: 1.2;
    letter-spacing: 0;
}

/* white instead of the template's black: black on color-1 is 4:1,
 * below AA for 15px text
 */
.s-contact__top .h6 {
    color: var(--color-white);
    margin-top: 0;
    margin-bottom: var(--vspace-1);
}

.s-contact__email {
    margin-top: var(--vspace-1);
    margin-bottom: 0;
    font-family: var(--font-2);
    font-size: calc(var(--text-size) * 3.75);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1;
    overflow-wrap: anywhere;
}

.s-contact__email a {
    color: white;
    border-bottom: 2px solid transparent;
}

.s-contact__email a:hover,
.s-contact__email a:focus {
    border-bottom: 2px solid white;
}


/* -------------------------------------------------------------------
 * responsive:
 * contact
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-contact__email {
        font-size: 6vw;
    }
    .s-contact--swap .s-contact__email,
    .s-contact--legal .s-contact__email {
        font-size: min(var(--p), max(1.2rem, calc(var(--p) / 1.5)));
    }
}

@media screen and (max-width: 400px) {
    .s-contact {
        padding-top: var(--vspace-2_5);
    }
}



/* ===================================================================
 * # footer
 * three centered blocks of equal width (identity, site links, booking
 * and legal links) above a thin rule and the copyright line
 * ------------------------------------------------------------------- */
.s-footer {
    padding-top: 0;
    padding-bottom: var(--vspace-1);
    color: white;
}

.s-footer a {
    color: white;
}

.s-footer .h6 {
    color: white;
    margin-top: 0;
}

.s-footer__main {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    padding-top: var(--vspace-1_5);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.s-footer__main > .column {
    -ms-flex: 1 1 0%;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}


/* -------------------------------------------------------------------
 * ## footer block
 * ------------------------------------------------------------------- */
.s-footer__block {
    font-size: 1.7rem;
    line-height: calc(0.875 * var(--space));
    text-align: center;
}

.s-footer__block .h6 {
    margin-bottom: var(--vspace-0_5);
}

.s-footer__block p {
    margin-bottom: var(--vspace-0_25);
}

/* always black; on hover only its edge lights up */
.s-footer__block--cta .btn {
    background-color: var(--color-black);
    border: .2rem solid var(--color-black);
    color: white;
    margin: 0 0 var(--vspace-0_75);
    padding: 0 calc(1.25 * var(--space));
}

.s-footer__block--cta .btn:hover, .s-footer__block--cta .btn:focus {
    background-color: var(--color-black);
    border: 0.2rem solid rgba(255, 255, 255, 0.75);
    color: white;
}


/* -------------------------------------------------------------------
 * ## footer list
 * ------------------------------------------------------------------- */
.s-footer__list {
    list-style: none;
    margin: 0;
}

.s-footer__list li {
    padding-left: 0;
    margin-bottom: 0;
}

.s-footer__list a,
.s-footer__block p a {
    border-bottom: 1px solid transparent;
}

.s-footer__list a:hover,
.s-footer__list a:focus,
.s-footer__block p a:hover,
.s-footer__block p a:focus {
    border-bottom-color: white;
}

.s-footer__legal {
    list-style: none;
    margin: 0;
    font-size: var(--text-sm);
    line-height: var(--vspace-1);
}

.s-footer__legal li {
    display: inline-block;
    padding-left: 0;
    margin: 0;
}

/* small dot between the legal links */
.s-footer__legal li + li::before {
    content: "·";
    display: inline-block;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.s-footer__legal a {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}

.s-footer__legal a:hover,
.s-footer__legal a:focus {
    border-bottom: 1px solid white;
}


/* -------------------------------------------------------------------
 * ## copyright
 * ------------------------------------------------------------------- */
.s-footer__bottom {
    margin-top: var(--vspace-1);
}

.s-footer__bottom > .column {
    padding-top: var(--vspace-0_5);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.ss-copyright {
    z-index: 2;
    font-size: 1.4rem;
    font-weight: 300;
    position: relative;
}

.ss-copyright span {
    display: inline-block;
}

.ss-copyright span::after {
    content: "|";
    display: inline-block;
    padding: 0 .8rem 0 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.ss-copyright span:last-child::after {
    display: none;
}


/* -------------------------------------------------------------------
 * ## go top
 * ------------------------------------------------------------------- */
.ss-go-top {
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: fixed;
    bottom: var(--vspace-1);
    right: 4rem;
}

.ss-go-top a {
    text-decoration: none;
    border: 0 none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 6.4rem;
    width: 6.4rem;
    border-radius: 50%;
    background-color: var(--color-gray-19) !important;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: relative;
}

.ss-go-top a:hover,
.ss-go-top a:focus {
    background-color: var(--color-1) !important;
}

.ss-go-top svg {
    width: 1.6rem;
    height: 1.6rem;
}

.ss-go-top.link-is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* -------------------------------------------------------------------
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
    .s-footer__main {
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -ms-flex-align: stretch;
        -webkit-box-align: stretch;
        align-items: stretch;
    }
    .s-footer__main > .column {
        -ms-flex: none;
        -webkit-box-flex: 0;
        flex: none;
        margin-bottom: var(--vspace-1);
    }
    .s-footer__main > .column:last-child {
        margin-bottom: 0;
    }
    .s-footer__list li {
        display: inline-block;
        margin: 0 .8rem;
    }
}

@media screen and (max-width: 800px) {
    .ss-go-top a {
        height: 6rem;
        width: 6rem;
    }
}

@media screen and (max-width: 600px) {
    .ss-go-top {
        right: 2.4rem;
        bottom: 2.4rem;
    }
    .ss-copyright span {
        display: block;
    }
    .ss-copyright span::after {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .s-footer__block {
        font-size: 1.6rem;
    }
    .s-footer__block--cta .btn {
        width: 100%;
        padding: 0;
    }
    .ss-go-top a {
        height: 4.8rem;
        width: 4.8rem;
    }
    .ss-copyright {
        font-size: 1.3rem;
    }
}



/* ===================================================================
 * # legal page
 *
 * ------------------------------------------------------------------- */
.s-page-intro {
    background-color: #121417;
    padding-top: calc(8.8rem + var(--vspace-3));
    padding-bottom: var(--vspace-2);
    border-bottom: 1px solid var(--color-border);
}

.s-page-intro h1 {
    font-size: var(--text-display-1);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--color-white);
    max-width: 20ch;
    margin-top: 0;
    margin-bottom: var(--vspace-0_75);
}

.s-page-intro .lead {
    max-width: 36em;
}

.s-legal {
    background-color: var(--color-bg);
    padding-top: var(--vspace-3);
    padding-bottom: var(--vspace-2);
    border-bottom: 1px solid var(--color-border);
}

.s-legal .display-1 {
    margin-bottom: var(--vspace-1);
}

.legal-list {
    margin: 0 0 var(--vspace-1);
    border-bottom: 1px solid var(--color-border);
}

.legal-list dt {
    font-family: var(--font-2);
    font-weight: 600;
    font-size: 1.2rem;
    line-height: var(--vspace-0_75);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-text-light);
    border-top: 1px solid var(--color-border);
    padding-top: var(--vspace-0_5);
    margin: 0 0 var(--vspace-0_25);
}

.legal-list dd {
    font-size: 1.6rem;
    line-height: calc(0.875 * var(--space));
    color: var(--color-gray-4);
    max-width: 64ch;
    margin: 0 0 var(--vspace-0_5);
}

.legal-list .to-supply {
    display: inline;
    margin: 0;
    padding: .2rem .6rem;
}

@media screen and (max-width: 600px) {
    .s-page-intro h1 {
        font-size: var(--text-xxxl);
    }
}

/* privacy policy (confidentialite.html)
 * long text in a single column at a comfortable measure
 */
.policy-date {
    font-size: 1.4rem;
    line-height: var(--vspace-0_75);
    color: var(--color-text-light);
    margin: var(--vspace-0_5) 0 0;
}

.s-policy {
    background-color: var(--color-bg);
    padding-top: var(--vspace-3);
    padding-bottom: var(--vspace-3);
}

.policy {
    max-width: 68ch;
}

.policy__preamble {
    font-size: var(--text-md);
    line-height: 1.6;
    color: var(--color-gray-4);
    margin: 0 0 var(--vspace-1);
}

.policy h2 {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: baseline;
    -webkit-box-align: baseline;
    align-items: baseline;
    font-family: var(--font-2);
    font-weight: 600;
    font-size: var(--text-lg);
    line-height: 1.3;
    color: var(--color-white);
    margin: var(--vspace-2) 0 var(--vspace-0_75);
    padding-top: var(--vspace-1);
    border-top: 1px solid var(--color-border);
    scroll-margin-top: 10rem;
}

.policy__num {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 4.8rem;
    font-size: 1.4rem;
    letter-spacing: .12em;
    color: var(--color-1-light);
}

.policy h3 {
    font-family: var(--font-2);
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 1.4;
    color: var(--color-gray-2);
    margin: var(--vspace-1) 0 var(--vspace-0_25);
}

.policy p,
.policy ul.disc {
    font-size: 1.6rem;
    line-height: calc(0.875 * var(--space));
    color: var(--color-gray-4);
    margin-bottom: var(--vspace-0_75);
}

.policy ul.disc li {
    color: var(--color-text);
}

.policy p.policy__basis {
    font-size: 1.4rem;
    line-height: var(--vspace-0_75);
    color: var(--color-text-light);
    margin-top: calc(-1 * var(--vspace-0_5));
}

.policy strong {
    font-weight: 700;
    color: var(--color-gray-2);
}

.policy .to-supply {
    display: inline;
    margin: 0;
    padding: .2rem .6rem;
}

.policy-card {
    margin: 0 0 var(--vspace-0_75);
    padding: var(--vspace-0_75) var(--vspace-1);
    background-color: var(--color-gray-19);
    border: 1px solid var(--color-border);
    border-left: 2px solid var(--color-1);
    display: -ms-grid;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: .6rem var(--vspace-1);
}

.policy-card dt {
    font-family: var(--font-2);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 2.6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin: 0;
}

.policy-card dd {
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: var(--color-white);
    margin: 0;
}

@media screen and (max-width: 600px) {
    .policy-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .policy-card dd + dt {
        margin-top: .8rem;
    }
    .policy__num {
        width: 3.6rem;
    }
}



/* ===================================================================
 * # print
 * ------------------------------------------------------------------- */
@media print {
    html.js [data-reveal],
    html.js .s-hero [data-intro] {
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
    }
    .s-header,
    .ss-go-top,
    .skip-link {
        display: none !important;
    }
}



/* ===================================================================
 * # reduced motion
 * the tools marquee is deliberately NOT covered here: it is kept exactly
 * as in the draft (see the summary for the recommendation).
 * ------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html.js [data-reveal],
    html.js .s-hero [data-intro],
    .booking-form.is-sent .booking-success {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -webkit-animation: none;
        animation: none;
        -webkit-transition: none;
        transition: none;
    }
    .hero-title__caret {
        display: none;
    }
    .s-header.offset,
    .s-header__nav a::after,
    .card,
    .link-more span,
    .faq__icon::before,
    .faq__icon::after,
    .ss-go-top {
        -webkit-transition: none;
        transition: none;
    }
}
