/*
 * SOLACIME — General.css
 * Univers visuel : jardin organique contemporain, formes vivantes et contrastes rassurants.
 */

:root {
    --forest-950: #032b19;
    --forest-900: #064b2b;
    --forest-800: #08613a;
    --forest-700: #0b7548;
    --leaf-500: #87c447;
    --leaf-300: #b9df88;
    --leaf-100: #eaf5d8;
    --pink-700: #b04a63;
    --pink-500: #e68093;
    --pink-300: #f0aabd;
    --pink-100: #fbe8ec;
    --cream: #f6f5ec;
    --cream-dark: #eae8dc;
    --white: #ffffff;
    --ink: #14251b;
    --muted: #5b6c61;
    --line: rgba(6, 75, 43, 0.15);
    --shadow-soft: 0 18px 50px rgba(3, 43, 25, 0.10);
    --shadow-deep: 0 32px 90px rgba(3, 43, 25, 0.18);
    --container: 1180px;
    --gutter: clamp(1rem, 3vw, 2rem);
    --section-space: clamp(5rem, 10vw, 9rem);
}

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

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 15% 4%, rgba(135, 196, 71, 0.16), transparent 24rem),
        radial-gradient(circle at 91% 32%, rgba(230, 128, 147, 0.12), transparent 28rem),
        var(--cream);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

::selection {
    background: var(--pink-300);
    color: var(--forest-950);
}

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

img {
    height: auto;
}

svg {
    width: 1.8rem;
    height: 1.8rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

a {
    color: inherit;
    text-underline-offset: 0.22em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--pink-500);
    outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h2 {
    margin-bottom: 1.25rem;
    color: var(--forest-900);
    font-size: clamp(2.35rem, 5.8vw, 5.4rem);
    font-weight: 780;
    letter-spacing: -0.06em;
    line-height: 0.96;
}

h3 {
    margin-bottom: 0.75rem;
    color: var(--forest-900);
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    letter-spacing: -0.035em;
    line-height: 1.12;
}

p {
    color: var(--muted);
}

strong {
    color: var(--ink);
}

address {
    font-style: normal;
}

.container {
    width: min(var(--container), calc(100% - (2 * var(--gutter))));
    margin-inline: auto;
}

.site-main {
    overflow: clip;
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 9999;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: var(--forest-950);
    color: var(--white);
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.breadcrumb {
    position: relative;
    z-index: 4;
    padding-top: 1rem;
}

.breadcrumb ol {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--forest-700);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.breadcrumb li::before {
    width: 1.4rem;
    height: 0.45rem;
    border-radius: 999px 0 999px 0;
    background: var(--pink-500);
    content: "";
}

.micro-label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    color: var(--pink-700);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.micro-label::before {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 100% 0 100% 0;
    background: var(--leaf-500);
    content: "";
    transform: rotate(18deg);
}

.micro-label-light {
    color: var(--pink-300);
}

.button {
    display: inline-flex;
    min-height: 3.25rem;
    padding: 0.85rem 1.25rem;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 820;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
    background: var(--forest-900);
    box-shadow: 0 14px 28px rgba(3, 43, 25, 0.18);
    color: var(--white);
}

.button-primary:hover {
    background: var(--forest-800);
    box-shadow: 0 18px 35px rgba(3, 43, 25, 0.24);
}

.button-ghost {
    border-color: rgba(6, 75, 43, 0.26);
    background: rgba(255, 255, 255, 0.58);
    color: var(--forest-900);
    backdrop-filter: blur(8px);
}

.button-pink {
    background: var(--pink-500);
    box-shadow: 0 14px 30px rgba(230, 128, 147, 0.22);
    color: var(--forest-950);
}

.button-light {
    background: var(--white);
    color: var(--forest-900);
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.button-dot {
    width: 0.55rem;
    height: 0.55rem;
    margin-right: 0.65rem;
    border-radius: 50%;
    background: var(--leaf-500);
    box-shadow: 0 0 0 5px rgba(135, 196, 71, 0.18);
}

.phone-link {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    color: var(--forest-900);
    font-weight: 820;
    text-decoration: none;
}

.hero {
    position: relative;
    isolation: isolate;
    padding-block: clamp(2rem, 6vw, 5rem) clamp(5rem, 10vw, 9rem);
    overflow: hidden;
}

.hero::before {
    position: absolute;
    top: -8rem;
    left: -10rem;
    z-index: -2;
    width: 30rem;
    height: 36rem;
    border-radius: 43% 57% 62% 38% / 34% 48% 52% 66%;
    background: linear-gradient(145deg, var(--leaf-100), rgba(255, 255, 255, 0.25));
    content: "";
    transform: rotate(-18deg);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero h1 {
    max-width: 12ch;
    margin: 0.8rem 0 1.2rem;
    color: var(--forest-900);
    font-size: clamp(2.7rem, 6.8vw, 6.6rem);
    font-weight: 820;
    letter-spacing: -0.065em;
    line-height: 0.91;
}

.hero h1::after {
    display: inline-block;
    width: 0.3em;
    height: 0.3em;
    margin-left: 0.08em;
    border-radius: 100% 0 100% 0;
    background: var(--pink-500);
    content: "";
    transform: rotate(25deg) translateY(-0.08em);
}

.hero-lead {
    max-width: 60ch;
    color: var(--ink);
    font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-copy > p:not(.micro-label):not(.hero-lead) {
    max-width: 62ch;
}

.hero-actions,
.story-actions,
.reveal-actions,
.local-actions,
.final-actions,
.journey-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.6rem;
}

.hero-reassurance span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.78rem;
    border: 1px solid rgba(6, 75, 43, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--forest-900);
    font-size: 0.78rem;
    font-weight: 720;
}

.hero-reassurance span::before {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--pink-500);
    content: "";
}

.hero-visual {
    position: relative;
    min-height: 38rem;
}

.hero-visual > figure {
    position: absolute;
    inset: 0 2rem 0 0;
    margin: 0;
    overflow: hidden;
    border: 0.65rem solid rgba(255, 255, 255, 0.72);
    border-radius: 46% 54% 44% 56% / 38% 42% 58% 62%;
    background: var(--cream-dark);
    box-shadow: var(--shadow-deep);
    transform: rotate(1.5deg);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual figcaption {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(3, 43, 25, 0.82);
    color: var(--white);
    font-size: 0.82rem;
    backdrop-filter: blur(10px);
}

.logo-seal {
    position: absolute;
    top: -1.2rem;
    right: -0.7rem;
    z-index: 3;
    width: clamp(7.5rem, 13vw, 10rem);
    aspect-ratio: 1;
    padding: 0.8rem;
    border: 1px solid rgba(6, 75, 43, 0.14);
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: rotate(5deg);
}

.logo-seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.floating-note {
    position: absolute;
    z-index: 4;
    display: grid;
    min-width: 8.5rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(6, 75, 43, 0.12);
    border-radius: 1.2rem 1.2rem 1.2rem 0.25rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.floating-note strong {
    color: var(--forest-900);
    font-size: 1.2rem;
}

.floating-note span {
    color: var(--muted);
    font-size: 0.75rem;
}

.floating-note-top {
    top: 28%;
    left: -3rem;
}

.floating-note-bottom {
    right: -1rem;
    bottom: 8%;
    border-radius: 1.2rem 0.25rem 1.2rem 1.2rem;
}

.hero-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(6, 75, 43, 0.12);
    border-radius: 50%;
}

.hero-orbit-one {
    right: -12rem;
    bottom: -13rem;
    width: 42rem;
    height: 42rem;
}

.hero-orbit-two {
    right: -5rem;
    bottom: -6rem;
    width: 28rem;
    height: 28rem;
    border-color: rgba(230, 128, 147, 0.22);
}

.signal-strip {
    position: relative;
    z-index: 5;
    overflow: hidden;
    background: var(--forest-900);
    color: var(--white);
    transform: rotate(-1.15deg) scale(1.02);
    transform-origin: center;
}

.signal-track {
    display: flex;
    min-width: max-content;
    padding: 1rem 2rem;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    font-size: clamp(0.88rem, 1.5vw, 1.05rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.signal-track i {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 100% 0 100% 0;
    background: var(--pink-500);
    transform: rotate(25deg);
}

.section-intro {
    max-width: 55rem;
    margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-intro-centered {
    margin-inline: auto;
    text-align: center;
}

.section-intro-centered h2 {
    max-width: 14ch;
    margin-inline: auto;
}

.section-intro-centered p:last-child {
    max-width: 72ch;
    margin-inline: auto;
}

.needs-section {
    background:
        radial-gradient(circle at 10% 28%, rgba(135, 196, 71, 0.16), transparent 20rem),
        radial-gradient(circle at 90% 72%, rgba(230, 128, 147, 0.12), transparent 20rem),
        var(--cream);
}

.service-orchard {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: stretch;
}

.need-card {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.3rem);
    overflow: hidden;
    border: 1px solid rgba(6, 75, 43, 0.13);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.need-card::after {
    position: absolute;
    right: -3.8rem;
    bottom: -4.2rem;
    width: 10rem;
    height: 10rem;
    border-radius: 54% 46% 66% 34% / 44% 62% 38% 56%;
    background: var(--leaf-100);
    content: "";
    transition: transform 350ms ease;
}

.need-card:hover::after {
    transform: rotate(16deg) scale(1.16);
}

.need-card-tree {
    grid-column: 1 / 8;
    min-height: 32rem;
    border-radius: 2rem 7rem 2rem 2rem;
    background:
        radial-gradient(circle at 88% 13%, rgba(135, 196, 71, 0.22), transparent 10rem),
        var(--forest-900);
    color: var(--white);
}

.need-card-tree::after {
    background: rgba(230, 128, 147, 0.15);
}

.need-card-care {
    grid-column: 8 / 13;
    min-height: 32rem;
    border-radius: 7rem 2rem 2rem 2rem;
}

.need-card-create {
    grid-column: 3 / 11;
    min-height: 27rem;
    margin-top: 0.4rem;
    border-radius: 2rem 2rem 7rem 2rem;
    background:
        linear-gradient(140deg, rgba(230, 128, 147, 0.12), transparent 45%),
        rgba(255, 255, 255, 0.92);
}

.need-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 3.6rem;
    height: 3.6rem;
    margin-bottom: 2.3rem;
    place-items: center;
    border: 1px solid rgba(6, 75, 43, 0.14);
    border-radius: 60% 40% 55% 45% / 46% 62% 38% 54%;
    background: var(--leaf-100);
    color: var(--forest-900);
    transform: rotate(-4deg);
}

.need-card-tree .need-icon {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.11);
    color: var(--white);
}

.card-tag {
    position: relative;
    z-index: 2;
    margin-bottom: 0.65rem;
    color: var(--pink-700);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.need-card h3,
.need-card p,
.service-links {
    position: relative;
    z-index: 2;
}

.need-card h3 {
    max-width: 18ch;
    font-size: clamp(1.7rem, 3.5vw, 3rem);
}

.need-card p {
    max-width: 60ch;
}

.need-card-tree h3,
.need-card-tree strong,
.need-card-tree p,
.need-card-tree a {
    color: var(--white);
}

.need-card-tree .card-tag {
    color: var(--pink-300);
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.4rem;
}

.service-links a {
    padding: 0.56rem 0.8rem;
    border: 1px solid rgba(6, 75, 43, 0.17);
    border-radius: 999px;
    color: var(--forest-900);
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 170ms ease, background 170ms ease;
}

.service-links a:hover {
    background: var(--leaf-100);
    transform: translateY(-2px);
}

.need-card-tree .service-links a {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.need-card-tree .service-links a:hover,
.need-card-tree .service-links a:focus-visible {
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(1, 31, 18, 0.24);
    color: var(--forest-950);
}

.inline-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(6, 75, 43, 0.15);
    border-radius: 1.5rem 4.5rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.72);
}

.inline-cta strong {
    color: var(--forest-900);
    font-size: 1.15rem;
}

.inline-cta p {
    margin: 0.35rem 0 0;
}

.inline-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.expertise-story {
    overflow: hidden;
    background: var(--forest-950);
    color: var(--white);
}

.expertise-story::before,
.expertise-story::after {
    position: absolute;
    pointer-events: none;
    content: "";
}

.expertise-story::before {
    top: -12rem;
    right: -8rem;
    width: 30rem;
    height: 36rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 56% 44% 70% 30% / 46% 64% 36% 54%;
    transform: rotate(23deg);
}

.expertise-story::after {
    bottom: -9rem;
    left: 30%;
    width: 23rem;
    height: 20rem;
    border-radius: 100% 0 100% 0;
    background: rgba(230, 128, 147, 0.09);
    transform: rotate(-16deg);
}

.story-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: center;
}

.story-visual {
    position: relative;
}

.organic-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.organic-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organic-photo figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.organic-photo-dark {
    aspect-ratio: 4 / 5;
    border: 0.55rem solid rgba(255, 255, 255, 0.08);
    border-radius: 3rem 10rem 3rem 3rem;
    transform: rotate(-2.2deg);
}

.organic-photo-dark figcaption {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.story-badge {
    position: absolute;
    right: -2.5rem;
    bottom: 10%;
    z-index: 3;
    display: grid;
    width: 10rem;
    aspect-ratio: 1;
    place-content: center;
    border-radius: 50%;
    background: var(--pink-500);
    box-shadow: var(--shadow-soft);
    color: var(--forest-950);
    text-align: center;
    transform: rotate(8deg);
}

.story-badge span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.story-badge strong {
    max-width: 7ch;
    margin-inline: auto;
    color: var(--forest-950);
    font-size: 1.25rem;
    line-height: 1.05;
}

.story-copy h2,
.story-copy h3,
.story-copy strong {
    color: var(--white);
}

.story-copy p {
    color: rgba(255, 255, 255, 0.73);
}

.promise-petals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 2rem;
}

.promise-petals article {
    position: relative;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.045);
}

.promise-petals article:nth-child(1) {
    border-radius: 1.5rem 3.5rem 1.5rem 1.5rem;
}

.promise-petals article:nth-child(2) {
    border-radius: 3.5rem 1.5rem 1.5rem 1.5rem;
}

.promise-petals article:nth-child(3) {
    border-radius: 1.5rem 1.5rem 1.5rem 3.5rem;
}

.promise-petals article:nth-child(4) {
    border-radius: 1.5rem 1.5rem 3.5rem 1.5rem;
}

.promise-petals span {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--leaf-300);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.promise-petals h3 {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.promise-petals p {
    margin: 0;
    font-size: 0.88rem;
}

.journey-section {
    background:
        radial-gradient(circle at 15% 30%, rgba(135, 196, 71, 0.12), transparent 25rem),
        var(--cream);
}

.journey-intro {
    max-width: 50rem;
}

.garden-journey {
    position: relative;
    display: grid;
    gap: 1.3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.garden-journey::before {
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 50%;
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--leaf-500) 0 8px, transparent 8px 18px);
    content: "";
    transform: translateX(-50%);
}

.garden-journey li {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 5rem 1fr;
    align-items: center;
}

.garden-journey li:nth-child(odd) article {
    grid-column: 1;
    border-radius: 2rem 5rem 2rem 2rem;
}

.garden-journey li:nth-child(even) article {
    grid-column: 3;
    border-radius: 5rem 2rem 2rem 2rem;
}

.garden-journey article {
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.garden-journey article p:last-child {
    margin-bottom: 0;
}

.journey-node {
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
    display: grid;
    width: 3.8rem;
    height: 3.8rem;
    margin-inline: auto;
    place-items: center;
    border: 0.5rem solid var(--cream);
    border-radius: 50%;
    background: var(--forest-900);
    color: var(--white);
    font-weight: 850;
}

.garden-journey li:nth-child(even) .journey-node {
    background: var(--pink-500);
    color: var(--forest-950);
}

.journey-cta {
    justify-content: center;
    margin-top: 2.5rem;
}

.garden-reveal {
    background: var(--white);
}

.garden-reveal::before {
    position: absolute;
    top: 8%;
    left: -7rem;
    width: 15rem;
    height: 24rem;
    border-radius: 100% 0 100% 0;
    background: var(--pink-100);
    content: "";
    transform: rotate(18deg);
}

.reveal-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: center;
}

.reveal-copy h2 {
    max-width: 12ch;
}

.benefit-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}

.benefit-cloud li {
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: var(--leaf-100);
    color: var(--forest-900);
    font-size: 0.82rem;
    font-weight: 780;
}

.benefit-cloud li:nth-child(even) {
    background: var(--pink-100);
}

.reveal-visual {
    position: relative;
}

.organic-photo-light {
    aspect-ratio: 4 / 5;
    border: 0.55rem solid var(--cream);
    border-radius: 9rem 3rem 3rem 3rem;
    transform: rotate(1.8deg);
}

.organic-photo-light figcaption {
    background: rgba(255, 255, 255, 0.84);
    color: var(--forest-900);
}

.reveal-stamp {
    position: absolute;
    right: -2rem;
    bottom: 11%;
    z-index: 3;
    display: flex;
    width: 9.5rem;
    height: 9.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0.35rem solid var(--white);
    border-radius: 50%;
    background: var(--forest-900);
    box-shadow: var(--shadow-soft);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
    transform: rotate(-9deg);
}

.reveal-stamp span:nth-child(2) {
    color: var(--pink-300);
    font-size: 1.15rem;
}

.local-section {
    background:
        linear-gradient(135deg, rgba(135, 196, 71, 0.18), transparent 40%),
        var(--leaf-100);
}

.local-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.local-content h2 {
    max-width: 12ch;
}

.zone-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.zone-bubbles span {
    padding: 0.58rem 0.85rem;
    border: 1px solid rgba(6, 75, 43, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--forest-900);
    font-size: 0.8rem;
    font-weight: 780;
}

.map-island {
    overflow: hidden;
    border: 0.5rem solid rgba(255, 255, 255, 0.7);
    border-radius: 4rem 1.5rem 4rem 1.5rem;
    background: var(--white);
    box-shadow: var(--shadow-deep);
    transform: rotate(-1deg);
}

.map-island iframe {
    display: block;
    width: 100%;
    height: 26rem;
    border: 0;
}

.map-contact {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.3rem;
    background: var(--white);
}

.map-contact strong {
    display: block;
    color: var(--forest-900);
}

.map-contact address {
    color: var(--muted);
    font-size: 0.84rem;
}

.map-contact a {
    flex: 0 0 auto;
    color: var(--forest-900);
    font-size: 0.82rem;
    font-weight: 820;
    text-decoration: none;
}

.reviews-section {
    overflow: hidden;
    background: var(--forest-900);
    color: var(--white);
}

.reviews-section::before {
    position: absolute;
    right: -7rem;
    bottom: -9rem;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 42% 58% 38% 62% / 55% 35% 65% 45%;
    content: "";
    transform: rotate(18deg);
}

.reviews-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: center;
}

.reviews-heading h2,
.reviews-heading strong,
.reviews-content h3 {
    color: var(--white);
}

.reviews-heading p {
    color: rgba(255, 255, 255, 0.74);
}

.reviews-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.3rem;
    align-items: center;
}

.rating-orb {
    display: grid;
    width: clamp(10rem, 18vw, 13rem);
    aspect-ratio: 1;
    place-content: center;
    border: 0.45rem solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: var(--pink-500);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
    color: var(--forest-950);
    text-align: center;
    transform: rotate(-6deg);
}

.rating-orb strong {
    color: var(--forest-950);
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1;
}

.rating-orb span {
    margin-top: 0.5rem;
    color: var(--forest-950);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.rating-orb small {
    font-weight: 780;
}

.rating-orb-link strong {
    font-size: 1.6rem;
}

.review-values,
.review-stack {
    display: grid;
    gap: 0.8rem;
}

.review-values article,
.review-card {
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1.25rem 3rem 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.055);
}

.review-values article:nth-child(even),
.review-card:nth-child(even) {
    border-radius: 3rem 1.25rem 1.25rem 1.25rem;
}

.review-values span {
    float: left;
    margin-right: 0.75rem;
    color: var(--pink-300);
}

.review-values h3 {
    margin-bottom: 0.25rem;
    font-size: 1.03rem;
}

.review-values p,
.review-card blockquote {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.review-stars {
    margin-bottom: 0.5rem;
    color: var(--pink-300);
    letter-spacing: 0.12em;
}

.review-card footer {
    display: flex;
    justify-content: space-between;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
}

.review-card footer strong {
    color: var(--white);
}

.faq-section {
    background: var(--cream);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 2rem;
}

.faq-heading h2 {
    max-width: 11ch;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.25rem 3rem 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.78);
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:nth-child(even) {
    border-radius: 3rem 1.25rem 1.25rem 1.25rem;
}

.faq-list details[open] {
    box-shadow: var(--shadow-soft);
    transform: translateX(-0.4rem);
}

.faq-list summary {
    position: relative;
    padding: 1.35rem 4rem 1.35rem 1.35rem;
    color: var(--forest-900);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 50%;
    background: var(--leaf-100);
    color: var(--forest-900);
    content: "+";
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    background: var(--pink-100);
    content: "−";
}

.faq-answer {
    padding: 0 1.35rem 1.35rem;
}

.faq-answer p {
    margin-bottom: 0;
}

.final-cta {
    overflow: hidden;
    background: var(--pink-500);
    color: var(--forest-950);
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 58rem;
    text-align: center;
}

.final-cta h2 {
    max-width: 13ch;
    margin-inline: auto;
    color: var(--forest-950);
}

.final-cta p {
    max-width: 70ch;
    margin-inline: auto;
    color: rgba(3, 43, 25, 0.82);
}

.final-cta strong {
    color: var(--forest-950);
}

.final-actions {
    justify-content: center;
}

.final-leaf {
    position: absolute;
    width: 22rem;
    height: 34rem;
    border-radius: 100% 0 100% 0;
    background: rgba(255, 255, 255, 0.16);
}

.final-leaf-left {
    top: -12rem;
    left: -7rem;
    transform: rotate(36deg);
}

.final-leaf-right {
    right: -6rem;
    bottom: -14rem;
    transform: rotate(-130deg);
}

.related-links {
    padding-block: 1.2rem;
    background: var(--forest-950);
    color: var(--white);
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.related-links a {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.15rem 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem 2.7rem 1.2rem 1.2rem;
    text-decoration: none;
    transition: background 180ms ease, transform 180ms ease;
}

.related-links a:nth-child(even) {
    border-radius: 2.7rem 1.2rem 1.2rem 1.2rem;
}

.related-links a:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
}

.related-index {
    grid-row: 1 / 3;
    color: var(--pink-300);
    font-size: 0.72rem;
    font-weight: 850;
}

.related-links strong {
    color: var(--white);
}

.related-links a > span:last-child {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
}

.site-footer {
    padding-block: clamp(3.5rem, 7vw, 6rem);
    background: #021f12;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
}

.footer-name {
    margin-bottom: 0.8rem;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 850;
    letter-spacing: 0.18em;
    line-height: 1;
}

.footer-brand > p:not(.footer-name),
.site-footer p,
.site-footer address {
    color: rgba(255, 255, 255, 0.62);
}

.footer-call {
    display: inline-flex;
    gap: 0.5rem;
    margin-top: 0.6rem;
    color: var(--pink-300);
    font-weight: 820;
    text-decoration: none;
}

.site-footer h2 {
    margin-bottom: 1rem;
    color: var(--leaf-300);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer nav a {
    text-decoration: none;
}

.site-footer nav a:hover {
    color: var(--pink-300);
}

.mobile-actions {
    display: none;
}

@media (max-width: 1000px) {
    .hero-layout,
    .story-layout,
    .reveal-layout,
    .local-shell,
    .reviews-shell,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 48rem;
    }

    .hero-visual {
        min-height: 36rem;
    }

    .story-visual,
    .reveal-visual {
        max-width: 40rem;
        margin-inline: auto;
    }

    .story-copy {
        max-width: 48rem;
    }

    .faq-heading {
        position: static;
        max-width: 42rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .hero-visual {
        min-height: 31rem;
    }

    .floating-note-top {
        left: -0.5rem;
    }

    .need-card-tree,
    .need-card-care,
    .need-card-create {
        grid-column: 1 / -1;
        min-height: auto;
        margin-top: 0;
        border-radius: 2rem 4.5rem 2rem 2rem;
    }

    .need-card-care {
        border-radius: 4.5rem 2rem 2rem 2rem;
    }

    .need-card-create {
        border-radius: 2rem 2rem 4.5rem 2rem;
    }

    .inline-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .garden-journey::before {
        left: 1.9rem;
    }

    .garden-journey li {
        grid-template-columns: 4rem 1fr;
    }

    .garden-journey li article,
    .garden-journey li:nth-child(odd) article,
    .garden-journey li:nth-child(even) article {
        grid-column: 2;
        grid-row: 1;
    }

    .journey-node {
        grid-column: 1;
    }

    .reviews-content {
        grid-template-columns: 1fr;
    }

    .rating-orb {
        width: 11rem;
    }

    .related-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 4.4rem;
    }

    h2 {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
    }

    .section {
        padding-block: clamp(4rem, 16vw, 6rem);
    }

    .hero {
        padding-top: 1.5rem;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 15vw, 4.8rem);
    }

    .hero-actions,
    .story-actions,
    .reveal-actions,
    .local-actions,
    .final-actions,
    .journey-cta,
    .inline-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 28rem;
    }

    .hero-visual > figure {
        right: 0.6rem;
        border-radius: 3.5rem 7rem 3.5rem 3.5rem;
    }

    .logo-seal {
        right: 0;
        width: 7.5rem;
    }

    .floating-note {
        min-width: 7rem;
        padding: 0.75rem;
    }

    .floating-note-top {
        top: 34%;
        left: -0.2rem;
    }

    .floating-note-bottom {
        right: 0;
        bottom: 5%;
    }

    .signal-track {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .promise-petals {
        grid-template-columns: 1fr;
    }

    .story-badge,
    .reveal-stamp {
        right: 0.4rem;
        width: 8rem;
        height: 8rem;
    }

    .map-island iframe {
        height: 20rem;
    }

    .map-contact {
        align-items: flex-start;
        flex-direction: column;
    }

    .faq-list details[open] {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .mobile-actions {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        padding: 0.65rem max(0.65rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.65rem, env(safe-area-inset-left));
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(3, 43, 25, 0.94);
        backdrop-filter: blur(14px);
    }

    .mobile-actions a {
        display: grid;
        min-height: 3rem;
        place-items: center;
        border-radius: 999px;
        background: var(--white);
        color: var(--forest-900);
        font-size: 0.9rem;
        font-weight: 850;
        text-decoration: none;
    }

    .mobile-actions a:last-child {
        background: var(--pink-500);
        color: var(--forest-950);
    }
}

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

@media print {
    .mobile-actions,
    .signal-strip,
    .hero-orbit,
    .final-leaf {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    a {
        text-decoration: underline;
    }
}

/* =========================================================
   MENU SOLACIME — ÎLOT VÉGÉTAL FIXE
========================================================= */

.sola-menu {
    position: fixed;
    top: max(0.75rem, env(safe-area-inset-top));
    right: 0;
    left: 0;
    z-index: 10000;
    padding-inline: var(--gutter);
    pointer-events: none;
}

.sola-menu-shell {
    position: relative;
    display: flex;
    width: min(1380px, 100%);
    min-height: 5.4rem;
    margin-inline: auto;
    padding: 0.55rem 0.65rem 0.55rem 0.72rem;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(6, 75, 43, 0.15);
    border-radius: 1.75rem 1.75rem 1.75rem 0.65rem;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.97), rgba(246, 245, 236, 0.91)),
        var(--white);
    box-shadow: 0 16px 50px rgba(3, 43, 25, 0.13);
    pointer-events: auto;
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    transition: min-height 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.sola-menu-shell::before {
    position: absolute;
    right: 12.5rem;
    bottom: -0.42rem;
    width: 4.2rem;
    height: 0.75rem;
    border-radius: 100% 0 100% 0;
    background: linear-gradient(90deg, var(--pink-500), var(--leaf-500));
    content: "";
    transform: rotate(-3deg);
}

.sola-menu.is-scrolled .sola-menu-shell {
    min-height: 4.75rem;
    box-shadow: 0 12px 38px rgba(3, 43, 25, 0.18);
    transform: translateY(-0.2rem);
}

.sola-menu-spacer {
    height: 7.25rem;
}

.sola-brand {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    gap: 0.7rem;
    color: var(--forest-900);
    text-decoration: none;
}

.sola-brand-mark {
    position: relative;
    display: grid;
    width: 4.15rem;
    height: 4.15rem;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(6, 75, 43, 0.13);
    border-radius: 50% 50% 50% 17%;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(3, 43, 25, 0.12);
    transition: width 220ms ease, height 220ms ease, transform 220ms ease;
}

.sola-brand-mark::after {
    position: absolute;
    right: -0.1rem;
    bottom: -0.1rem;
    width: 1rem;
    height: 1rem;
    border-radius: 100% 0 100% 0;
    background: var(--pink-500);
    content: "";
}

.sola-brand:hover .sola-brand-mark {
    transform: rotate(-4deg) scale(1.03);
}

.sola-brand-mark img {
    width: 100%;
    height: 100%;
    padding: 0.22rem;
    object-fit: contain;
}

.sola-menu.is-scrolled .sola-brand-mark {
    width: 3.6rem;
    height: 3.6rem;
}

.sola-brand-copy {
    display: grid;
    line-height: 1.05;
}

.sola-brand-copy strong {
    color: var(--forest-900);
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.sola-brand-copy small {
    margin-top: 0.3rem;
    color: var(--pink-700);
    font-size: 0.67rem;
    font-weight: 780;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sola-nav {
    display: flex;
    min-width: 0;
    margin-left: auto;
    align-items: center;
    gap: 0.1rem;
}

.sola-nav-link {
    position: relative;
    display: inline-flex;
    min-height: 3.1rem;
    padding: 0.55rem 0.74rem;
    align-items: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 1rem 1rem 1rem 0.36rem;
    background: transparent;
    color: var(--forest-950);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sola-nav-link:hover,
.sola-nav-link:focus-visible,
.sola-nav-link.is-current,
.sola-nav-group.has-current > .sola-nav-trigger,
.sola-nav-group.is-open > .sola-nav-trigger {
    background: var(--forest-900);
    color: var(--white);
}

.sola-nav-link:hover {
    transform: translateY(-0.12rem);
}

.sola-nav-index {
    color: var(--pink-700);
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    transform: translateY(-0.58rem);
}

.sola-nav-link:hover .sola-nav-index,
.sola-nav-link:focus-visible .sola-nav-index,
.sola-nav-link.is-current .sola-nav-index,
.sola-nav-group.has-current > .sola-nav-trigger .sola-nav-index,
.sola-nav-group.is-open > .sola-nav-trigger .sola-nav-index {
    color: var(--pink-300);
}

.sola-nav-trigger > svg {
    width: 1rem;
    height: 1rem;
    transition: transform 220ms ease;
}

.sola-nav-group {
    position: relative;
}

.sola-nav-group.is-open .sola-nav-trigger > svg {
    transform: rotate(180deg);
}

.sola-panel {
    position: absolute;
    top: calc(100% + 1.15rem);
    left: 50%;
    display: grid;
    width: min(47rem, calc(100vw - 2rem));
    padding: 0.7rem;
    grid-template-columns: 15.5rem minmax(0, 1fr);
    gap: 0.7rem;
    border: 1px solid rgba(6, 75, 43, 0.14);
    border-radius: 1.55rem 1.55rem 1.55rem 0.55rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 75px rgba(3, 43, 25, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0.9rem) scale(0.985);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.sola-nav-group.is-open .sola-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
    pointer-events: auto;
}

.sola-panel::before,
.sola-panel::after {
    position: absolute;
    z-index: -1;
    border-radius: 100% 0 100% 0;
    content: "";
}

.sola-panel::before {
    top: -0.5rem;
    right: 2.6rem;
    width: 1.3rem;
    height: 1.3rem;
    background: var(--leaf-500);
    transform: rotate(34deg);
}

.sola-panel::after {
    top: -0.25rem;
    right: 1.6rem;
    width: 0.8rem;
    height: 0.8rem;
    background: var(--pink-500);
    transform: rotate(12deg);
}

.sola-panel-intro {
    position: relative;
    min-height: 100%;
    padding: 1.35rem;
    overflow: hidden;
    border-radius: 1.15rem 4rem 1.15rem 1.15rem;
    background:
        radial-gradient(circle at 85% 8%, rgba(135, 196, 71, 0.36), transparent 7rem),
        var(--forest-900);
    color: var(--white);
}

.sola-panel-intro::after {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 7rem;
    height: 7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: "";
}

.sola-panel-intro > span {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--pink-300);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.sola-panel-intro strong {
    display: block;
    color: var(--white);
    font-size: 1.35rem;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.sola-panel-intro p {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.79rem;
    line-height: 1.55;
}

.sola-panel-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
}

.sola-panel-links > a {
    display: grid;
    min-height: 5rem;
    padding: 0.78rem;
    grid-template-columns: 2.55rem minmax(0, 1fr);
    align-items: center;
    gap: 0.72rem;
    border: 1px solid rgba(6, 75, 43, 0.1);
    border-radius: 1rem 1rem 1rem 0.35rem;
    background: var(--cream);
    color: var(--forest-950);
    text-decoration: none;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sola-panel-links > a:hover,
.sola-panel-links > a:focus-visible,
.sola-panel-links > a[aria-current="page"] {
    border-color: rgba(6, 75, 43, 0.24);
    background: var(--white);
    box-shadow: 0 12px 26px rgba(3, 43, 25, 0.1);
    transform: translateY(-0.15rem);
}

.sola-panel-icon {
    display: grid;
    width: 2.55rem;
    height: 2.55rem;
    place-items: center;
    border-radius: 50% 50% 50% 18%;
    background: var(--leaf-100);
    color: var(--forest-900);
}

.sola-panel-links > a:nth-child(even) .sola-panel-icon {
    background: var(--pink-100);
    color: var(--pink-700);
}

.sola-panel-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.sola-panel-links strong,
.sola-panel-links small {
    display: block;
}

.sola-panel-links strong {
    margin-bottom: 0.25rem;
    color: var(--forest-900);
    font-size: 0.85rem;
    line-height: 1.12;
}

.sola-panel-links small {
    color: var(--muted);
    font-size: 0.66rem;
    line-height: 1.35;
}

.sola-panel-garden {
    width: min(53rem, calc(100vw - 2rem));
}

.sola-panel-links-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sola-nav-actions {
    display: flex;
    margin-left: 0.4rem;
    align-items: center;
    gap: 0.45rem;
}

.sola-phone {
    display: inline-grid;
    width: 3.1rem;
    height: 3.1rem;
    place-items: center;
    border: 1px solid rgba(6, 75, 43, 0.16);
    border-radius: 50% 50% 50% 18%;
    background: var(--white);
    color: var(--forest-900);
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(3, 43, 25, 0.08);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.sola-phone:hover,
.sola-phone:focus-visible {
    background: var(--leaf-500);
    color: var(--forest-950);
    transform: rotate(-4deg) translateY(-0.12rem);
}

.sola-phone svg {
    width: 1.2rem;
    height: 1.2rem;
}

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

.sola-quote {
    display: inline-flex;
    min-height: 3.1rem;
    padding: 0.6rem 1rem 0.6rem 1.15rem;
    align-items: center;
    gap: 0.7rem;
    border-radius: 999px 999px 999px 0.65rem;
    background: var(--pink-500);
    color: var(--forest-950);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(176, 74, 99, 0.2);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sola-quote:hover,
.sola-quote:focus-visible {
    background: var(--forest-900);
    color: var(--white);
    box-shadow: 0 15px 30px rgba(3, 43, 25, 0.22);
    transform: translateY(-0.14rem);
}

.sola-quote svg {
    width: 1rem;
    height: 1rem;
}

.sola-menu-toggle {
    display: none;
}

@media (max-width: 1260px) and (min-width: 1121px) {
    .sola-brand-copy small,
    .sola-nav-index {
        display: none;
    }

    .sola-brand-mark {
        width: 3.75rem;
        height: 3.75rem;
    }

    .sola-nav-link {
        padding-inline: 0.58rem;
        font-size: 0.76rem;
    }

    .sola-quote {
        padding-inline: 0.85rem;
    }
}

@media (max-width: 1120px) {
    html.sola-menu-lock {
        overflow: hidden;
    }

    .sola-menu {
        top: max(0.5rem, env(safe-area-inset-top));
        padding-inline: 0.65rem;
    }

    .sola-menu-shell {
        min-height: 4.8rem;
        padding: 0.45rem 0.5rem 0.45rem 0.58rem;
        border-radius: 1.35rem 1.35rem 1.35rem 0.5rem;
    }

    .sola-menu-shell::before {
        right: 5.5rem;
    }

    .sola-menu.is-scrolled .sola-menu-shell {
        min-height: 4.6rem;
        transform: none;
    }

    .sola-menu-spacer {
        height: 6.25rem;
    }

    .sola-brand-mark,
    .sola-menu.is-scrolled .sola-brand-mark {
        width: 3.7rem;
        height: 3.7rem;
    }

    .sola-menu-toggle {
        display: inline-flex;
        min-height: 3.2rem;
        margin-left: auto;
        padding: 0.5rem 0.75rem 0.5rem 0.9rem;
        align-items: center;
        gap: 0.7rem;
        border: 0;
        border-radius: 999px 999px 999px 0.5rem;
        background: var(--forest-900);
        color: var(--white);
        font: inherit;
        cursor: pointer;
    }

    .sola-menu-toggle-label {
        font-size: 0.74rem;
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .sola-menu-toggle-lines {
        display: grid;
        width: 1.35rem;
        gap: 0.28rem;
    }

    .sola-menu-toggle-lines i {
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 220ms ease, opacity 180ms ease, width 220ms ease;
    }

    .sola-menu-toggle-lines i:nth-child(2) {
        width: 70%;
        margin-left: auto;
    }

    .menu-is-open .sola-menu-toggle-lines i:nth-child(1) {
        transform: translateY(0.42rem) rotate(45deg);
    }

    .menu-is-open .sola-menu-toggle-lines i:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .menu-is-open .sola-menu-toggle-lines i:nth-child(3) {
        transform: translateY(-0.42rem) rotate(-45deg);
    }

    .sola-nav {
        position: fixed;
        top: calc(max(0.5rem, env(safe-area-inset-top)) + 5.35rem);
        right: 0.65rem;
        left: 0.65rem;
        display: grid;
        max-height: calc(100dvh - 6.5rem - env(safe-area-inset-bottom));
        margin: 0;
        padding: 0.8rem;
        align-items: stretch;
        gap: 0.35rem;
        overflow-y: auto;
        border: 1px solid rgba(6, 75, 43, 0.14);
        border-radius: 1.5rem 1.5rem 1.5rem 0.55rem;
        background:
            radial-gradient(circle at 92% 5%, rgba(135, 196, 71, 0.22), transparent 9rem),
            rgba(255, 255, 255, 0.985);
        box-shadow: 0 30px 80px rgba(3, 43, 25, 0.28);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-0.8rem) scale(0.985);
        pointer-events: none;
        transition: opacity 180ms ease, visibility 180ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1);
        overscroll-behavior: contain;
    }

    .menu-is-open .sola-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .sola-nav-link {
        width: 100%;
        min-height: 3.35rem;
        padding: 0.7rem 0.9rem;
        justify-content: flex-start;
        border: 1px solid rgba(6, 75, 43, 0.09);
        background: var(--cream);
        font-size: 0.88rem;
    }

    .sola-nav-trigger > svg {
        margin-left: auto;
    }

    .sola-nav-index {
        min-width: 1.2rem;
        transform: none;
    }

    .sola-nav-group {
        width: 100%;
    }

    .sola-panel,
    .sola-panel-garden {
        position: static;
        display: grid;
        width: 100%;
        max-height: 0;
        margin: 0;
        padding: 0;
        grid-template-columns: 1fr;
        gap: 0;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        pointer-events: none;
        transition: max-height 360ms cubic-bezier(.22, 1, .36, 1), opacity 180ms ease, visibility 180ms ease, margin 220ms ease;
    }

    .sola-panel::before,
    .sola-panel::after,
    .sola-panel-intro {
        display: none;
    }

    .sola-nav-group.is-open .sola-panel {
        max-height: 44rem;
        margin-top: 0.35rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .sola-panel-links,
    .sola-panel-links-wide {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .sola-panel-links > a {
        min-height: 4.25rem;
        padding: 0.65rem 0.75rem;
        background: rgba(234, 245, 216, 0.55);
    }

    .sola-nav-actions {
        display: grid;
        margin: 0.4rem 0 0;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
        gap: 0.45rem;
    }

    .sola-phone {
        display: inline-flex;
        width: 100%;
        height: auto;
        min-height: 3.35rem;
        padding: 0.65rem 0.9rem;
        justify-content: center;
        gap: 0.55rem;
        border-radius: 999px 999px 999px 0.55rem;
        background: var(--leaf-100);
    }

    .sola-phone span {
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
        color: var(--forest-900);
        font-size: 0.78rem;
        font-weight: 900;
    }

    .sola-quote {
        min-height: 3.35rem;
        justify-content: center;
        font-size: 0.8rem;
    }
}

@media (max-width: 620px) {
    .sola-brand-copy small {
        display: none;
    }

    .sola-brand-copy strong {
        font-size: 0.9rem;
        letter-spacing: 0.11em;
    }

    .sola-menu-toggle-label {
        display: none;
    }

    .sola-menu-toggle {
        width: 3.2rem;
        padding: 0;
        justify-content: center;
        border-radius: 50% 50% 50% 18%;
    }

    .sola-nav-actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sola-menu *,
    .sola-menu *::before,
    .sola-menu *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* Le lien d’évitement reste accessible au-dessus du menu fixe. */
.skip-link { z-index: 10020; }
