:root {
    --bg: #f5f7f2;
    --surface: #ffffff;
    --surface-soft: #edf3e8;
    --surface-dark: #10221a;
    --surface-dark-2: #173327;
    --text: #1a201c;
    --text-muted: #5b665f;
    --line: #d7e2d4;
    --brand: #2f7a45;
    --brand-strong: #245f36;
    --brand-light: #d4e8d8;
    --accent: #d79d3f;
    --danger-soft: #f7ede4;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 8px 18px rgba(16, 34, 26, 0.08);
    --shadow-md: 0 14px 30px rgba(16, 34, 26, 0.13);
    --shadow-lg: 0 28px 52px rgba(16, 34, 26, 0.24);
    --container: min(1120px, 92vw);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 100% -10%, rgba(47, 122, 69, 0.09), transparent 38%),
        radial-gradient(circle at 0% 45%, rgba(215, 157, 63, 0.08), transparent 28%),
        var(--bg);
    line-height: 1.58;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(47, 122, 69, 0.22);
    color: var(--surface-dark);
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.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;
}

.skip-link {
    position: absolute;
    left: 0.5rem;
    top: -4rem;
    z-index: 3000;
    background: #fff;
    color: var(--surface-dark);
    padding: 0.72rem 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}

.skip-link:focus {
    top: 0.5rem;
}

:focus-visible {
    outline: 3px solid rgba(47, 122, 69, 0.33);
    outline-offset: 2px;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.06;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(2.1rem, 7vw, 4.45rem);
}

h2 {
    font-size: clamp(1.85rem, 5vw, 3.1rem);
}

h3 {
    font-size: clamp(1.4rem, 3.7vw, 2rem);
}

.overline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 800;
}

.overline::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    padding: 0.86rem 1.25rem;
    color: #fff;
    background: linear-gradient(145deg, var(--brand), var(--brand-strong));
    box-shadow: 0 8px 20px rgba(36, 95, 54, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 12px 24px rgba(36, 95, 54, 0.3);
}

.btn-ghost {
    padding: 0.82rem 1.18rem;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--surface-dark);
}

.btn-sm {
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.site-header {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--surface-dark);
    display: flex;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background: url('../images/background.avif') center/cover no-repeat;
    transform: scale(1.03);
}

.hero-overlay {
    background:
        radial-gradient(circle at 80% 10%, rgba(215, 157, 63, 0.22), transparent 35%),
        linear-gradient(112deg, rgba(16, 34, 26, 0.95) 8%, rgba(16, 34, 26, 0.72) 44%, rgba(16, 34, 26, 0.28) 100%);
}

.navbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    transition: background 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.navbar.scrolled {
    background: rgba(12, 27, 19, 0.82);
    backdrop-filter: blur(11px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-right {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text {
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 0.88rem;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-actions {
    display: inline-flex;
    align-items: center;
}

.nav-auth-btn {
    min-height: 42px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.87rem;
    cursor: pointer;
    white-space: nowrap;
}

.nav-auth-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.nav-auth-btn[data-state='connected'] {
    border-color: rgba(195, 243, 205, 0.92);
    background: rgba(47, 122, 69, 0.42);
}

.nav-auth-btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 4vw;
    right: 4vw;
    border-radius: var(--radius-md);
    background: rgba(16, 34, 26, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.6rem;
}

.nav-menu.is-open {
    display: flex;
}

.nav-menu a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
}

.nav-menu a.is-current {
    color: var(--brand-light);
}

.nav-phone {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.nav-phone svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-menu a.nav-phone::after {
    display: none;
}

.site-header .btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.48);
    color: #fff;
}

.auth-toast-wrap {
    position: fixed;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 2200;
    display: grid;
    gap: 0.5rem;
    width: min(90vw, 350px);
    pointer-events: none;
}

.auth-toast {
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 0.72rem 0.85rem;
    font-size: 0.9rem;
    line-height: 1.42;
    color: #fff;
    background: rgba(16, 34, 26, 0.95);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    animation: toastIn 180ms ease;
}

.auth-toast[data-state='success'] {
    border-color: rgba(152, 218, 165, 0.65);
    background: rgba(24, 83, 41, 0.96);
}

.auth-toast[data-state='error'] {
    border-color: rgba(245, 189, 181, 0.7);
    background: rgba(123, 39, 28, 0.96);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    top: -20px;
    z-index: 2;
    width: min(860px, var(--container));
    margin: auto;
    padding: 8rem 0 4rem;
    display: grid;
    gap: 1.25rem;
    justify-items: center;
    text-align: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.48rem 0.82rem;
    font-size: 0.84rem;
}

.hero-subtitle {
    max-width: 56ch;
    color: rgba(255, 255, 255, 0.9);
    margin-inline: auto;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 0.45rem;
}

.hero-cards {
    margin-top: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
}

.quick-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    padding: 0.6rem 1rem;
    backdrop-filter: blur(3px);
    min-width: min(100%, 275px);
}

.quick-title {
    font-size: 0.77rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
    white-space: nowrap;
}

.quick-value {
    margin-top: 0;
    font-weight: 600;
    opacity: 0.96;
    text-align: center;
}

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: clamp(0.95rem, 2.2vh, 1.5rem);
    transform: translateX(-50%);
    z-index: 3;
    display: grid;
    justify-items: center;
    gap: 0.26rem;
    padding: 0.25rem;
    color: rgba(255, 255, 255, 0.92);
    opacity: 0.92;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator:focus-visible {
    border-radius: 999px;
    outline-color: rgba(255, 255, 255, 0.7);
}

.hero-mouse {
    width: 27px;
    height: 42px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    justify-content: center;
    padding-top: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.hero-wheel {
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    animation: mouseWheel 1.7s ease-in-out infinite;
}

.hero-chevron {
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(255, 255, 255, 0.88);
    border-bottom: 2px solid rgba(255, 255, 255, 0.88);
    box-sizing: border-box;
    transform: translateY(0) rotate(45deg);
    animation: chevronBounce 1.7s ease-in-out infinite;
}

@keyframes mouseWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(12px);
        opacity: 0.18;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes chevronBounce {
    0%,
    100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(5px) rotate(45deg);
        opacity: 1;
    }
}

@media (max-height: 700px) {
    .hero-scroll-indicator {
        display: none;
    }
}

.section {
    padding: 4rem 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1120px, 92vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(93, 108, 99, 0.25), transparent);
    transform: translateX(-50%);
}

.section-soft {
    background: var(--surface-soft);
}

.section-contrast {
    background:
        radial-gradient(circle at 20% 0%, rgba(215, 157, 63, 0.14), transparent 40%),
        linear-gradient(170deg, rgba(14, 31, 23, 0.98), rgba(16, 34, 26, 1));
    color: #f2f6f1;
}

.section-contrast + .section-contrast {
    background: rgba(16, 34, 26, 1);
}

.section-contrast + .section-contrast::before {
    display: none;
}

.section-decor {
    isolation: isolate;
    overflow: hidden;
}

.section-decor > .container {
    position: relative;
    z-index: 2;
}

.section-leaf-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.section-leaf {
    --leaf-shift: 0px;
    --leaf-tilt: -14deg;
    --leaf-twist: 0deg;
    --leaf-random-tilt: 0deg;
    --leaf-x-shift: 0px;
    --leaf-scale: 0.98;
    --leaf-opacity: 0.62;
    --leaf-flip-x: 1;
    --leaf-vein-angle: 20deg;
    position: absolute;
    width: clamp(76px, 12vw, 150px);
    aspect-ratio: 0.84;
    border-radius: 72% 8% 74% 10% / 76% 10% 68% 8%;
    background: linear-gradient(148deg, var(--leaf-color-a, rgba(92, 161, 109, 0.2)), var(--leaf-color-b, rgba(47, 122, 69, 0.08)));
    border: 1px solid var(--leaf-border, rgba(47, 122, 69, 0.18));
    box-shadow: 0 10px 26px rgba(17, 54, 31, 0.08);
    opacity: var(--leaf-opacity);
    transform: translate3d(var(--leaf-x-shift), var(--leaf-shift), 0) rotate(calc(var(--leaf-tilt) + var(--leaf-twist) + var(--leaf-random-tilt))) scale(var(--leaf-scale)) scaleX(var(--leaf-flip-x));
    transform-origin: center;
    will-change: transform;
}

.section-leaf::before {
    content: '';
    position: absolute;
    width: 62%;
    height: 62%;
    left: 14%;
    top: 24%;
    border-radius: 72% 8% 74% 10% / 76% 10% 68% 8%;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.13), var(--leaf-color-c, rgba(96, 160, 113, 0.1)));
}

.section-leaf::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 64%;
    left: 48%;
    top: 18%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(47, 122, 69, 0.05));
    transform: rotate(var(--leaf-vein-angle));
    opacity: 0.68;
}

.section-leaf-left {
    left: -40px;
    top: 24%;
    --leaf-tilt: -16deg;
}

.section-leaf-right {
    --leaf-tilt: 16deg;
    right: -40px;
    top: 38%;
    --leaf-opacity: 0.56;
    --leaf-flip-x: -1;
    display: none;
}

#realisations.section,
#avis.section {
    overflow: hidden;
}

#realisations.section {
    padding-top: calc(4rem + clamp(34px, 6.5vw, 74px));
}

#avis.section {
    padding-bottom: calc(4rem + clamp(34px, 6.5vw, 74px));
}

#realisations.section::before,
#faq.section::before {
    display: none;
}

#zone + #realisations.section::before {
    display: none;
}

#realisations > .container,
#avis > .container {
    position: relative;
    z-index: 2;
}

.section-wave {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    line-height: 0;
    z-index: 1;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: clamp(52px, 9.4vw, 108px);
}

.section-wave-fill {
    fill: var(--bg);
}

.section-wave-top {
    top: 0;
}

#realisations .section-wave-top {
    top: -2px;
}

.section-wave-bottom {
    bottom: 0;
}

#avis .section-wave-bottom {
    bottom: -2px;
}

#faq.section,
#faq.section::before {
    border-top: 0;
    box-shadow: none;
}

.section-head {
    max-width: 72ch;
    margin-bottom: 1.6rem;
}

.section-head p {
    color: var(--text-muted);
}

.section-contrast .section-head p {
    color: rgba(242, 246, 241, 0.8);
}

.trust {
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.trust-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 3px solid var(--brand);
    border-radius: var(--radius-md);
    padding: 1.08rem 1rem;
    box-shadow: var(--shadow-sm);
}

.trust-number {
    font-size: 1.14rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.2rem;
}

.trust-item p:last-child {
    color: var(--text-muted);
}

.process-section {
    padding-top: 2.4rem;
}

.process-grid {
    display: grid;
    gap: 0.9rem;
}

.sap-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(215, 157, 63, 0.18), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(47, 122, 69, 0.16), transparent 32%),
        linear-gradient(145deg, #f9fbf6 0%, #eef5e8 56%, #f7f1e1 100%);
}

.sap-section .section-leaf-left {
    top: 12%;
    --leaf-color-a: rgba(215, 157, 63, 0.24);
    --leaf-color-b: rgba(215, 157, 63, 0.08);
    --leaf-border: rgba(215, 157, 63, 0.18);
}

.sap-section .section-leaf-right {
    top: 55%;
    --leaf-color-a: rgba(47, 122, 69, 0.22);
    --leaf-color-b: rgba(47, 122, 69, 0.09);
    --leaf-border: rgba(47, 122, 69, 0.16);
}

.sap-shell {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: clamp(1.25rem, 4vw, 2.25rem);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.84));
    border: 1px solid rgba(47, 122, 69, 0.14);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.sap-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.18) 0%, rgba(47, 122, 69, 0.06) 50%, rgba(215, 157, 63, 0.09) 100%);
    pointer-events: none;
}

.sap-shell::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 122, 69, 0.16), rgba(47, 122, 69, 0));
    pointer-events: none;
}

.sap-content,
.sap-panel {
    position: relative;
    z-index: 1;
}

.sap-content h2 {
    max-width: none;
    text-wrap: balance;
}

.sap-logo-frame {
    width: min(100%, 260px);
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(47, 122, 69, 0.12);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.sap-logo {
    width: min(100%, 210px);
    height: auto;
    margin: 0 auto;
}

.sap-lead {
    margin-top: 0.9rem;
    max-width: 44ch;
    font-size: clamp(1.02rem, 2.1vw, 1.18rem);
    line-height: 1.6;
    font-weight: 700;
    color: var(--surface-dark);
}

.sap-copy {
    margin-top: 0.8rem;
    max-width: 58ch;
    color: var(--text-muted);
}

.sap-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.sap-actions .btn {
    flex: 1 1 220px;
}

.sap-legal {
    margin-top: 0.9rem;
    max-width: 62ch;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.sap-panel {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.sap-highlight {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(47, 122, 69, 0.12);
    border-radius: var(--radius-md);
    padding: 1rem 1rem 1.05rem;
    box-shadow: var(--shadow-sm);
}

.sap-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
}

.sap-highlight-value {
    font-size: clamp(1.05rem, 2.8vw, 1.75rem);
    font-weight: 800;
    color: var(--brand-strong);
    letter-spacing: 0.02em;
}

.sap-highlight h3 {
    margin-top: 0.2rem;
}

.sap-highlight p {
    margin-top: 0.45rem;
    color: var(--text-muted);
}

.equipment-grid {
    display: grid;
    gap: 0.9rem;
}

.equipment-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.05rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.equipment-card::after {
    content: '';
    position: absolute;
    right: -28px;
    top: -28px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 122, 69, 0.16), rgba(47, 122, 69, 0));
    pointer-events: none;
}

.equipment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.72rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.68rem;
}

.equipment-badge.stihl {
    background: #f57f20;
    color: #fff;
}

.equipment-badge.husqvarna {
    background: #0d4067;
    color: #fff;
}

.equipment-card p {
    color: var(--text-muted);
    margin-top: 0.45rem;
}

.equipment-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
}

.process-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.1rem 1rem 1rem;
    box-shadow: var(--shadow-sm);
}

.process-step {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(140deg, var(--brand), var(--brand-strong));
    margin-bottom: 0.7rem;
}

.process-card p {
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    gap: 0.9rem;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.service-card p {
    margin: 0.45rem 0 0.75rem;
    color: var(--text-muted);
}

.service-card ul {
    display: grid;
    gap: 0.36rem;
}

.service-card li {
    padding-left: 1.1rem;
    position: relative;
}

.service-card li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    position: absolute;
    left: 0;
    top: 0.55rem;
}

.zone-layout {
    display: grid;
    gap: 1rem;
}

.zone-map-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.zone-map {
    width: 100%;
    height: clamp(290px, 48vw, 450px);
    border: 0;
}

.zone-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0.72rem;
    font-weight: 700;
    color: var(--brand-strong);
    background: #f7fbf6;
    border-top: 1px solid var(--line);
}

.zone-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.12rem;
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
}

.zone-list li {
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
    border: 1px solid #c9d8ca;
    background: linear-gradient(145deg, #ffffff, #f4f8f2);
}

.zone-note {
    margin-top: 0.85rem;
    color: var(--text-muted);
}

.zone-contact-row {
    display: flex;
    justify-content: center;
    margin-top: 1.8rem;
}

.zone-contact-btn {
    margin-top: 0;
}

.zone-contact-icon {
    line-height: 1;
}

.carousel {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.62rem;
}

.carousel-track {
    position: relative;
    min-height: 300px;
    width: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.is-active {
    display: block;
    animation: slideFade 380ms ease;
}

@keyframes slideFade {
    from {
        opacity: 0.5;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-slide > img {
    width: 100%;
    border-radius: calc(var(--radius-lg) - 7px);
    height: clamp(230px, 47vw, 560px);
    object-fit: cover;
}

.carousel-slide > figcaption {
    margin-top: 0.82rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-inline: 0.4rem;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(16, 34, 26, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    color: var(--surface-dark);
    font-size: 1.1rem;
    z-index: 5;
}

.carousel-arrow.prev {
    left: 0.75rem;
}

.carousel-arrow.next {
    right: 0.75rem;
}

.carousel-dots {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 0.45rem;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: #bcc8be;
    cursor: pointer;
}

.carousel-dot.is-active {
    background: var(--brand);
}

.carousel-avis {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    margin-inline: 0.35rem;
}

.carousel-avis .carousel-slide figcaption {
    color: rgba(242, 246, 241, 0.82);
}

.carousel-avis .carousel-track {
    min-height: 220px;
}

.carousel-avis[data-carousel-mode='marquee'] {
    overflow: hidden;
    padding: 0.85rem 0;
}

.carousel-avis[data-carousel-mode='marquee']::before,
.carousel-avis[data-carousel-mode='marquee']::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(22px, 6vw, 84px);
    z-index: 3;
    pointer-events: none;
}

.carousel-avis[data-carousel-mode='marquee']::before {
    left: 0;
    background: linear-gradient(90deg, rgba(16, 34, 26, 0.96), rgba(16, 34, 26, 0));
}

.carousel-avis[data-carousel-mode='marquee']::after {
    right: 0;
    background: linear-gradient(270deg, rgba(16, 34, 26, 0.96), rgba(16, 34, 26, 0));
}

.carousel-avis[data-carousel-mode='marquee'] .carousel-track {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    width: max-content;
    min-height: 0;
    will-change: transform;
    animation: reviewMarquee var(--review-marquee-duration, 26s) linear infinite;
}

.carousel-avis[data-carousel-mode='marquee'] .carousel-slide {
    display: block;
    flex: 0 0 min(400px, 84vw);
    width: min(400px, 84vw);
    height: auto;
}

.carousel-avis[data-carousel-mode='marquee'] .carousel-slide.is-active {
    animation: none;
}

.carousel-avis[data-carousel-mode='marquee'] .carousel-arrow,
.carousel-avis[data-carousel-mode='marquee'] .carousel-dots {
    display: none;
}

@keyframes reviewMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-1 * var(--review-marquee-distance, 0px)), 0, 0);
    }
}

.carousel-avis .carousel-arrow {
    background: #fff;
}

.carousel-avis .carousel-arrow.prev {
    left: -12px;
}

.carousel-avis .carousel-arrow.next {
    right: -12px;
}

.carousel-works .carousel-track {
    min-height: 0;
    height: var(--works-slide-height);
}

.works-filter-group {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 0.6rem;
}

.works-filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font: inherit;
    font-weight: 700;
    padding: 0.62rem 0.95rem;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.works-filter-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.3);
}

.works-filter-btn.is-active {
    background: #fff;
    color: var(--surface-dark);
    border-color: #fff;
}

.carousel-works {
    --works-slide-height: clamp(230px, 47vw, 560px);
    background: rgba(12, 23, 18, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    margin-inline: 0.35rem;
    padding: 0;
    overflow: hidden;
}

.carousel-works .works-slide {
    height: 100%;
    position: relative;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
}

.carousel-works .works-slide::before {
    content: '';
    position: absolute;
    top: clamp(0.62rem, 1.9vw, 0.95rem);
    right: clamp(0.62rem, 1.9vw, 0.95rem);
    width: clamp(82px, 13vw, 118px);
    height: clamp(38px, 6vw, 54px);
    border-radius: 12px;
    background: rgba(9, 19, 14, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: none;
    z-index: 3;
}

.carousel-works .works-slide::after {
    content: '';
    position: absolute;
    top: clamp(0.62rem, 1.9vw, 0.95rem);
    right: clamp(0.62rem, 1.9vw, 0.95rem);
    width: clamp(82px, 13vw, 118px);
    height: clamp(38px, 6vw, 54px);
    background: url('../images/logo/logo-transparent-white.png') center / 74% auto no-repeat;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
    pointer-events: none;
    z-index: 4;
}

.carousel-works .carousel-slide > img {
    border-radius: 0;
    height: 100%;
}

.carousel-works .carousel-slide > video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.carousel-works .works-caption {
    position: absolute;
    left: clamp(0.7rem, 2.2vw, 1.05rem);
    bottom: clamp(0.7rem, 2.2vw, 1.05rem);
    margin: 0;
    padding: 0.58rem 0.72rem;
    max-width: min(85%, 420px);
    border-radius: 12px;
    background: rgba(12, 23, 18, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.84rem;
    line-height: 1.42;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.carousel-works .carousel-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.18);
    z-index: 4;
}

.carousel-works .carousel-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #1b5420, #093e02);
}

.works-empty-slide {
    display: none;
    place-content: center;
    justify-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 1.6rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(215, 157, 63, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(10, 20, 15, 0.86), rgba(10, 20, 15, 0.96));
}

.works-empty-slide::before,
.works-empty-slide::after {
    display: none;
}

.works-empty-slide.is-active {
    display: grid;
}

.works-empty-slide h3 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: rgba(255, 255, 255, 0.96);
}

.works-empty-slide p {
    max-width: 36ch;
    color: rgba(255, 255, 255, 0.8);
}

.before-after {
    --before-after-position: 50%;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #09110d;
    touch-action: pan-y;
}

.before-after-image,
.before-after-overlay {
    width: 100%;
    height: 100%;
}

.before-after-image {
    display: block;
    object-fit: cover;
}

.before-after-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 calc(100% - var(--before-after-position)) 0 0);
}

.before-after-overlay .before-after-image {
    width: 100%;
    height: 100%;
}

.before-after-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--before-after-position);
    z-index: 4;
    pointer-events: none;
}

.before-after-divider::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 1px rgba(10, 19, 14, 0.12);
}

.before-after-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(10, 19, 14, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.before-after-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.avis-slide {
    position: relative;
    background: rgba(12, 23, 18, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 1.1rem;
    min-height: 100%;
}

.avis-slide::before {
    content: '"';
    position: absolute;
    right: 1rem;
    top: 0.35rem;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.author {
    margin-top: 0.8rem;
    color: var(--brand-light);
    font-weight: 700;
}

.review-cta-wrap {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.review-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: #fff;
    color: #10221a;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-cta svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.review-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.faq-grid {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 0;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 220ms ease, border-color 220ms ease;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
}

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

.faq-icon {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #bfd0c2;
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: opacity 200ms ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 260ms ease, opacity 260ms ease;
    opacity: 0.65;
}

.faq-answer p {
    overflow: hidden;
    margin: 0;
    padding: 0 1rem 1rem;
}

.faq-item[open] {
    border-color: #bfd0c2;
    box-shadow: var(--shadow-md);
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-item[open] .faq-icon {
    background: var(--brand);
    border-color: var(--brand);
    transform: rotate(180deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
    background: #fff;
}

.faq-item[open] .faq-icon::after {
    opacity: 0;
}

.faq-item p {
    color: var(--text-muted);
}

.contact-wrap {
    display: grid;
    gap: 1.2rem;
}

.contact-intro p {
    color: var(--text-muted);
}

.contact-list {
    margin: 1rem 0;
    display: grid;
    gap: 0.42rem;
}

.contact-list a {
    color: var(--brand-strong);
    text-decoration: underline;
}

.contact-form {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% -10%, rgba(73, 144, 90, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff, #f5faf2);
    border: 1px solid #cfe0cf;
    border-radius: calc(var(--radius-md) + 2px);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 0.9rem;
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, #2f7a45, #6ea74e);
}

.form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed #c8d9ca;
}

.form-kicker {
    font-weight: 800;
    color: var(--brand-strong);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-grid {
    display: grid;
    gap: 0.72rem;
}

.field {
    display: grid;
    gap: 0.34rem;
}

.field-full {
    grid-column: 1 / -1;
}

.field-files {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.52rem 0.7rem;
}

.field-files label {
    white-space: nowrap;
    margin-bottom: 0;
}

.field-files input[type='file'] {
    grid-column: 2 / 3;
    flex: 1;
    min-width: 0;
}

.file-list {
    grid-column: 1 / -1;
    display: grid;
    gap: 0.4rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    border: 1px solid #c5d7c7;
    border-radius: 10px;
    background: #fff;
    padding: 0.42rem 0.5rem;
}

.file-name {
    font-size: 0.86rem;
    color: var(--text-muted);
    overflow-wrap: anywhere;
}

.file-remove {
    border: 1px solid #c5d7c7;
    background: #f1f7f1;
    color: var(--brand-strong);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    flex: 0 0 auto;
}

.file-remove:hover {
    background: #e5f1e5;
}

.contact-form label {
    font-weight: 700;
    font-size: 0.92rem;
}

.field-required {
    color: #b83a2f;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid #c5d7c7;
    border-radius: 12px;
    padding: 0.72rem 0.78rem;
    font: inherit;
    color: var(--text);
    background: rgba(255, 255, 255, 0.95);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8e9c91;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #3b8c50;
    box-shadow: 0 0 0 4px rgba(59, 140, 80, 0.16);
    background: #fff;
    outline: none;
}

.contact-form input[type='file'] {
    padding: 0.56rem;
    border-style: dashed;
    background: #f7fbf6;
}

.contact-form input[type='file']::file-selector-button {
    border: 1px solid #c2d6c4;
    border-radius: 10px;
    padding: 0.45rem 0.7rem;
    margin-right: 0.65rem;
    background: #fff;
    color: var(--brand-strong);
    font-weight: 700;
    cursor: pointer;
}

.field-help {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.field-files .field-help {
    grid-column: 1 / -1;
    margin: 0.05rem 0 0;
}

.field-help[data-state='error'] {
    color: #9a3a2b;
    font-weight: 600;
}

.form-feedback {
    border: 1px solid #c5d7c7;
    border-radius: 10px;
    padding: 0.58rem 0.7rem;
    font-size: 0.9rem;
}

.form-feedback[data-state='success'] {
    background: #eef8ee;
    color: #1f5d32;
    border-color: #afd4b5;
}

.form-feedback[data-state='error'] {
    background: #fdf1ef;
    color: #9a3a2b;
    border-color: #e8beb8;
}

.contact-form .btn {
    width: 100%;
    margin-top: 0.2rem;
}

.admin-section {
    border-top: 1px solid var(--line);
}

body[data-page='admin'] #main-content {
    padding-top: 5.6rem;
}

.admin-grid {
    display: grid;
    gap: 1rem;
}

.admin-auth-grid {
    align-items: start;
}

.admin-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    display: grid;
    gap: 0.85rem;
}

.admin-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.admin-auth-card[hidden] {
    display: none;
}

.admin-form {
    display: grid;
    gap: 0.55rem;
    border: 1px dashed #c7d8ca;
    border-radius: 12px;
    padding: 0.8rem;
    background: #f8fcf7;
}

.admin-form label {
    font-weight: 700;
    font-size: 0.9rem;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    border: 1px solid #c5d7c7;
    border-radius: 10px;
    padding: 0.58rem 0.66rem;
    font: inherit;
    color: var(--text);
    background: #fff;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    border-color: #3b8c50;
    box-shadow: 0 0 0 4px rgba(59, 140, 80, 0.16);
    outline: none;
}

.admin-auth-note {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.admin-auth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.2rem;
}

.admin-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-weight: 700;
}

.admin-check input[type='checkbox'] {
    width: 18px;
    height: 18px;
    margin-top: 0.08rem;
    accent-color: var(--brand);
}

.admin-optional-group,
.admin-item-row {
    display: grid;
    gap: 0.45rem;
    padding: 0.72rem;
    border: 1px dashed #c7d8ca;
    border-radius: 12px;
    background: #fff;
}

.admin-item-row[hidden],
.admin-optional-group[hidden] {
    display: none;
}

.admin-field-help {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.admin-list {
    display: grid;
    gap: 0.72rem;
}

.admin-item {
    border: 1px solid #d2dfd1;
    border-radius: 12px;
    background: #fff;
    padding: 0.7rem;
    display: grid;
    gap: 0.6rem;
}

.admin-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.55rem;
}

.admin-item-thumb {
    width: 88px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #ccdbcd;
    background: #f3f8f2;
}

.admin-item-video {
    width: 136px;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #ccdbcd;
    background: #f3f8f2;
    display: block;
    flex: 0 0 auto;
}

.admin-item-thumb-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-item-meta {
    display: grid;
    gap: 0.28rem;
}

.admin-item-title {
    font-weight: 700;
    color: var(--text);
}

.admin-item-subtitle {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.admin-item-badge {
    width: fit-content;
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
    background: #edf7ec;
    color: var(--brand-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.admin-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-btn {
    border: 1px solid #c0d2c2;
    border-radius: 999px;
    background: #f7fbf6;
    color: var(--brand-strong);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 0.72rem;
    cursor: pointer;
}

.admin-btn:hover {
    background: #edf7ec;
}

.admin-btn-danger {
    border-color: #e2b9b2;
    color: #8f3327;
    background: #fdf3f1;
}

.admin-empty {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.site-footer {
    background: linear-gradient(165deg, #10221a, #0d1b15);
    color: rgba(255, 255, 255, 0.92);
    padding: 2rem 0 5.6rem;
}

.footer-main {
    display: grid;
    gap: 1.3rem;
    align-items: center;
    text-align: center;
}

.footer-brand-block {
    display: grid;
    gap: 0.7rem;
    justify-items: center;
}

.footer-nav {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.52rem;
    font-size: 0.95rem;
    justify-self: center;
    text-align: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.84);
}

.footer-nav a:hover {
    color: #fff;
}

.footer-address {
    color: rgba(255, 255, 255, 0.76);
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.footer-address a {
    color: #e7f5ea;
}

.footer-legal {
    width: 100%;
    justify-self: stretch;
    align-self: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.85rem;
    margin-top: 0.2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-divider {
    height: 1px;
    margin-top: 1rem;
    margin-bottom: 0.9rem;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}

.footer-note {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.86rem;
}

.footer-madeby {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
}

.footer-madeby a {
    color: #e7f5ea;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 750;
    padding: 0.6rem max(0.8rem, env(safe-area-inset-left)) calc(0.6rem + env(safe-area-inset-bottom)) max(0.8rem, env(safe-area-inset-right));
    background: rgba(11, 25, 18, 0.95);
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    transform: translateY(110%);
    transition: transform 240ms ease;
}

.mobile-cta.visible {
    transform: translateY(0);
}

.mobile-cta-link {
    border-radius: 999px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.93rem;
}

.mobile-cta-call {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-cta-quote {
    background: linear-gradient(145deg, var(--brand), var(--brand-strong));
    color: #fff;
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 5.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--brand), var(--brand-strong));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
    z-index: 720;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.legal-main {
    padding: 7rem 0 3rem;
}

.legal-hero {
    margin-bottom: 1.4rem;
}

.legal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.05rem;
    margin-bottom: 0.75rem;
}

.legal-card h2 {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    margin-bottom: 0.45rem;
}

.legal-card p,
.legal-card li {
    color: var(--text-muted);
}

.legal-card ul {
    list-style: disc;
    padding-left: 1.2rem;
}

.legal-back {
    margin-top: 1rem;
}

@media (hover: hover) {
    .process-card:hover,
    .equipment-card:hover,
    .service-card:hover,
    .trust-item:hover,
    .faq-item:hover,
    .zone-box:hover,
    .zone-map-wrap:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .carousel-arrow:hover {
        background: #fff;
    }

    .carousel-dot:hover {
        transform: scale(1.08);
    }
}

@media (min-width: 768px) {
    .section-leaf {
        width: clamp(96px, 12.8vw, 190px);
    }

    .section-leaf-right {
        display: block;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .hero-content {
        top: -26px;
        gap: 1.45rem;
        padding-top: 9rem;
    }

    .hero-cards {
        flex-wrap: nowrap;
    }

    .trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 2.4rem;
    }

    .zone-layout {
        grid-template-columns: 1.3fr 1fr;
        align-items: stretch;
    }

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

    .sap-shell {
        grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.95fr);
        align-items: center;
        gap: 1.4rem;
    }

    .sap-content {
        padding-right: 0.5rem;
    }

    .sap-content h2 {
        white-space: nowrap;
    }

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

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

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

    .contact-wrap {
        grid-template-columns: 1fr 1.15fr;
        align-items: start;
        gap: 1.6rem;
    }

    .admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    body[data-page='admin'] #main-content {
        padding-top: 6.1rem;
    }

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

    .contact-form .btn {
        width: auto;
        justify-self: start;
    }

    .footer-main {
        grid-template-columns: 1fr auto 1fr;
        justify-content: space-between;
        align-items: start;
        text-align: left;
    }

    .footer-brand-block {
        justify-self: start;
        justify-items: start;
    }

    .footer-address {
        text-align: left;
    }

    .footer-nav {
        justify-self: center;
    }

    .footer-legal {
        width: auto;
        justify-self: end;
        text-align: right;
        border-top: 0;
        padding-top: 0;
        margin-top: 0;
    }

    .mobile-cta {
        grid-template-columns: 160px 190px;
        justify-content: end;
        left: auto;
        right: 1rem;
        width: auto;
        border-radius: 16px;
        padding: 0.5rem;
        bottom: 1rem;
        background: rgba(11, 25, 18, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.13);
    }

    .back-to-top {
        bottom: 1rem;
        right: 13.3rem;
    }

    .carousel-avis {
        margin-inline: 1.2rem;
    }

    .carousel-works {
        margin-inline: 1.2rem;
    }

    .carousel-avis .carousel-arrow.prev {
        left: -21px;
    }

    .carousel-avis .carousel-arrow.next {
        right: -21px;
    }
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-right {
        gap: 0.85rem;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.1rem;
        margin-top: 0;
        border: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu a {
        transition: color 170ms ease;
        position: relative;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: var(--brand-light);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 180ms ease;
    }

    .nav-menu a:hover::after,
    .nav-menu a.is-current::after {
        transform: scaleX(1);
    }

    .nav-menu a.nav-phone::after {
        display: none;
    }

    .hero-content {
        top: -30px;
        max-width: 72ch;
    }

    .trust {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .section {
        padding: 5.2rem 0;
    }

    .carousel-arrow {
        width: 46px;
        height: 46px;
    }

    .mobile-cta {
        display: none;
    }

    .site-footer {
        padding-bottom: 2rem;
    }

    .back-to-top {
        right: 1rem;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    .section-leaf {
        transform: none !important;
    }

    .hero-wheel,
    .hero-chevron {
        animation: none !important;
    }

    .carousel-avis[data-carousel-mode='marquee'] .carousel-track {
        animation: none !important;
        width: 100%;
        flex-direction: column;
    }

    .carousel-avis[data-carousel-mode='marquee'] .carousel-slide {
        width: 100%;
        flex-basis: auto;
    }
}
