:root {
    --ink: #17151a;
    --ink-soft: #5e5b64;
    --paper: #fbf8f5;
    --paper-2: #f2eff0;
    --fuchsia: #d91f73;
    --fuchsia-dark: #a71355;
    --pink: #f08ab4;
    --pink-soft: #fff0f6;
    --grey: #8f8b93;
    --grey-soft: #e7e3e5;
    --violet: #d91f73;
    --violet-dark: #a71355;
    --gold: #d7a13d;
    --blue: #8c8990;
    --green: #5b7464;
    --line: rgba(23, 21, 26, .11);
    --shadow: 0 24px 70px rgba(25, 20, 24, .10);
    --radius: 26px;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: radial-gradient(circle at 8% 9%, rgba(240, 138, 180, .10), transparent 24rem), radial-gradient(circle at 91% 17%, rgba(217, 31, 115, .055), transparent 28rem), var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: .32;
    background-image: radial-gradient(rgba(23, 21, 43, .22) .6px, transparent .6px);
    background-size: 19px 19px;
    mask-image: linear-gradient(to bottom, #000, transparent 62%);
}

a {
    color: inherit;
}

.rich-copy a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

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

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

.section-pad {
    width: min(var(--max), calc(100% - 56px));
    margin-inline: auto;
}

.site-header {
    width: min(var(--max), calc(100% - 56px));
    margin: 20px auto 0;
    min-height: 74px;
    padding: 12px 16px 12px 18px;
    border: 1px solid rgba(23, 21, 43, .08);
    border-radius: 24px;
    background: rgba(251, 247, 240, .78);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 14px;
    z-index: 20;
    box-shadow: 0 14px 50px rgba(23, 21, 43, .06);
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    font-weight: 760;
    letter-spacing: -.03em;
}

.brand-monogram {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--paper);
    background: linear-gradient(145deg, #111014, #2a2429);
    font-size: .92rem;
    position: relative;
}

.brand-monogram::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fuchsia);
    position: absolute;
    right: 6px;
    top: 6px;
}

.brand-name {
    font-size: 1.02rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    text-decoration: none;
    font-size: .9rem;
    font-weight: 650;
    padding: 11px 14px;
    border-radius: 13px;
    color: var(--ink-soft);
    transition: .2s ease;
}

.main-nav a:hover {
    background: rgba(111, 91, 211, .09);
    color: var(--violet-dark);
}

.menu-toggle {
    display: none;
}

.hero {
    min-height: 760px;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 70px;
    align-items: center;
    padding-top: 92px;
    padding-bottom: 106px;
}

.hero-copy {
    max-width: 710px;
}

.hero-kicker,
.section-label {
    margin: 0 0 18px;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 830;
    color: var(--fuchsia-dark);
}

.hero h1 {
    margin: 0;
    max-width: 800px;
    font-size: clamp(2.55rem, 4.05vw, 4.25rem);
    line-height: 1.015;
    letter-spacing: -.052em;
    font-weight: 790;
    text-wrap: balance;
}

.hero-text {
    margin: 28px 0 0;
    max-width: 660px;
    font-size: clamp(1.08rem, 1.6vw, 1.33rem);
    line-height: 1.7;
    color: var(--ink-soft);
}

.hero-text> :first-child {
    margin-top: 0;
}

.hero-text> :last-child {
    margin-bottom: 0;
}

.hero-text p {
    margin: 0 0 .9em;
}

.hero-text h3,
.hero-text h4 {
    margin: 1.2em 0 .45em;
    color: var(--ink);
    line-height: 1.25;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 760;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: white;
    background: var(--ink);
    box-shadow: 0 12px 28px rgba(23, 21, 43, .16);
}

.button-primary:hover {
    box-shadow: 0 17px 36px rgba(23, 21, 43, .22);
}

.button-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, .45);
}

.button-light {
    background: var(--paper);
    color: var(--ink);
}

.hero-object {
    min-height: 520px;
    position: relative;
    display: grid;
    place-items: center;
}

.idea-core {
    width: 250px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    color: white;
    background: linear-gradient(145deg, #151318, #35252d);
    box-shadow: 0 30px 90px rgba(217, 31, 115, .18);
    z-index: 4;
}

.idea-core .core-small {
    font-size: .85rem;
    opacity: .7;
}

.idea-core strong {
    font-size: 2.1rem;
    color: var(--pink);
    line-height: 1;
}

.idea-core span:last-child {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.16;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(60, 55, 60, .20);
    border-radius: 50%;
    animation: spin 24s linear infinite;
}

.orbit span {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    top: 50%;
    right: -7px;
    background: var(--fuchsia);
    box-shadow: 0 0 0 7px rgba(217, 31, 115, .08);
}

.orbit-a {
    width: 340px;
    height: 340px;
}

.orbit-b {
    width: 430px;
    height: 430px;
    animation-direction: reverse;
    animation-duration: 31s;
    transform: rotate(18deg);
}

.orbit-b span {
    background: var(--pink);
}

.orbit-c {
    width: 515px;
    height: 515px;
    animation-duration: 39s;
    transform: rotate(-22deg);
}

.orbit-c span {
    background: var(--blue);
}

.float-tag {
    position: absolute;
    z-index: 5;
    padding: 9px 13px;
    border: 1px solid rgba(23, 21, 43, .09);
    border-radius: 999px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 10px 28px rgba(23, 21, 43, .08);
    backdrop-filter: blur(10px);
    font-size: .78rem;
    font-weight: 780;
    animation: bob 4s ease-in-out infinite;
}

.tag-one {
    top: 13%;
    left: 8%;
}

.tag-two {
    top: 25%;
    right: 4%;
    animation-delay: -.9s;
}

.tag-three {
    bottom: 17%;
    right: 7%;
    animation-delay: -1.7s;
}

.tag-four {
    bottom: 12%;
    left: 7%;
    animation-delay: -2.5s;
}

.manifesto {
    margin-top: 15px;
    padding-top: 85px;
    padding-bottom: 85px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.manifesto-side {
    display: grid;
    align-content: start;
    gap: 38px;
}

.manifesto h2,
.section-head h2 {
    margin: 0;
    font-size: clamp(2.15rem, 3.4vw, 3.65rem);
    line-height: 1.04;
    letter-spacing: -.05em;
}

.manifesto-copy {
    max-width: 760px;
    font-size: clamp(1.05rem, 1.35vw, 1.18rem);
    line-height: 1.78;
    color: var(--ink-soft);
}

.manifesto-copy> :first-child {
    margin-top: 0;
}

.manifesto-copy> :last-child {
    margin-bottom: 0;
}

.manifesto-copy p {
    margin: 0 0 1.15em;
}

.manifesto-copy h3 {
    margin: 1.8em 0 .65em;
    color: var(--ink);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: -.035em;
}

.manifesto-copy h4 {
    margin: 1.5em 0 .55em;
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.25;
}

.manifesto-copy ul,
.manifesto-copy ol {
    margin: .7em 0 1.2em;
    padding-left: 1.4em;
}

.manifesto-photo {
    width: min(100%, 390px);
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 21, 43, .11);
    border-radius: 30px;
    background: rgba(255, 255, 255, .56);
    box-shadow: 0 22px 55px rgba(23, 21, 43, .10);
}

.manifesto-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}

.craft,
.projects {
    padding-top: 130px;
}

.section-head {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 48px;
}

.section-head>p {
    margin: 0 0 5px;
    font-size: 1.02rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.craft-card {
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .48);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.craft-card:hover {
    transform: translateY(-5px);
    border-color: rgba(111, 91, 211, .32);
    box-shadow: var(--shadow);
}

.craft-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -55px;
    bottom: -65px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 91, 211, .14), transparent 68%);
}

.craft-index {
    font-size: .77rem;
    letter-spacing: .1em;
    font-weight: 850;
    color: var(--violet-dark);
}

.craft-card h3 {
    margin: 84px 0 13px;
    font-size: 2rem;
    letter-spacing: -.035em;
}

.craft-card p {
    margin: 0;
    max-width: 490px;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.72;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.project-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 10px 30px rgba(23, 21, 43, .04);
    transition: transform .24s ease, box-shadow .24s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.project-featured {
    grid-column: span 2;
}

.project-visual {
    min-height: 245px;
    height: 245px;
    position: relative;
    overflow: hidden;
    background: #ece5dc;
}

.project-featured .project-visual {
    height: 330px;
}

.project-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 72% 26%, rgba(224, 168, 61, .42), transparent 19%), radial-gradient(circle at 24% 76%, rgba(216, 115, 154, .34), transparent 25%), linear-gradient(145deg, #1a171b, #b81b62);
}

.project-placeholder span {
    font-size: 7.5rem;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, .88);
    letter-spacing: -.08em;
}

.project-status {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    font-size: .73rem;
    font-weight: 850;
    letter-spacing: .02em;
}

.status-live {
    color: #295b40;
}

.status-progress {
    color: #6f5018;
}

.status-idea {
    color: #9f3d69;
}

.status-archived {
    color: #666;
}

.project-content {
    padding: 27px 27px 25px;
}

.project-category {
    margin: 0 0 7px !important;
    font-size: .73rem !important;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--violet-dark) !important;
}

.project-content h3 {
    margin: 0 0 12px;
    font-size: 1.72rem;
    letter-spacing: -.035em;
}

.project-content>p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.66;
}

.project-foot {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.project-link {
    font-weight: 820;
    text-decoration: none;
}

.project-link span {
    display: inline-block;
    transition: transform .2s ease;
}

.project-link:hover span {
    transform: translate(3px, -3px);
}

.project-muted {
    color: rgba(23, 21, 43, .52);
    font-size: .88rem;
    font-weight: 700;
}

.empty-projects {
    padding: 70px 30px;
    border: 1px dashed rgba(23, 21, 43, .2);
    border-radius: var(--radius);
    text-align: center;
    background: rgba(255, 255, 255, .36);
}

.empty-projects span {
    font-size: 1.65rem;
    font-weight: 840;
}

.empty-projects p {
    margin: 10px auto 0;
    color: var(--ink-soft);
}

.contact {
    padding-top: 105px;
    padding-bottom: 72px;
}

.contact-card {
    width: min(100%, 980px);
    margin-inline: auto;
    min-height: 0;
    border-radius: 32px;
    padding: clamp(34px, 4.2vw, 56px);
    background: radial-gradient(circle at 84% 20%, rgba(224, 168, 61, .25), transparent 28%), radial-gradient(circle at 14% 84%, rgba(216, 115, 154, .21), transparent 27%), var(--ink);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0 34px 90px rgba(23, 21, 43, .18);
}

.contact-card .section-label {
    color: #d8ccff;
}

.contact-copy {
    margin: 0 0 34px;
    max-width: 920px;
    font-size: clamp(1.24rem, 1.65vw, 1.75rem);
    line-height: 1.38;
    letter-spacing: -.025em;
    font-weight: 730;
}

.contact-copy> :first-child {
    margin-top: 0;
}

.contact-copy> :last-child {
    margin-bottom: 0;
}

.contact-copy p {
    margin: 0 0 .8em;
}

.contact-copy h3,
.contact-copy h4 {
    margin: 1.1em 0 .5em;
    color: #f0e9ff;
    font-size: .72em;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.contact-copy strong {
    color: #f2c86f;
}

.contact-copy a {
    color: #f2c86f;
    text-underline-offset: 4px;
}

.site-footer {
    padding-top: 20px;
    padding-bottom: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
}

.site-footer>div:first-child {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.site-footer strong {
    font-weight: 850;
}

.site-footer span {
    color: rgba(23, 21, 43, .54);
    font-size: .88rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-links a {
    text-decoration: none;
    font-size: .87rem;
    font-weight: 700;
}

.admin-entry {
    opacity: .18;
    font-size: 1.4rem !important;
}

.admin-entry:hover {
    opacity: .6;
}

.ambient {
    position: fixed;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
    z-index: -3;
}

.ambient-one {
    width: 360px;
    height: 360px;
    right: -210px;
    top: 38%;
    background: rgba(111, 91, 211, .06);
}

.ambient-two {
    width: 300px;
    height: 300px;
    left: -200px;
    top: 68%;
    background: rgba(224, 168, 61, .08);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1000px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 20px;
        padding-top: 80px;
    }
    .hero-copy {
        max-width: 850px;
    }
    .hero-object {
        min-height: 500px;
    }
    .manifesto-grid,
    .section-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .manifesto-side {
        gap: 28px;
    }
    .manifesto-photo {
        width: min(100%, 360px);
    }
    .section-head>p {
        max-width: 650px;
    }
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .project-featured {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    .section-pad,
    .site-header {
        width: min(100% - 28px, var(--max));
    }
    .site-header {
        min-height: 64px;
        margin-top: 10px;
        top: 8px;
        padding: 9px 10px 9px 11px;
    }
    .brand-monogram {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .brand-name {
        display: none;
    }
    .menu-toggle {
        display: inline-flex;
        background: transparent;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 9px 11px;
        font-weight: 750;
        color: var(--ink);
    }
    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--paper);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav.open {
        display: flex;
    }
    .main-nav a {
        padding: 13px 14px;
    }
    .hero {
        padding-top: 72px;
        padding-bottom: 70px;
    }
    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.4rem);
    }
    .hero-object {
        min-height: 410px;
        transform: scale(.82);
        margin: -18px -36px;
    }
    .manifesto {
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .manifesto-photo {
        width: min(100%, 320px);
        border-radius: 24px;
    }
    .craft,
    .projects,
    .contact {
        padding-top: 90px;
    }
    .craft-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }
    .project-featured {
        grid-column: auto;
    }
    .project-featured .project-visual {
        height: 245px;
    }
    .craft-card {
        min-height: 290px;
        padding: 28px;
    }
    .craft-card h3 {
        margin-top: 62px;
    }
    .contact-card {
        border-radius: 25px;
        min-height: 0;
        padding: 30px 26px;
    }
    .contact-copy {
        font-size: 1.25rem;
        line-height: 1.42;
    }
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
    .site-footer>div:first-child {
        flex-direction: column;
        gap: 3px;
    }
}


/* Refonte 2026 — plus éditoriale, plus fine, palette rose/fuchsia/gris/noir. */

.hero {
    min-height: 700px;
    gap: 82px;
    padding-top: 82px;
    padding-bottom: 100px;
}

.hero-copy {
    max-width: 650px;
}

.hero-kicker,
.section-label {
    color: var(--fuchsia-dark);
    letter-spacing: .18em;
}

.hero-text {
    max-width: 610px;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    color: #65616a;
}

.button-primary {
    background: #17151a;
    box-shadow: 0 12px 30px rgba(23, 21, 26, .14);
}

.button-primary:hover {
    background: #2a252a;
    box-shadow: 0 17px 38px rgba(23, 21, 26, .18);
}

.button-ghost {
    border-color: rgba(217, 31, 115, .22);
    background: rgba(255, 255, 255, .68);
    color: #262027;
}

.button-ghost:hover {
    border-color: rgba(217, 31, 115, .42);
    background: var(--pink-soft);
}

.main-nav a:hover {
    background: var(--pink-soft);
    color: var(--fuchsia-dark);
}

.orbit-b span {
    background: var(--pink);
}

.orbit-c span {
    background: #8e8990;
}

.float-tag {
    border-color: rgba(217, 31, 115, .11);
}

.manifesto {
    margin-top: 10px;
    padding: 68px 0;
    border: 0;
}

.manifesto-grid {
    grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr);
    gap: clamp(42px, 6vw, 88px);
    align-items: stretch;
    padding: clamp(32px, 4vw, 54px);
    border: 1px solid rgba(23, 21, 26, .09);
    border-radius: 38px;
    background: radial-gradient(circle at 9% 92%, rgba(240, 138, 180, .12), transparent 19rem), linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(248, 244, 246, .72));
    box-shadow: 0 26px 75px rgba(31, 25, 29, .07);
}

.manifesto-side {
    gap: 30px;
}

.manifesto h2,
.section-head h2 {
    font-size: clamp(1.95rem, 3vw, 3.15rem);
    letter-spacing: -.045em;
}

.manifesto-photo {
    width: min(100%, 335px);
    border-radius: 25px;
    border: 1px solid rgba(217, 31, 115, .16);
    box-shadow: 18px 20px 0 rgba(240, 138, 180, .13), 0 24px 60px rgba(23, 21, 26, .10);
}

.manifesto-copy {
    max-width: none;
    padding: 8px 0 6px clamp(22px, 3vw, 40px);
    border-left: 2px solid rgba(217, 31, 115, .38);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    color: #5d5961;
}

.manifesto-copy h3 {
    color: #17151a;
    font-weight: 760;
}

.craft,
.projects {
    padding-top: 112px;
}

.craft-grid {
    gap: 14px;
}

.craft-card {
    min-height: 265px;
    padding: 30px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .7);
}

.craft-card:nth-child(1),
.craft-card:nth-child(4) {
    background: linear-gradient(145deg, #fff, #fff3f8);
}

.craft-card:nth-child(2),
.craft-card:nth-child(3) {
    background: linear-gradient(145deg, #fff, #f5f3f4);
}

.craft-card:hover {
    border-color: rgba(217, 31, 115, .27);
}

.craft-card::after {
    background: radial-gradient(circle, rgba(217, 31, 115, .10), transparent 68%);
}

.craft-index {
    color: var(--fuchsia-dark);
}

.craft-card h3 {
    margin: 58px 0 11px;
    font-size: 1.72rem;
    font-weight: 760;
}

.craft-card p {
    font-size: .97rem;
    color: #666169;
}

.project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.project-card {
    border-radius: 22px;
    background: rgba(255, 255, 255, .77);
    box-shadow: 0 8px 24px rgba(23, 21, 26, .045);
}

.project-card:not(.project-featured) .project-visual {
    height: 175px;
    min-height: 175px;
}

.project-card:not(.project-featured) .project-content {
    padding: 20px 20px 18px;
}

.project-card:not(.project-featured) .project-content h3 {
    font-size: 1.28rem;
    margin-bottom: 8px;
}

.project-card:not(.project-featured) .project-content>p {
    font-size: .9rem;
    line-height: 1.55;
}

.project-card:not(.project-featured) .project-foot {
    margin-top: 17px;
    padding-top: 13px;
    font-size: .88rem;
}

.project-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr);
    height: 350px;
    min-height: 0;
    border-color: rgba(217, 31, 115, .14);
    background: linear-gradient(135deg, #fff, #fff5f8);
}

.project-featured .project-visual {
    min-height: 0;
    height: 350px;
}

.project-featured .project-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-featured .project-content {
    min-width: 0;
    padding: clamp(26px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-featured .project-content h3 {
    font-size: clamp(1.55rem, 2.25vw, 2.15rem);
    line-height: 1.08;
}

.project-category {
    color: var(--fuchsia-dark) !important;
}

.project-status {
    padding: 7px 10px;
    font-size: .69rem;
}

.project-link:hover {
    color: var(--fuchsia-dark);
}

.contact-card {
    background: radial-gradient(circle at 84% 20%, rgba(240, 138, 180, .18), transparent 26%), radial-gradient(circle at 12% 90%, rgba(217, 31, 115, .16), transparent 28%), linear-gradient(135deg, #151317, #29232a);
}

.contact-card .section-label {
    color: #ff9ec6;
}

.contact-copy strong,
.contact-copy a {
    color: #ff9ec6;
}

.button-light {
    background: #fff;
    color: #17151a;
}


/* Formulaire de contact intégré au site. */

body.contact-modal-open {
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    padding: 22px;
    align-items: center;
    justify-content: center;
}

.contact-modal.is-open {
    display: flex;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 17, 20, .58);
    backdrop-filter: blur(8px);
}

.contact-dialog {
    width: min(720px, 100%);
    max-height: min(90vh, 900px);
    overflow: auto;
    position: relative;
    z-index: 1;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 35px 110px rgba(20, 17, 20, .28);
}

.contact-dialog::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(240, 138, 180, .12);
    pointer-events: none;
}

.contact-dialog-close {
    position: absolute;
    right: 18px;
    top: 17px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--grey-soft);
    border-radius: 50%;
    background: #fff;
    color: #282328;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
}

.contact-dialog-close:hover {
    border-color: rgba(217, 31, 115, .38);
    color: var(--fuchsia-dark);
    background: var(--pink-soft);
}

.contact-dialog .section-label {
    margin-bottom: 9px;
}

.contact-dialog h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -.045em;
}

.contact-dialog-intro {
    margin: 11px 0 26px;
    color: var(--ink-soft);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label>span {
    font-size: .82rem;
    font-weight: 780;
    color: #433d44;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd8dc;
    border-radius: 14px;
    padding: 13px 14px;
    background: #fcfbfb;
    color: #211d21;
    outline: none;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(217, 31, 115, .58);
    box-shadow: 0 0 0 4px rgba(217, 31, 115, .08);
    background: #fff;
}

.contact-form-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 4px;
}

.contact-form-foot small {
    max-width: 340px;
    color: #817b83;
    line-height: 1.45;
}

.contact-submit {
    border: 0;
}

.contact-honeypot {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    overflow: hidden!important;
    clip: rect(0 0 0 0)!important;
}

.contact-form-errors,
.contact-form-success {
    margin: 0 0 20px;
    padding: 13px 15px;
    border-radius: 14px;
    font-size: .92rem;
    font-weight: 650;
}

.contact-form-errors {
    background: #fff0f3;
    color: #9c204f;
    border: 1px solid #f5c6d7;
}

.contact-form-success {
    background: #eff8f2;
    color: #2f6545;
    border: 1px solid #cce6d5;
}

.ambient-one {
    background: rgba(217, 31, 115, .05);
}

.ambient-two {
    background: rgba(120, 115, 120, .055);
}

@media (max-width: 1000px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
        padding: 34px;
    }
    .manifesto-copy {
        border-left: 0;
        border-top: 2px solid rgba(217, 31, 115, .28);
        padding: 28px 0 0;
    }
    .project-featured {
        grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
        height: 320px;
    }
    .project-featured .project-visual {
        min-height: 0;
        height: 320px;
    }
    .project-featured .project-content {
        padding: 26px 28px;
    }
}

@media (max-width: 720px) {
    .hero h1 {
        font-size: clamp(2.45rem, 11vw, 3.65rem);
    }
    .hero {
        padding-top: 62px;
    }
    .manifesto-grid {
        padding: 24px;
        border-radius: 27px;
    }
    .project-grid {
        grid-template-columns: 1fr;
    }
    .project-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
        height: auto;
    }
    .project-featured .project-visual {
        min-height: 0;
        height: 235px;
    }
    .project-featured .project-content {
        padding: 24px 22px 26px;
    }
    .project-card:not(.project-featured) .project-visual {
        height: 210px;
        min-height: 210px;
    }
    .contact-modal {
        padding: 10px;
        align-items: flex-end;
    }
    .contact-dialog {
        border-radius: 26px 26px 18px 18px;
        padding: 28px 20px 22px;
        max-height: 94vh;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-foot {
        align-items: stretch;
        flex-direction: column;
    }
    .contact-submit {
        width: 100%;
    }
}

.project-featured .project-content {
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.project-featured .project-foot {
    margin-top: auto;
    padding-top: 20px;
    flex-shrink: 0;
}

.project-featured {
    height: auto;
}

.project-featured .project-visual,
.project-featured .project-content {
    min-height: 370px;
}