:root {
    --container: 1380px;
    --gutter: 60px;
    --cream: #ebe5da;
    --paper: #f8f2e7;
    --ink: #111111;
    --purple: #5b2db1;
    --purple-deep: #4e178f;
    --pink: #ff1699;
    --cyan: #06c7ee;
    --blue: #225fe2;
    --white: #ffffff;
    --font-title: "Anton SC", sans-serif;
    --font-display: "Bangers", system-ui;
    --font-body: "Comic Neue", cursive;
	--font-classic: "Roboto", sans-serif;
}

#coworking,
#services,
#tarifs,
#contact {
    scroll-margin-top: 65px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

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

.shell {
    width: 100%;
    max-width: calc(var(--container) + (var(--gutter) * 2));
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.shell--header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}
.shell--narrow { max-width: calc(1240px + (var(--gutter) * 2)); }

.section-title,
.offer-title,
.offer-price,
.offer-from,
.main-nav a,
.button,
.brand span,
.news-card h3,
.contact-title {
    text-transform: none;
}

.section-title {
    margin: 0 0 32px;
    font-family: var(--font-title);
    font-size: clamp(34px, 2.95vw, 54px);
	font-weight: 400;
    line-height: 1.1;
    color: var(--purple);
    text-align: center;
    letter-spacing: .006em;
}
.section-title--left { text-align: left; }
.section-title--white { color: #fff; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding-top: 17px;
    transition: background .2s ease, padding .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
    background: rgba(61, 12, 112, .94);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
    padding-top: 10px;
    padding-bottom: 10px;
}
.brand {
    display: inline-grid;
    gap: 6px;
}
.brand img {
    width: clamp(170px, 12.5vw, 230px);
    filter: drop-shadow(3px 4px 0 rgba(0,0,0,.18));
}
.site-header.is-scrolled .brand img {
    width: clamp(170px, 11vw, 200px);
}
.brand span {
    font-family: var(--font-title);
    color: #fff;
    font-size: clamp(10px, .7vw, 13px);
	font-weight: 400;
    line-height: 1;
    letter-spacing: .1em;
    text-shadow: none;
}
.site-header.is-scrolled .brand span {
    display: none;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2vw, 34px);
    padding-top: 4px;
}
.main-nav a {
    font-family: var(--font-title);
    font-weight: 400;
	font-size: clamp(13px, 1vw, 17px);
    letter-spacing: .1em;
    text-shadow: none;
}
.main-nav a:not(.button--contact) {
    color: #fff;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: #ffe767; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px 7px;
    border: 3px solid currentColor;
    transform: skew(-7deg);
    box-shadow: 4px 4px 0 rgba(0,0,0,.28);
    font-family: var(--font-title);
    font-size: 14px;
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover,
.button:focus-visible {
    transform: translate(-2px, -2px) skew(-7deg);
    box-shadow: 6px 6px 0 rgba(0,0,0,.28);
}
.button--contact {
    font-size: clamp(14px, 1.25vw, 20px) !important;
	letter-spacing: .05em !important;
	color: var(--pink);
    background: rgba(10, 0, 18, .18);
}
.button--submit {
    color: #fff;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 0.025em;
    background: var(--pink);
    border-color: var(--pink);
    margin-left: auto;
	float: right;
	cursor: pointer;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.menu-toggle .menu-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close { display: block; }

.hero-section {
    position: relative;
    background: #6420c7;
}
.hero-frame--full {
    width: 100%;
    aspect-ratio: 1920 / 760;
    min-height: 410px;
    max-height: 760px;
    overflow: hidden;
}
.hero-frame--full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.intro-section {
    padding-top: clamp(40px, 3.6vw, 62px);
    padding-bottom: clamp(26px, 2.2vw, 38px);
}
.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 34px 54px;
    align-items: start;
}
.intro-copy { min-width: 0; }
.intro-copy .section-title {
    max-width: 720px;
	text-transform: uppercase;
	font-weight: 700;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 296px));
    gap: 17px 16px;
    max-width: 608px;
}
.feature-card {
    min-height: 150px;
    display: grid;
    justify-items: center;
    align-content: center;
    padding: 16px 12px 14px;
    text-align: center;
	border-radius: 6px;
    background: rgba(255,255,255,.48);
}
.feature-card img {
    width: 64px;
    margin-bottom: 8px;
}
.feature-card p {
    margin: 0;
    max-width: 200px;
    font-size: 16px;
    line-height: 1.1;
}
.burst-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    justify-self: end;
    margin-top: 38px;
}
.burst-card img { width: 100%; }
.burst-card__content {
    position: absolute;
    top: 47%;
    left: 49.5%;
    width: 70%;
    text-align: center;
    transform: translate(-55%, -65%) rotate(0);
}
.burst-card__content strong {
    display: block;
    color: var(--purple);
    font-family: var(--font-display);
    font-size: clamp(38px, 3.3vw, 60px);
    line-height: .8;
    font-style: italic;
}
.burst-card__content span {
    display: block;
    color: var(--purple);
    margin: 4px 0 14px;
    font-size: clamp(13px, .86vw, 18px);
    line-height: .95;
}
.burst-card__content p {
    margin: 0;
    font-size: clamp(12px, .82vw, 16px);
    line-height: 1.35;
}

.image-section--spaced {
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}
.image-frame--workspace { margin-top: 4px; }
.image-frame img,
.fun-frame img {
    width: 100%;
    height: auto;
}

.pricing-section {
    position: relative;
    z-index: 1;
    margin-top: clamp(-300px, -12.5vw, -200px);
    color: var(--purple);
    padding-top: calc(26px + clamp(200px, 18vw, 300px));
    padding-bottom: 150px;
    overflow: hidden;
    background: var(--cyan);
}

.pricing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        var(--cyan)
        url("../assets/BG_blue.svg")
        center top / cover
        no-repeat;
    pointer-events: none;
}

.pricing-section > * {
    position: relative;
    z-index: 1;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 60px;
    align-items: normal;
}
.pricing-offer {
    display: grid;
    align-content: center;
}
.pricing-offer--left {
    padding-right: 60px;
    border-right: 1px solid rgba(90, 46, 176, .24);
}
.pricing-offer--right {
    padding-left: 60px;
    border-left: 1px solid rgba(90, 46, 176, .24);
}
.offer-title {
    margin: 0;
    color: var(--purple);
    font-family: var(--font-title);
    font-size: clamp(28px, 2.05vw, 38px);
	font-weight: 400;
    line-height: .94;
}
.offer-title small {
    display: block;
    margin-top: 2px;
    font-size: .6em;
    color: #c71278;
	font-family: var(--font-body);
	font-weight: 700!important;
}
.offer-from {
    margin: 18px 0 8px;
    font-size: 12px;
    line-height: 1;
}
.offer-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin: 0;
    color: var(--purple);
    font-family: var(--font-title);
    font-style: italic;
    line-height: .8;
}
.offer-price strong {
    font-size: clamp(48px, 4vw, 74px);
    letter-spacing: .02em;
}
.offer-price span {
    padding-bottom: 7px;
    font-size: 16px;
}
.benefits-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
	color: #000;
}
.benefits-list li {
    font-family: var(--font-classic);
	font-weight: 500;
	position: relative;
    margin: 0 0 10px;
    padding-left: 32px;
    font-size: 20px;
	color: #000;
    line-height: 1.1;
}
.benefits-list li::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 0;
    width: 22px;
    height: 22px;
    background-image:  url("../assets/circle-check.svg");
	background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.image-section--events {
    padding-top: 80px;
    padding-bottom: 30px;
}
.dual-captions {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    padding-top: 15px;
    padding-bottom: 30px;
    gap: 160px;
}
.dual-captions p {
    margin: 0;
    font-size: 22px;
    line-height: 1.22;
}

.fun-section {
    position: relative;
    z-index: 1;
    margin-top: 26px;
    padding-top: 80px;
    padding-bottom: 30px;
    overflow: hidden;

    background: linear-gradient(
        to bottom,
        #c281ff 0%,
        #a45cf0 50%,
        #8025d8 74.9%,
        #ebe5da 75%,
        #ebe5da 100%
    );
}

.fun-section::before {
    content: "";
    position: absolute;
    inset: 0 0 25% 0;
    z-index: 0;
    pointer-events: none;

    background: url("../assets/BG_pink.svg") center top / cover no-repeat;
}

.fun-section > * {
    position: relative;
    z-index: 1;
}
.fun-section .section-title { margin-bottom: 48px; }
.fun-frame {
    width: 100%;
    max-width: 1234px;
    margin: 0 auto;
}

.image-section--offices {
    padding-top: 100px;
    padding-bottom: 140px;
}
.image-frame--offices {
    width: 100%;
    max-width: 1232px;
    margin: 0 auto;
}

.news-section {
    position: relative;
    z-index: 1;
    overflow: hidden;

    background: var(--blue);

    padding-top: 90px;
    padding-bottom: 120px;
}

.news-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    /*background: url("../assets/BG_darkblue.svg") center top / cover no-repeat;*/
}

.news-section > * {
    position: relative;
    z-index: 1;
}
.news-section .section-title { margin-bottom: 60px; font-weight: 400;}
.news-card {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
    min-height: 236px;
    background: var(--cream);
}
.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-card__body {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 18px;
}
.news-card h3 {
    margin: 0 0 28px;
    font-family: var(--font-classic);
    font-size: clamp(26px, 2vw, 36px);
    line-height: 1;
    color: #000;
}
.news-card p {
    margin: 0;
	font-family: var(--font-classic);
	font-weight: 400;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.34;
}
.news-card a {
    margin-top: auto;
    align-self: flex-end;
    font-size: 14px;
}

.contact-section {
    position: relative;
    z-index: 1;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        rgba(92, 3, 182, .96),
        rgba(116, 2, 174, .98)
    );

    color: #fff;
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background: url("../assets/BG_purple.svg") center top / cover no-repeat;
}

.contact-section > * {
    position: relative;
    z-index: 1;
}
.contact-title {
    margin: 0 0 60px;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(24px, 2vw, 40px);
	font-weight: 400;
    line-height: 1;
    letter-spacing: .02em;
}
.form-feedback {
    max-width: 1080px;
    margin: 0 auto 18px;
    padding: 14px 16px;
    border: 3px solid #fff;
    background: rgba(255,255,255,.12);
}
.form-feedback ul { margin: 0; padding-left: 20px; }
.form-feedback--success { background: rgba(0,0,0,.18); }
.contact-form {
    max-width: 1080px;
    margin: 0 auto;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 14px 18px;
    align-items: start;
}
.contact-form label {
    display: grid;
    gap: 6px;
}
.contact-form span {
    font-size: 12px;
    line-height: 1;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 34px;
    padding: 8px 10px;
    border: 0;
	border-radius: 4px;
    background: #f3eee4;
    color: #222;
}
.contact-form textarea { min-height: 89px; resize: vertical; }
.message-field {
    grid-column: 3;
    grid-row: 1 / span 2;
}
.button--submit {
    min-width: 98px;
    margin-top: 18px;
}

@media (max-width: 1040px) {
    :root { --gutter: 32px; }
    .intro-grid,
    .pricing-grid,
    .dual-captions,
    .news-card,
    .form-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .feature-card p { max-width: 220px; }
    .burst-card { justify-self: start; margin-top: 6px; }
    .pricing-offer--right, .pricing-offer--left,
    .message-field {
        padding-left: 0;
		padding-right: 0;
        border-left: 0;
		border-right: 0;
        grid-column: auto;
        grid-row: auto;
    }
	.pricing-offer--left {
		padding-top: 15px;
	}
	.pricing-offer--right {
		padding-top: 30px;
	}
}

@media (max-width: 1040px) {
    :root { --gutter: 20px; }
    body { font-size: 16px; }
    .site-header { padding-top: 12px; }
    .shell--header { align-items: center; }
    .brand img { width: 160px; }
    .site-header.is-scrolled .brand img { width: 145px; }
    .brand span { font-size: 9px; }
    .menu-toggle { display: block; position: relative; z-index: 130; }
    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 90;

        min-height: 100vh;
        min-height: 100dvh;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        transform: translate3d(0, -100%, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            transform 0.35s ease,
            opacity 0.25s ease,
            visibility 0s linear 0.35s;

        background: rgba(59, 12, 113, 0.97);
    }
    .main-nav.is-open {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transition:
            transform 0.35s ease,
            opacity 0.25s ease,
            visibility 0s;
    }
    .main-nav a { font-size: 24px!important; }
    .button--contact { font-size: 18px; }
    .hero-frame--full {
        aspect-ratio: 420 / 300;
        min-height: 0;
        max-height: none;
    }
    .hero-frame--full img { object-position: 15% top; }
    .intro-section { padding-top: 28px; padding-bottom: 24px; }
    .section-title { margin-bottom: 20px; font-size: clamp(28px, 8vw, 42px); }
    .intro-copy .section-title { max-width: none; }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .feature-card { min-height: 100px; }
    .feature-card img { width: 34px; }
    .feature-card p { font-size: 11px; max-width: 120px; }
    .burst-card { max-width: 300px; margin: 8px auto 0; }
    .pricing-section {
        margin-top: -72px;
        padding-top: 102px;
        padding-bottom: 68px;
    }
    .pricing-grid { gap: 18px; }
    .offer-title { font-size: clamp(24px, 7vw, 34px); text-align: center; }
	.offer-from { text-align: center; }
    .offer-price strong { font-size: clamp(44px, 13vw, 68px); }
    .offer-price span { font-size: 14px; padding-bottom: 5px; }
    .benefits-list li { font-size: 14px; line-height: 1.25; }
    .image-section--events,
    .news-section { padding-top: 80px; padding-bottom: 100px; }
	.contact-section { padding-top: 80px; padding-bottom: 90px; }
	.fun-section { padding-top: 80px; padding-bottom: 70px; }
	.image-section--offices { padding-top: 0px; padding-bottom: 120px; }
    .dual-captions { gap: 12px; }
    .news-card__body { padding: 18px 16px 16px; }
    .contact-title { margin-bottom: 20px; }
    .button--submit { width: 100%; }
	.pricing-offer.list {
		order: +1;
		padding-top: 30px;
	}
	.benefits-list li::before {
		left: 2px;
		top: -3px;
	}
	.offer-price {
		margin: auto;
	}
}

@media (max-width: 1040px) {
    body.menu-open .site-header {
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        padding-top: 12px;
        padding-bottom: 0;
    }

    body.menu-open .site-header .brand img {
        width: 160px;
    }

    body.menu-open .site-header .brand span {
        display: block;
    }

    body.menu-open .main-nav {
        transform: translateY(0);
    }
}