    :root {
      --bg: rgb(25, 26, 25);
      --bg-card: rgb(35, 36, 35);
      --accent: rgb(26, 161, 26);
      --text: #FFFFFF;
      --text-muted: #AAAAAA;
      --font-title: "Orbitron", sans-serif;
      --font-body: "Exo 2", sans-serif;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
      --dur-sm: 0.2s;
      --dur-md: 0.38s;
      --dur-lg: 0.65s;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      background-color: var(--bg);
      background-image:
        linear-gradient(rgba(25, 26, 25, 0.84), rgba(25, 26, 25, 0.88)),
        url("assets/images/background.png");
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }

    @media (max-width: 900px) {
      body { background-attachment: scroll; }
    }

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

    header[id], section[id] { scroll-margin-top: 4.75rem; }

    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem 0.75rem;
      padding: 0.55rem 1rem;
      min-height: 3.1rem;
      background: rgba(25, 26, 25, 0.92);
      border-bottom: 1px solid rgba(26, 161, 26, 0.25);
      backdrop-filter: blur(10px);
      transition:
        box-shadow var(--dur-md) var(--ease-out),
        border-color var(--dur-md) var(--ease-out),
        padding var(--dur-md) var(--ease-out);
    }

    .nav-brand {
      font-family: var(--font-title);
      font-weight: 800;
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      line-height: 1.2;
      white-space: nowrap;
      flex-shrink: 0;
      transition: transform var(--dur-sm) var(--ease-spring), filter var(--dur-sm) ease;
    }

    .nav-brand:hover {
      transform: scale(1.02);
      filter: brightness(1.08);
    }

    .nav-brand .w { color: var(--text); }
    .nav-brand .g { color: var(--accent); }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      min-width: 0;
      flex-shrink: 1;
    }

    .nav-loc {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      min-width: 0;
      color: var(--text-muted);
      font-size: clamp(0.58rem, 1.65vw, 0.72rem);
      line-height: 1.25;
      padding-left: 0.65rem;
      border-left: 1px solid rgba(26, 161, 26, 0.3);
      text-decoration: none;
      cursor: pointer;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }

    .nav-loc:hover,
    .nav-loc:focus-visible {
      color: var(--text);
      background: rgba(26, 161, 26, 0.08);
      outline: none;
    }

    .nav-gps-icon {
      display: inline-flex;
      flex-shrink: 0;
      animation: navGpsFloat 2.8s ease-in-out infinite;
    }

    .nav-gps-icon svg {
      width: 1rem;
      height: 1rem;
      display: block;
      fill: var(--accent);
      animation: navGpsSpin 5.5s ease-in-out infinite;
      transform-origin: center center;
    }

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

    @keyframes navGpsSpin {
      0%, 82% { transform: rotate(0deg); }
      92% { transform: rotate(360deg); }
      100% { transform: rotate(360deg); }
    }

    .nav-loc-text { min-width: 0; }

    .tiktok-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding-left: 0.65rem;
      border-left: 1px solid rgba(26, 161, 26, 0.3);
      color: var(--text-muted);
      font-size: clamp(0.58rem, 1.65vw, 0.72rem);
      font-weight: 600;
      white-space: nowrap;
      transition: color 0.2s, background 0.2s;
      border-radius: 4px;
    }

    .tiktok-link:hover,
    .tiktok-link:focus-visible {
      color: var(--text);
      outline: none;
    }

    .tiktok-link svg {
      width: 1rem;
      height: 1rem;
      flex-shrink: 0;
      fill: var(--accent);
    }

    @media (min-width: 900px) {
      .nav-loc { font-size: 0.74rem; gap: 0.45rem; }
      .tiktok-link { font-size: 0.74rem; }
    }

    .footer-tiktok {
      display: flex;
      width: 100%;
      margin-top: 0.65rem;
      justify-content: center;
      border-left: none;
      padding-left: 0;
      font-size: 0.88rem;
    }

    .nav-vacation {
      display: none;
      pointer-events: none;
    }

    .site-nav.has-vacation-nav .nav-vacation.is-visible {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 6;
      max-width: min(52vw, 22rem);
      padding: 0.4rem 0.85rem;
      text-align: center;
      background: rgba(35, 28, 12, 0.95);
      border: 1px solid rgba(255, 200, 80, 0.65);
      border-radius: 8px;
      box-shadow: 0 0 24px rgba(255, 180, 50, 0.2);
      pointer-events: auto;
    }

    .nav-vacation-text {
      font-family: var(--font-title);
      font-size: clamp(0.58rem, 1.5vw, 0.76rem);
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #ffe08a;
      line-height: 1.3;
      white-space: nowrap;
    }

    .promo-popup-backdrop[hidden] {
      display: none !important;
      pointer-events: none !important;
    }

    .promo-popup-backdrop {
      position: fixed;
      inset: 0;
      z-index: 10080;
      display: none;
      pointer-events: none;
      align-items: center;
      justify-content: center;
      background: rgba(4, 12, 6, 0.72);
      padding: 1rem;
    }

    .promo-popup-backdrop.is-open {
      display: flex;
      pointer-events: auto;
    }

    .promo-popup {
      position: relative;
      width: min(28rem, 100%);
      padding: 1.2rem 1.2rem 1.1rem;
      border-radius: 16px;
      border: 1px solid rgba(31, 180, 73, 0.55);
      background:
        radial-gradient(circle at 16% 20%, rgba(255, 220, 120, 0.18), transparent 44%),
        linear-gradient(145deg, rgba(16, 84, 38, 0.96), rgba(8, 40, 19, 0.98));
      box-shadow: 0 0 30px rgba(31, 180, 73, 0.26);
      color: #eaffea;
      text-align: center;
      outline: none;
    }

    .promo-popup-close {
      position: absolute;
      top: 0.45rem;
      right: 0.55rem;
      width: 1.8rem;
      height: 1.8rem;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.28);
      color: #ffffff;
      font-size: 1.05rem;
      line-height: 1;
      cursor: pointer;
    }

    .promo-popup-close:hover {
      background: rgba(0, 0, 0, 0.4);
    }

    .promo-popup-clover {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.1rem;
      height: 2.1rem;
      border-radius: 999px;
      margin-bottom: 0.45rem;
      font-size: 1.25rem;
      color: #f6cf66;
      background: rgba(0, 0, 0, 0.26);
      border: 1px solid rgba(246, 207, 102, 0.45);
      box-shadow: 0 0 18px rgba(246, 207, 102, 0.25);
    }

    .promo-popup-kicker {
      margin: 0;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(232, 255, 232, 0.9);
    }

    .promo-popup-title {
      margin: 0.2rem 0 0.35rem;
      font-family: var(--font-title);
      font-size: 1.12rem;
      letter-spacing: 0.05em;
      color: #b8ffb8;
    }

    .promo-popup-text {
      margin: 0;
      font-size: 0.92rem;
      line-height: 1.45;
      color: #e8ffe8;
    }

    @media (max-width: 959px) {
      .site-nav.has-vacation-nav {
        padding-bottom: 2.35rem;
      }

      .site-nav.has-vacation-nav .nav-vacation.is-visible {
        position: absolute;
        left: 50%;
        top: auto;
        bottom: 0.35rem;
        transform: translateX(-50%);
        max-width: calc(100% - 1.5rem);
      }

      .nav-vacation-text {
        white-space: normal;
        text-align: center;
      }
    }

    body.has-vacation-banner header[id],
    body.has-vacation-banner section[id] {
      scroll-margin-top: 5.75rem;
    }

    .nav-tabs {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 0.15rem;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      flex: 1;
      justify-content: flex-end;
      min-width: 0;
    }

    .nav-tabs::-webkit-scrollbar { display: none; }

    .nav-tabs a {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.45rem 0.5rem;
      border-radius: 4px;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--text-muted);
      white-space: nowrap;
      transition:
        color var(--dur-sm) var(--ease-out),
        background var(--dur-sm) var(--ease-out),
        box-shadow var(--dur-sm) var(--ease-out),
        transform var(--dur-sm) var(--ease-spring);
    }

    .nav-tabs a svg {
      width: 1rem;
      height: 1rem;
      flex-shrink: 0;
      fill: currentColor;
      color: var(--accent);
      transition: transform var(--dur-md) var(--ease-spring);
    }

    .nav-tabs a:hover,
    .nav-tabs a:focus-visible {
      color: var(--text);
      background: rgba(26, 161, 26, 0.12);
      outline: none;
      transform: translateY(-1px);
    }

    .nav-tabs a:hover svg,
    .nav-tabs a:focus-visible svg {
      transform: scale(1.08);
    }

    @media (min-width: 900px) {
      .nav-tabs a { font-size: 0.78rem; padding: 0.5rem 0.65rem; }
      .nav-brand { font-size: 0.82rem; }
    }

    .section-divider {
      height: 1px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      background: linear-gradient(90deg, transparent, rgba(26, 161, 26, 0.35), transparent);
    }

    .section-divider::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(26, 161, 26, 0.85), transparent);
      transform: translateX(-60%);
      animation: dividerShimmer 4.5s ease-in-out infinite;
      opacity: 0.5;
      pointer-events: none;
    }

    @keyframes dividerShimmer {
      0% { transform: translateX(-70%); opacity: 0.15; }
      45% { transform: translateX(70%); opacity: 0.55; }
      100% { transform: translateX(70%); opacity: 0.15; }
    }

    /* Grain overlay */
    .grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem 1.25rem;
      position: relative;
      isolation: isolate;
      background-color: rgb(22, 23, 22);
      background-image:
        radial-gradient(ellipse 85% 70% at 85% 100%, rgba(26, 161, 26, 0.32), transparent 50%),
        linear-gradient(180deg, rgba(19, 20, 19, 0.4) 0%, rgba(25, 26, 25, 0.5) 45%, rgba(19, 20, 19, 0.58) 100%),
        url("assets/images/background_2.png");
      background-size: auto, auto, cover;
      background-position: center, center, calc(50% + var(--hero-parallax, 0px)) center;
      background-repeat: no-repeat;
    }

    .hero .logo-text,
    .hero .tagline {
      text-shadow: 0 2px 28px rgba(0, 0, 0, 0.95), 0 1px 10px rgba(0, 0, 0, 0.85);
    }

    .hero .logo-text .green {
      text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 0 24px rgba(26, 161, 26, 0.35);
    }

    .hero .subtag {
      text-shadow: 0 1px 18px rgba(0, 0, 0, 0.95);
    }

    .hero-inner { position: relative; z-index: 1; max-width: 900px; }

    .logo-text {
      font-family: var(--font-title);
      font-weight: 800;
      font-size: clamp(2rem, 6vw, 3.5rem);
      letter-spacing: 0.08em;
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }

    .logo-text .white { color: var(--text); }
    .logo-text .green { color: var(--accent); }

    .tagline {
      font-size: clamp(1.1rem, 3vw, 1.45rem);
      font-weight: 500;
      color: var(--text);
      margin-bottom: 0.5rem;
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.35s;
    }

    .subtag {
      color: var(--text-muted);
      font-size: 0.95rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.55s;
    }

    .hero .logo-text {
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.15s;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .btn-devis-glow {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 3px;
      border-radius: 6px;
      overflow: hidden;
      isolation: isolate;
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.75s;
    }

    .btn-devis-glow__spin {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 220%;
      height: 220%;
      transform: translate(-50%, -50%);
      background: conic-gradient(
        from 0deg,
        #1aa11a,
        #b8ff5a,
        #1aa11a,
        #fff44f,
        #1aa11a,
        #00d4aa,
        #1aa11a,
        #7dff7d,
        #1aa11a
      );
      animation: devis-ring-spin 3.2s linear infinite;
    }

    @keyframes devis-ring-spin {
      to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .btn-devis {
      position: relative;
      z-index: 1;
      font-family: var(--font-title);
      font-size: clamp(0.78rem, 2.5vw, 0.88rem);
      letter-spacing: 0.1em;
      padding: 0.95rem 1.65rem;
      background: var(--bg-card);
      color: var(--accent);
      border: none;
      cursor: pointer;
      border-radius: 4px;
      font-weight: 700;
      text-transform: uppercase;
      box-shadow: inset 0 0 0 1px rgba(26, 161, 26, 0.45);
      transition:
        color var(--dur-sm) var(--ease-out),
        box-shadow var(--dur-sm) var(--ease-out),
        transform var(--dur-sm) var(--ease-spring);
    }

    .btn-devis:hover,
    .btn-devis:focus-visible {
      color: var(--text);
      box-shadow: inset 0 0 0 1px rgba(26, 161, 26, 0.75), 0 0 18px rgba(26, 161, 26, 0.35);
      outline: none;
      transform: translateY(-2px);
    }

    .btn-devis:active {
      transform: scale(0.97) translateY(0);
    }

    .contact-devis-wrap {
      display: flex;
      justify-content: center;
      margin: 0 auto 1.75rem;
    }

    .devis-backdrop {
      z-index: 10060;
    }

    .devis-dialog {
      width: 100%;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .devis-dialog::-webkit-scrollbar {
      width: 0;
      height: 0;
    }

    .devis-dialog {
      width: 100%;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .devis-dialog::-webkit-scrollbar {
      width: 0;
      height: 0;
    }


    .auth-dialog.devis-dialog .devis-scroll {
      padding: 1.5rem 1.35rem 2rem;
    }

    @media (min-width: 600px) {
      .auth-dialog.devis-dialog .devis-scroll {
        padding: 1.75rem 2rem 2.25rem;
      }
    }

    .auth-dialog.devis-dialog .devis-x {
      position: absolute;
      top: 0.85rem;
      right: 0.85rem;
      z-index: 3;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      border: 1px solid rgba(26, 161, 26, 0.35);
      background: rgba(30, 31, 30, 0.9);
      color: var(--accent);
      font-size: 1.35rem;
      line-height: 1;
      cursor: pointer;
      font-family: var(--font-title);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .auth-dialog.devis-dialog .devis-x:hover,
    .auth-dialog.devis-dialog .devis-x:focus-visible {
      background: var(--accent);
      color: var(--bg);
      box-shadow: 0 0 20px rgba(26, 161, 26, 0.45);
      outline: none;
      transform: scale(1.05);
    }

    .auth-dialog.devis-dialog .devis-hero {
      margin-bottom: 1.35rem;
      padding-right: 2.75rem;
    }

    .auth-dialog.devis-dialog .devis-kicker {
      font-family: var(--font-title);
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 0.4rem;
      opacity: 0.95;
    }

    .auth-dialog.devis-dialog .devis-title {
      font-family: var(--font-title);
      font-size: clamp(1.15rem, 3.2vw, 1.55rem);
      font-weight: 800;
      letter-spacing: 0.08em;
      line-height: 1.2;
      margin: 0 0 0.5rem;
      text-align: left;
      color: var(--text);
    }

    .auth-dialog.devis-dialog .devis-title span {
      color: var(--accent);
    }

    .auth-dialog.devis-dialog .devis-lead {
      font-size: 0.82rem;
      line-height: 1.45;
      color: var(--text-muted);
      margin: 0;
      max-width: 52rem;
    }

    .auth-dialog.devis-dialog #form-devis.devis-form {
      max-width: none;
      width: 100%;
      margin: 0;
    }

    .auth-dialog.devis-dialog .devis-layout {
      display: grid;
      gap: 1.35rem;
      align-items: start;
    }

    @media (min-width: 880px) {
      .auth-dialog.devis-dialog .devis-layout {
        grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
        gap: 1.5rem 1.85rem;
      }
    }

    .auth-dialog.devis-dialog .devis-fieldset {
      border: none;
      margin: 0;
      padding: 0;
      min-width: 0;
    }

    .auth-dialog.devis-dialog .devis-card {
      background: rgba(32, 34, 32, 0.92);
      border: 1px solid rgba(26, 161, 26, 0.14);
      border-radius: 12px;
      padding: 1.1rem 1.15rem 1.15rem;
      margin: 0 0 0.85rem;
      position: relative;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    .auth-dialog.devis-dialog .devis-card:last-child {
      margin-bottom: 0;
    }

    .auth-dialog.devis-dialog .devis-card--schedule {
      background: linear-gradient(180deg, rgba(28, 42, 30, 0.55) 0%, rgba(26, 28, 26, 0.95) 38%);
      border-color: rgba(26, 161, 26, 0.28);
    }

    .auth-dialog.devis-dialog .devis-card--schedule::before {
      content: "";
      position: absolute;
      top: 0;
      left: 1rem;
      right: 1rem;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.65;
    }

    .auth-dialog.devis-dialog .devis-fieldset legend,
    .auth-dialog.devis-dialog .devis-card-legend {
      font-family: var(--font-title);
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(200, 255, 200, 0.88);
      margin: 0 0 0.75rem;
      display: block;
      width: 100%;
      padding-bottom: 0.45rem;
      border-bottom: 1px solid rgba(26, 161, 26, 0.15);
    }

    .auth-dialog.devis-dialog .devis-hint {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin: 0.65rem 0 0;
      line-height: 1.45;
    }

    .auth-dialog.devis-dialog .devis-main-grid {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    @media (min-width: 520px) {
      .auth-dialog.devis-dialog .devis-pair {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem;
      }

      .auth-dialog.devis-dialog .devis-pair .devis-card {
        margin-bottom: 0;
      }
    }

    .auth-dialog.devis-dialog .devis-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      width: 100%;
    }

    .auth-dialog.devis-dialog .devis-card .devis-chips {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
      gap: 0.45rem;
    }

    .auth-dialog.devis-dialog .devis-chip {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(20, 21, 20, 0.65);
      padding: 0.55rem 0.65rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
      min-height: 2.5rem;
    }

    .auth-dialog.devis-dialog .devis-chip:hover {
      transform: translateY(-2px);
      border-color: rgba(26, 161, 26, 0.35);
      color: var(--text);
    }

    .auth-dialog.devis-dialog .devis-chip:has(input:checked) {
      border-color: var(--accent);
      background: rgba(26, 161, 26, 0.22);
      color: var(--text);
      box-shadow: 0 0 22px rgba(26, 161, 26, 0.2);
      transform: translateY(-1px);
    }

    .auth-dialog.devis-dialog .devis-chip:has(input:checked):hover {
      transform: translateY(-3px);
    }

    .auth-dialog.devis-dialog .devis-chip input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .auth-dialog.devis-dialog .devis-chip:focus-within {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .auth-dialog.devis-dialog .devis-cal-wrap {
      width: 100%;
      border: none;
      background: transparent;
      padding: 0.15rem 0 0;
      border-radius: 0;
    }

    .auth-dialog.devis-dialog .devis-cal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      margin-bottom: 0.75rem;
    }

    .auth-dialog.devis-dialog .devis-cal-title {
      font-family: var(--font-title);
      font-size: 0.88rem;
      letter-spacing: 0.1em;
      color: var(--text);
      text-transform: capitalize;
    }

    .auth-dialog.devis-dialog .devis-cal-nav {
      width: 2.4rem;
      height: 2.4rem;
      border-radius: 50%;
      border: 1px solid rgba(26, 161, 26, 0.28);
      background: rgba(24, 26, 24, 0.95);
      color: var(--accent);
      font-size: 1.1rem;
      line-height: 1;
      cursor: pointer;
      font-family: var(--font-title);
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
    }

    .auth-dialog.devis-dialog .devis-cal-nav:hover:not(:disabled),
    .auth-dialog.devis-dialog .devis-cal-nav:focus-visible:not(:disabled) {
      background: rgba(26, 161, 26, 0.18);
      border-color: var(--accent);
      outline: none;
      transform: scale(1.06);
    }

    .auth-dialog.devis-dialog .devis-cal-nav:disabled {
      opacity: 0.28;
      cursor: not-allowed;
    }

    .auth-dialog.devis-dialog .devis-cal-weeknames {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 0.25rem;
      margin-bottom: 0.4rem;
      padding: 0.35rem 0.15rem;
      border-radius: 8px;
      background: rgba(26, 161, 26, 0.07);
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: rgba(180, 220, 180, 0.75);
      text-align: center;
      font-family: var(--font-title);
      text-transform: uppercase;
    }

    .auth-dialog.devis-dialog .devis-cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 0.35rem;
      padding: 0.15rem 0;
    }

    .auth-dialog.devis-dialog .devis-cal-cell {
      aspect-ratio: 1;
      min-height: 0;
      max-height: 2.65rem;
      margin: 0 auto;
      width: 100%;
      max-width: 2.65rem;
      border: none;
      background: transparent;
      color: var(--text-muted);
      font-size: 0.76rem;
      font-family: var(--font-body);
      font-weight: 600;
      cursor: default;
      border-radius: 50%;
      padding: 0;
      transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    }

    .auth-dialog.devis-dialog .devis-cal-cell.is-out {
      opacity: 0.22;
      pointer-events: none;
    }

    .auth-dialog.devis-dialog .devis-cal-cell.is-day {
      cursor: pointer;
      color: var(--text);
      background: rgba(38, 40, 38, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .auth-dialog.devis-dialog .devis-cal-cell.is-day:hover:not(:disabled),
    .auth-dialog.devis-dialog .devis-cal-cell.is-day:focus-visible:not(:disabled) {
      background: rgba(26, 161, 26, 0.2);
      border-color: rgba(26, 161, 26, 0.55);
      outline: none;
      box-shadow: 0 0 14px rgba(26, 161, 26, 0.2);
    }

    .auth-dialog.devis-dialog .devis-cal-cell.is-day:disabled {
      opacity: 0.28;
      cursor: not-allowed;
    }

    .auth-dialog.devis-dialog .devis-cal-cell.is-full {
      text-decoration: line-through;
      opacity: 0.22;
    }

    .auth-dialog.devis-dialog .devis-cal-cell.is-vacation {
      text-decoration: line-through;
      opacity: 0.18;
      color: rgba(255, 200, 80, 0.55);
    }

    .auth-dialog.devis-dialog .devis-vacation-notice {
      margin: 0 0 0.75rem;
      padding: 0.55rem 0.75rem;
      border-radius: 10px;
      background: rgba(255, 200, 80, 0.1);
      border: 1px solid rgba(255, 200, 80, 0.35);
      color: #ffd88a;
      font-size: 0.82rem;
      line-height: 1.45;
    }

    .auth-dialog.devis-dialog .devis-cal-cell.is-today:not(.is-selected) {
      box-shadow: 0 0 0 2px rgba(26, 161, 26, 0.55);
    }

    .auth-dialog.devis-dialog .devis-cal-cell.is-selected {
      background: var(--accent);
      color: var(--bg);
      border-color: var(--accent);
      font-weight: 800;
      box-shadow: 0 0 20px rgba(26, 161, 26, 0.45);
    }

    .auth-dialog.devis-dialog .devis-time-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(26, 161, 26, 0.12);
    }

    .auth-dialog.devis-dialog .devis-time-label {
      font-family: var(--font-title);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(200, 220, 200, 0.75);
      margin: 0;
    }

    .auth-dialog.devis-dialog .devis-time-input {
      padding: 0.55rem 0.9rem;
      background: rgba(18, 19, 18, 0.9);
      border: 1px solid rgba(26, 161, 26, 0.35);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.95rem;
      border-radius: 10px;
      min-width: 7.5rem;
    }

    .auth-dialog.devis-dialog .devis-aside-extras {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(26, 161, 26, 0.12);
    }

    .auth-dialog.devis-dialog .devis-field-label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(200, 220, 200, 0.85);
      margin-bottom: 0.35rem;
      font-family: var(--font-title);
      letter-spacing: 0.06em;
    }

    .auth-dialog.devis-dialog .devis-optional {
      font-weight: 400;
      opacity: 0.65;
      letter-spacing: 0.02em;
    }

    .auth-dialog.devis-dialog .devis-field-input {
      width: 100%;
      padding: 0.55rem 0.85rem;
      background: rgba(18, 19, 18, 0.9);
      border: 1px solid rgba(26, 161, 26, 0.28);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.88rem;
      border-radius: 10px;
      box-sizing: border-box;
    }

    .auth-dialog.devis-dialog .devis-field-input:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 1px;
      border-color: rgba(26, 161, 26, 0.55);
    }

    .auth-dialog.devis-dialog .devis-field-input:disabled {
      opacity: 0.75;
      cursor: not-allowed;
      background: rgba(18, 19, 18, 0.5);
      color: var(--text-muted);
      border-color: rgba(26, 161, 26, 0.14);
    }

    .auth-dialog.devis-dialog .devis-field-textarea {
      min-height: 4.5rem;
      resize: vertical;
      line-height: 1.45;
    }

    .auth-dialog.devis-dialog .devis-estimate {
      margin: 0;
      padding: 1.1rem 1.2rem;
      border-radius: 12px;
      border: 1px solid rgba(26, 161, 26, 0.35);
      background: linear-gradient(135deg, rgba(26, 161, 26, 0.12) 0%, rgba(18, 22, 18, 0.92) 55%);
      width: 100%;
    }

    .auth-dialog.devis-dialog .devis-estimate-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem 1.25rem;
      margin-bottom: 0.45rem;
    }

    @media (max-width: 520px) {
      .auth-dialog.devis-dialog .devis-estimate-cols {
        grid-template-columns: 1fr;
      }
    }

    .auth-dialog.devis-dialog .devis-estimate-col strong {
      font-family: var(--font-title);
      font-size: 0.65rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(200, 255, 200, 0.9);
      display: block;
      margin-bottom: 0.35rem;
    }

    .auth-dialog.devis-dialog .devis-estimate strong {
      font-family: var(--font-title);
      font-size: 0.65rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(200, 255, 200, 0.9);
      display: block;
      margin-bottom: 0.35rem;
    }

    .auth-dialog.devis-dialog .devis-estimate-price {
      color: #c8ffb8;
    }

    .auth-dialog.devis-dialog .devis-estimate-val {
      display: block;
      font-family: var(--font-title);
      font-size: clamp(1.35rem, 3.5vw, 1.85rem);
      font-weight: 800;
      color: var(--accent);
      margin: 0 0 0.45rem;
      letter-spacing: 0.06em;
      text-shadow: 0 0 28px rgba(26, 161, 26, 0.25);
    }

    .auth-dialog.devis-dialog .devis-estimate-note {
      font-size: 0.72rem;
      color: var(--text-muted);
      line-height: 1.45;
      margin: 0;
    }

    .auth-dialog.devis-dialog .devis-estimate-promo {
      margin: 0 0 0.5rem;
      font-size: 0.78rem;
      color: #ffe08a;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .auth-dialog.devis-dialog .devis-submit-btn {
      width: 100%;
      margin-top: 0.25rem;
      padding: 1rem 1.25rem;
      font-family: var(--font-title);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      background: var(--accent);
      color: var(--bg);
      box-shadow: 0 4px 24px rgba(26, 161, 26, 0.35);
      transition:
        transform var(--dur-sm) var(--ease-spring),
        box-shadow var(--dur-sm) var(--ease-out),
        filter var(--dur-sm) var(--ease-out);
    }

    .auth-dialog.devis-dialog .devis-submit-btn:hover,
    .auth-dialog.devis-dialog .devis-submit-btn:focus-visible {
      filter: brightness(1.08);
      box-shadow: 0 6px 32px rgba(26, 161, 26, 0.45);
      outline: none;
      transform: translateY(-2px);
    }

    .auth-dialog.devis-dialog .devis-submit-btn:active {
      transform: scale(0.98) translateY(0);
    }

    .auth-dialog.devis-dialog .devis-submit-msg {
      font-size: 0.8rem;
      min-height: 1.25rem;
      margin-top: 0.65rem;
      text-align: center;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Sections */
    section {
      padding: 4rem 1.25rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      font-family: var(--font-title);
      font-size: clamp(1.5rem, 4vw, 2rem);
      text-align: center;
      margin-bottom: 2.5rem;
      letter-spacing: 0.06em;
    }

    .section-title span { color: var(--accent); }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition:
        opacity var(--dur-lg) var(--ease-out),
        transform var(--dur-lg) var(--ease-out);
    }

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

    /* Cards formules */
    .cards-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 900px) {
      .cards-grid {
        grid-template-columns: 1fr 1.15fr 1fr;
        align-items: stretch;
      }
    }

    .card {
      background: var(--bg-card);
      border: 1px solid rgba(26, 161, 26, 0.25);
      padding: 1.75rem 1.5rem;
      position: relative;
      transition:
        transform var(--dur-md) var(--ease-out),
        box-shadow var(--dur-md) var(--ease-out),
        border-color var(--dur-md) var(--ease-out);
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), rgba(26, 161, 26, 0.4));
    }

    .card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        transparent 38%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 62%
      );
      transform: translateX(-120%);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .card:hover::after {
      opacity: 1;
      animation: cardShine 0.9s var(--ease-out) forwards;
    }

    @keyframes cardShine {
      from { transform: translateX(-120%); }
      to { transform: translateX(120%); }
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(26, 161, 26, 0.35);
      border-color: var(--accent);
    }

    .card.featured {
      border-color: var(--accent);
      box-shadow: 0 0 18px rgba(26, 161, 26, 0.25);
    }

    @media (min-width: 900px) {
      .card.featured { transform: scale(1.02); }
      .card.featured:hover { transform: scale(1.02) translateY(-8px); }
    }

    .card--pack-gold {
      overflow: hidden;
      isolation: isolate;
      border-radius: 10px;
      border: 2px solid rgba(212, 175, 55, 0.75);
      box-shadow:
        0 0 0 1px rgba(255, 236, 180, 0.35),
        0 0 28px rgba(255, 200, 80, 0.35),
        0 0 52px rgba(255, 170, 40, 0.12),
        inset 0 0 40px rgba(255, 220, 140, 0.06);
      animation: packGoldAura 2.4s ease-in-out infinite;
      cursor: pointer;
    }

    .card--pack-gold::before {
      height: 4px;
      background: linear-gradient(
        90deg,
        #6b5420,
        #ffd700,
        #fffacd,
        #ffe55c,
        #daa520,
        #fff8dc,
        #ffd700,
        #6b5420
      );
      background-size: 220% 100%;
      animation: packGoldBarSweep 2.8s ease-in-out infinite;
    }

    .card--pack-gold > .card-icon,
    .card--pack-gold > h3,
    .card--pack-gold > .card-price,
    .card--pack-gold > ul {
      position: relative;
      z-index: 2;
    }

    .card-pack-link {
      position: absolute;
      inset: 0;
      z-index: 8;
      border-radius: 10px;
    }

    .card-pack-link:focus-visible {
      outline: 2px solid #ffe066;
      outline-offset: 3px;
      z-index: 9;
    }

    .card--pack-gold::after {
      z-index: 3;
      background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255, 248, 200, 0.28) 50%,
        transparent 65%
      );
    }

    .card--pack-gold:hover::after {
      opacity: 1;
      animation: cardShine 0.9s var(--ease-out);
    }

    .card--pack-gold:not(:hover)::after {
      opacity: 0;
      transform: translateX(-120%);
      animation: none;
    }

    .card--pack-gold:hover {
      border-color: #ffe066;
      box-shadow:
        0 0 0 2px rgba(255, 240, 180, 0.5),
        0 0 36px rgba(255, 215, 100, 0.5),
        0 0 72px rgba(255, 180, 50, 0.2),
        inset 0 0 48px rgba(255, 250, 220, 0.1);
    }

    @keyframes packGoldAura {
      0%, 100% {
        box-shadow:
          0 0 0 1px rgba(255, 236, 180, 0.3),
          0 0 22px rgba(255, 200, 80, 0.28),
          0 0 48px rgba(255, 170, 40, 0.1),
          inset 0 0 36px rgba(255, 220, 140, 0.05);
      }
      50% {
        box-shadow:
          0 0 0 2px rgba(255, 248, 210, 0.55),
          0 0 38px rgba(255, 225, 130, 0.55),
          0 0 80px rgba(255, 190, 70, 0.22),
          inset 0 0 52px rgba(255, 255, 230, 0.1);
      }
    }

    @keyframes packGoldBarSweep {
      0% { background-position: 0% 50%; }
      100% { background-position: 220% 50%; }
    }

    .card-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      background: var(--accent);
      color: var(--bg);
      padding: 0.35rem 0.65rem;
      font-family: var(--font-title);
    }

    .card-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 0.85rem;
    }

    .card-icon img {
      width: clamp(4rem, 11vw, 5.75rem);
      height: clamp(4rem, 11vw, 5.75rem);
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
      transition: transform var(--dur-md) var(--ease-spring);
    }

    .card:hover .card-icon img {
      transform: scale(1.08);
    }

    .card-icon--seat-nudge img {
      transform: translateX(-25px);
    }

    .card:hover .card-icon--seat-nudge img {
      transform: translateX(-25px) scale(1.08);
    }

    .card h3 {
      font-family: var(--font-title);
      font-size: 1rem;
      letter-spacing: 0.06em;
      margin-bottom: 0.5rem;
    }

    .card-price {
      color: var(--accent);
      font-weight: 700;
      font-size: 1.15rem;
      margin-bottom: 1.25rem;
    }

    .card ul {
      list-style: none;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

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

    .card li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent);
      font-size: 0.75rem;
    }

    /* Galerie avant/après — carrousel */
    .gallery-carousel {
      position: relative;
      max-width: 920px;
      margin: 0 auto;
      padding: 0 3rem;
      --g-n: 4;
    }

    .gallery-viewport {
      overflow: hidden;
      border: 1px solid rgba(26, 161, 26, 0.2);
      width: 100%;
      transition: box-shadow var(--dur-md) var(--ease-out), border-color var(--dur-md) var(--ease-out);
    }

    .gallery-carousel:hover .gallery-viewport {
      border-color: rgba(26, 161, 26, 0.45);
      box-shadow: 0 0 28px rgba(26, 161, 26, 0.12);
    }

    .gallery-slides {
      display: flex;
      width: calc(var(--g-n) * 100%);
      transition: transform 0.55s var(--ease-out);
    }

    .gallery-slide {
      flex: 0 0 calc(100% / var(--g-n));
      width: calc(100% / var(--g-n));
      min-width: 0;
    }

    .gallery-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 2.5rem;
      height: 2.5rem;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(26, 161, 26, 0.55);
      background: rgba(25, 26, 25, 0.95);
      color: var(--accent);
      cursor: pointer;
      transition:
        background var(--dur-sm) var(--ease-out),
        color var(--dur-sm) var(--ease-out),
        box-shadow var(--dur-sm) var(--ease-out),
        transform var(--dur-sm) var(--ease-spring);
    }

    .gallery-btn svg {
      width: 1.25rem;
      height: 1.25rem;
      fill: currentColor;
    }

    .gallery-btn:hover,
    .gallery-btn:focus-visible {
      background: var(--accent);
      color: var(--bg);
      box-shadow: 0 0 16px rgba(26, 161, 26, 0.35);
      outline: none;
      transform: translateY(-50%) scale(1.06);
    }

    .gallery-btn-prev { left: 0; }
    .gallery-btn-next { right: 0; }

    .gallery-counter {
      text-align: center;
      margin-top: 1rem;
      font-family: var(--font-title);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      color: var(--text-muted);
    }

    .gallery-counter .current { color: var(--accent); }

    .compare-pair {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0;
      align-items: stretch;
      min-height: 0;
    }

    .compare-side {
      background: rgb(45, 46, 45);
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      padding: 0;
      overflow: hidden;
      min-height: 0;
      color: var(--text-muted);
      font-size: 0.85rem;
      text-align: center;
    }

    .compare-thumb {
      display: block;
      width: 100%;
      padding: 0;
      margin: 0;
      border: none;
      background: rgb(35, 36, 35);
      cursor: zoom-in;
      line-height: 0;
      overflow: hidden;
      transition:
        box-shadow var(--dur-sm) var(--ease-out),
        outline var(--dur-sm) var(--ease-out),
        transform var(--dur-md) var(--ease-out);
    }

    .compare-thumb img {
      transition: transform var(--dur-md) var(--ease-out);
    }

    .compare-thumb:hover img,
    .compare-thumb:focus-visible img {
      transform: scale(1.04);
    }

    .compare-thumb:hover,
    .compare-thumb:focus-visible {
      box-shadow: inset 0 0 0 2px rgba(26, 161, 26, 0.55);
      outline: none;
      transform: translateY(-2px);
    }

    .compare-thumb:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .compare-side img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      display: block;
    }

    @media (min-width: 480px) {
      .compare-side img { height: 120px; }
    }

    @media (min-width: 768px) {
      .compare-side img { height: 140px; }
    }

    .compare-label {
      font-family: var(--font-title);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      padding: 0.5rem;
      color: var(--text);
      background: rgba(25, 26, 25, 0.92);
      flex-shrink: 0;
    }

    .compare-divider {
      width: 3px;
      background: var(--accent);
      min-height: 100%;
      align-self: stretch;
    }

    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 10000;
      align-items: center;
      justify-content: center;
      padding: 3rem 1rem 1.5rem;
      background: rgba(12, 13, 12, 0.94);
      cursor: zoom-out;
    }

    .lightbox.is-open { display: flex; }

    .lightbox img {
      max-width: min(98vw, 1800px);
      max-height: calc(100vh - 3.25rem);
      width: auto;
      height: auto;
      object-fit: contain;
      cursor: default;
      box-shadow: 0 0 40px rgba(26, 161, 26, 0.15);
    }

    .lightbox-close {
      position: absolute;
      top: 0.65rem;
      right: 0.75rem;
      width: 2.5rem;
      height: 2.5rem;
      border: 1px solid rgba(26, 161, 26, 0.5);
      background: rgba(25, 26, 25, 0.9);
      color: var(--accent);
      font-family: var(--font-title);
      font-size: 1.35rem;
      line-height: 1;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    .lightbox-close:hover,
    .lightbox-close:focus-visible {
      background: var(--accent);
      color: var(--bg);
      outline: none;
    }

    /* Contact */
    .contact-section {
      text-align: center;
    }

    .contact-section .section-title { margin-bottom: 1.5rem; }

    .phone-big {
      font-family: var(--font-title);
      font-size: clamp(1.5rem, 5vw, 2.25rem);
      color: var(--accent);
      display: inline-block;
      margin: 0.5rem 0 1rem;
      animation: pulseSoft 2.5s ease-in-out infinite;
    }

    @keyframes pulseSoft {
      0%, 100% { opacity: 1; text-shadow: 0 0 0 transparent; }
      50% { opacity: 0.92; text-shadow: 0 0 12px rgba(26, 161, 26, 0.45); }
    }

    .contact-loc {
      color: var(--text-muted);
      margin-bottom: 1.25rem;
      font-size: 0.95rem;
    }

    .contact-map-wrap {
      display: flex;
      justify-content: center;
      margin: 0 auto 1.25rem;
    }

    .contact-map-thumb {
      display: block;
      width: fit-content;
      max-width: min(100%, 300px);
      padding: 0;
      margin: 0;
      border: 1px solid rgba(26, 161, 26, 0.35);
      background: rgb(35, 36, 35);
      cursor: zoom-in;
      border-radius: 4px;
      overflow: hidden;
      line-height: 0;
      transition:
        box-shadow var(--dur-sm) var(--ease-out),
        transform var(--dur-md) var(--ease-out);
    }

    .contact-map-thumb:hover,
    .contact-map-thumb:focus-visible {
      box-shadow: 0 0 20px rgba(26, 161, 26, 0.35);
      outline: none;
      transform: translateY(-3px) scale(1.02);
    }

    .contact-map-thumb:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .contact-map-thumb img {
      display: block;
      width: auto;
      height: auto;
      max-width: min(100vw - 3rem, 280px);
      max-height: 140px;
    }

    .contact-form-wrap {
      max-width: 28rem;
      margin: 2rem auto 0;
      text-align: left;
    }

    .contact-form-title {
      font-family: var(--font-title);
      font-size: 1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 1rem;
      text-align: center;
    }

    .contact-form label {
      display: block;
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 0.75rem 0 0.35rem;
    }

    .contact-form label:first-of-type { margin-top: 0; }

    .contact-opt { font-weight: 400; opacity: 0.75; }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.65rem 0.75rem;
      border: 1px solid rgba(26, 161, 26, 0.35);
      border-radius: 4px;
      background: rgb(35, 36, 35);
      color: var(--text);
      font: inherit;
    }

    .contact-form textarea {
      min-height: 7rem;
      resize: vertical;
    }

    .contact-hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .contact-submit {
      margin-top: 1rem;
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid var(--accent);
      border-radius: 4px;
      background: rgba(26, 161, 26, 0.12);
      color: var(--accent);
      font-family: var(--font-title);
      font-size: 0.9rem;
      cursor: pointer;
      transition: background var(--dur-sm) var(--ease-out);
    }

    .contact-submit:hover,
    .contact-submit:focus-visible {
      background: rgba(26, 161, 26, 0.22);
      outline: none;
    }

    .contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

    .contact-feedback {
      margin: 0.75rem 0 0;
      font-size: 0.9rem;
      min-height: 1.25rem;
    }

    .contact-feedback.ok { color: var(--accent); }
    .contact-feedback.err { color: #ff6b6b; }

    .form-simple {
      max-width: 420px;
      margin: 0 auto;
      text-align: left;
    }

    .form-simple label {
      display: block;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
      margin-top: 1rem;
    }

    .form-simple label:first-of-type { margin-top: 0; }

    .form-simple input,
    .form-simple textarea {
      width: 100%;
      padding: 0.75rem;
      background: var(--bg-card);
      border: 1px solid rgba(26, 161, 26, 0.3);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.95rem;
    }

    .form-simple textarea { min-height: 100px; resize: vertical; }

    .form-simple button[type="submit"] {
      margin-top: 1.25rem;
      width: 100%;
      padding: 0.85rem;
      font-family: var(--font-title);
      letter-spacing: 0.08em;
      background: transparent;
      color: var(--accent);
      border: 2px solid var(--accent);
      cursor: pointer;
      transition:
        background var(--dur-sm) var(--ease-out),
        color var(--dur-sm) var(--ease-out),
        transform var(--dur-sm) var(--ease-spring),
        box-shadow var(--dur-sm) var(--ease-out);
    }

    .form-simple button[type="submit"]:hover {
      background: var(--accent);
      color: var(--bg);
      box-shadow: 0 6px 22px rgba(26, 161, 26, 0.3);
      transform: translateY(-2px);
    }

    .form-simple button[type="submit"]:active {
      transform: scale(0.98) translateY(0);
    }

    /* Footer */
    footer {
      padding: 2rem 1.25rem;
      text-align: center;
      border-top: 1px solid rgba(26, 161, 26, 0.2);
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    footer a {
      color: var(--accent);
      transition: color var(--dur-sm) ease, text-decoration-color var(--dur-sm) ease;
    }

    footer a:hover {
      color: #7dff9a;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.35rem 0.5rem;
      margin: 0.75rem 0;
      font-size: 0.8rem;
    }

    .footer-legal span {
      opacity: 0.45;
    }

    /* Pages légales */
    .legal-page {
      min-height: 100vh;
      padding: 2rem 1.25rem 3rem;
      max-width: 42rem;
      margin: 0 auto;
    }

    .legal-card {
      margin-top: 1.5rem;
      padding: 1.75rem 1.5rem;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(26, 161, 26, 0.22);
      box-shadow: 0 0 40px rgba(26, 161, 26, 0.06);
    }

    .legal-title {
      font-family: var(--font-title);
      font-size: clamp(1.35rem, 4vw, 1.75rem);
      letter-spacing: 0.04em;
      margin-bottom: 0.35rem;
    }

    .legal-title span {
      color: var(--accent);
    }

    .legal-updated {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }

    .legal-card h2 {
      font-family: var(--font-title);
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(200, 220, 200, 0.9);
      margin: 1.35rem 0 0.5rem;
    }

    .legal-card p,
    .legal-card li {
      font-size: 0.9rem;
      line-height: 1.55;
      color: var(--text-muted);
      margin-bottom: 0.65rem;
    }

    .legal-card ul {
      padding-left: 1.15rem;
      margin-bottom: 0.75rem;
    }

    .legal-card a {
      color: var(--accent);
    }

    .legal-card code {
      font-size: 0.82em;
      color: rgba(200, 220, 200, 0.85);
    }

    .legal-back {
      margin-top: 1.5rem !important;
      padding-top: 1rem;
      border-top: 1px solid rgba(26, 161, 26, 0.15);
    }

    .auth-page-legal {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.35rem 0.5rem;
      margin-top: 1.25rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .auth-page-legal a {
      color: var(--accent);
    }

    .auth-legal-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.45;
      margin: 0.25rem 0 0.75rem;
    }

    .auth-legal-note a {
      color: var(--accent);
    }

    .cookie-banner {
      position: fixed;
      z-index: 9999;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      max-width: 36rem;
      margin: 0 auto;
      padding: 1rem 1.1rem;
      border-radius: 14px;
      background: rgba(18, 19, 18, 0.96);
      border: 1px solid rgba(26, 161, 26, 0.4);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem 1rem;
    }

    .cookie-banner-text {
      flex: 1 1 14rem;
      margin: 0;
      font-size: 0.82rem;
      line-height: 1.45;
      color: var(--text-muted);
    }

    .cookie-banner-text a {
      color: var(--accent);
    }

    .cookie-banner-actions {
      display: flex;
      gap: 0.5rem;
      flex-shrink: 0;
    }

    .cookie-banner-btn {
      padding: 0.5rem 0.9rem;
      border-radius: 8px;
      font-family: var(--font-title);
      font-size: 0.68rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      border: 1px solid rgba(26, 161, 26, 0.45);
      background: rgba(26, 161, 26, 0.15);
      color: #b8ffb8;
    }

    .cookie-banner-btn:hover {
      background: rgba(26, 161, 26, 0.28);
    }

    .nav-auth {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.45rem 0.5rem;
      border-radius: 4px;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--text-muted);
      background: transparent;
      border: 1px solid rgba(26, 161, 26, 0.35);
      cursor: pointer;
      font-family: var(--font-body);
      white-space: nowrap;
      transition:
        color var(--dur-sm) var(--ease-out),
        background var(--dur-sm) var(--ease-out),
        transform var(--dur-sm) var(--ease-spring),
        box-shadow var(--dur-sm) var(--ease-out);
    }

    .nav-auth:hover,
    .nav-auth:focus-visible {
      color: var(--text);
      background: rgba(26, 161, 26, 0.12);
      outline: none;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    }

    @media (min-width: 900px) {
      .nav-auth { font-size: 0.78rem; padding: 0.5rem 0.65rem; }
    }

    .nav-auth svg {
      width: 1rem;
      height: 1rem;
      flex-shrink: 0;
      fill: var(--accent);
    }

    .nav-auth-email {
      max-width: 8rem;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .nav-auth-badge {
      position: absolute;
      top: -0.35rem;
      right: -0.35rem;
      min-width: 1.15rem;
      height: 1.15rem;
      padding: 0 0.3rem;
      border-radius: 999px;
      font-family: var(--font-title);
      font-size: 0.58rem;
      font-weight: 700;
      line-height: 1.15rem;
      text-align: center;
      color: var(--bg);
      background: #ff5c5c;
      border: 1px solid rgba(255, 255, 255, 0.35);
      box-shadow: 0 0 10px rgba(255, 92, 92, 0.45);
    }

    .nav-admin {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.5rem 0.75rem;
      font-family: var(--font-title);
      font-size: 0.68rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #ffd88a;
      background: rgba(255, 200, 80, 0.1);
      border: 1px solid rgba(255, 200, 80, 0.45);
      cursor: pointer;
      white-space: nowrap;
    }

    .nav-admin:hover,
    .nav-admin:focus-visible {
      background: rgba(255, 200, 80, 0.22);
      outline: none;
    }

    .nav-admin-badge {
      position: absolute;
      top: -0.35rem;
      right: -0.35rem;
      min-width: 1.15rem;
      height: 1.15rem;
      padding: 0 0.3rem;
      border-radius: 999px;
      font-family: var(--font-title);
      font-size: 0.58rem;
      font-weight: 700;
      line-height: 1.15rem;
      text-align: center;
      color: var(--bg);
      background: #ff5c5c;
      border: 1px solid rgba(255, 255, 255, 0.35);
      box-shadow: 0 0 12px rgba(255, 80, 80, 0.55);
      animation: navAdminBadgePop 0.45s var(--ease-out);
    }

    @keyframes navAdminBadgePop {
      0% { transform: scale(0.5); opacity: 0; }
      70% { transform: scale(1.15); }
      100% { transform: scale(1); opacity: 1; }
    }

    .nav-admin svg {
      width: 1rem;
      height: 1rem;
      fill: currentColor;
      flex-shrink: 0;
    }

    .auth-backdrop {
      display: flex;
      position: fixed;
      inset: 0;
      z-index: 10050;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: rgba(12, 13, 12, 0.88);
      backdrop-filter: blur(6px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition:
        opacity var(--dur-md) var(--ease-out),
        visibility 0s linear var(--dur-md);
    }

    .auth-backdrop.is-open {
      z-index: 10090;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition:
        opacity var(--dur-md) var(--ease-out),
        visibility 0s linear 0s;
    }

    .auth-backdrop > .auth-dialog {
      transform: translateY(28px) scale(0.96);
      opacity: 0;
      transition:
        transform 0.48s var(--ease-out),
        opacity 0.35s var(--ease-out);
    }

    .auth-backdrop.is-open > .auth-dialog {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .auth-dialog {
      width: 100%;
      background: var(--bg-card);
      border: 1px solid rgba(26, 161, 26, 0.35);
      padding: 1.75rem 2rem;
      position: relative;
      overflow-y: auto;
    }

    .auth-dialog.devis-dialog {
      max-width: min(calc(100vw - 1rem), 1200px);
      max-height: min(98vh, 1000px);
      padding: 0;
      border: none;
      border-radius: 16px;
      overflow: hidden auto;
      background:
        linear-gradient(165deg, rgba(40, 44, 40, 0.97) 0%, rgba(22, 24, 22, 0.99) 42%, rgba(18, 20, 18, 1) 100%);
      box-shadow:
        0 0 0 1px rgba(26, 161, 26, 0.22),
        0 28px 100px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    #auth-dialog-root {
      max-width: min(calc(100vw - 1rem), 840px);
      max-height: min(98vh, 1000px);
    }

    .auth-close {
      position: absolute;
      top: 0.5rem;
      right: 0.5rem;
      width: 2.25rem;
      height: 2.25rem;
      border: 1px solid rgba(26, 161, 26, 0.45);
      background: rgba(25, 26, 25, 0.95);
      color: var(--accent);
      font-size: 1.25rem;
      line-height: 1;
      cursor: pointer;
      font-family: var(--font-title);
    }

    .auth-close:hover,
    .auth-close:focus-visible {
      background: var(--accent);
      color: var(--bg);
      outline: none;
    }

    .auth-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 1.25rem;
      border-bottom: 1px solid rgba(26, 161, 26, 0.2);
    }

    .auth-tab {
      flex: 1;
      padding: 0.65rem;
      font-family: var(--font-title);
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      background: transparent;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
    }

    .auth-tab[aria-selected="true"] {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    .auth-panel[hidden] { display: none !important; }

    .auth-msg {
      font-size: 0.8rem;
      margin-bottom: 0.75rem;
      min-height: 1.25rem;
    }

    .auth-msg.err { color: #ff6b6b; }
    .auth-msg.ok { color: var(--accent); }

    .auth-hint {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 1rem;
      text-align: center;
    }

    .auth-dialog.client-dialog {
      display: flex;
      flex-direction: column;
      width: min(calc(100vw - 1.25rem), 1280px);
      max-width: min(calc(100vw - 1.25rem), 1280px);
      height: min(calc(100vh - 1.25rem), 920px);
      max-height: min(calc(100vh - 1.25rem), 920px);
      padding: 0;
      overflow: hidden;
      border-radius: 22px;
      background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 161, 26, 0.12), transparent 55%),
        linear-gradient(165deg, rgba(38, 42, 38, 0.98) 0%, rgba(20, 22, 20, 1) 50%, rgba(14, 16, 14, 1) 100%);
      box-shadow:
        0 0 0 1px rgba(26, 161, 26, 0.28),
        0 32px 120px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
      opacity: 0;
      transform: translateY(20px) scale(0.97);
      transition:
        opacity 0.45s var(--ease-out),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .auth-backdrop.is-open > .client-dialog.client-dialog--ready {
      opacity: 1;
      transform: none;
    }

    .client-shell-head {
      flex-shrink: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 0.85rem 1.25rem;
      padding: 1.35rem 1.5rem 0.85rem;
      border-bottom: 1px solid rgba(26, 161, 26, 0.18);
      background: linear-gradient(180deg, rgba(26, 161, 26, 0.06), transparent);
    }

    .client-shell-brand {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .client-shell-meta .ac-kicker {
      margin-bottom: 0.15rem;
    }

    .client-shell-title {
      font-size: clamp(1.05rem, 2.2vw, 1.35rem);
      margin: 0;
    }

    .client-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      justify-content: flex-end;
    }

    .client-tab {
      padding: 0.5rem 0.85rem;
      font-family: var(--font-title);
      font-size: 0.62rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 999px;
      color: var(--text-muted);
      cursor: pointer;
      transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s var(--ease-out);
    }

    .client-tab:hover {
      color: var(--text);
      border-color: rgba(26, 161, 26, 0.35);
    }

    .client-tab[aria-selected="true"] {
      color: var(--bg);
      border-color: var(--accent);
      background: linear-gradient(135deg, #2bc02b, var(--accent));
      box-shadow: 0 0 20px rgba(26, 161, 26, 0.4);
    }

    .client-tab-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 1.1rem;
      height: 1.1rem;
      margin-left: 0.35rem;
      padding: 0 0.3rem;
      border-radius: 999px;
      font-size: 0.65rem;
      font-weight: 700;
      line-height: 1;
      color: #1a1a1a;
      background: #ffd88a;
    }

    .client-tab--pulse {
      animation: clientTabPop 0.38s var(--ease-out);
    }

    @keyframes clientTabPop {
      0% { transform: scale(1); }
      45% { transform: scale(0.92); }
      100% { transform: scale(1); }
    }

    .client-msg {
      flex-shrink: 0;
      font-size: 0.78rem;
      min-height: 0;
      margin: 0 1.5rem;
      padding: 0;
      border-radius: 8px;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease, margin 0.25s ease;
    }

    .client-msg.ok,
    .client-msg.err {
      min-height: 1.2rem;
      max-height: 4rem;
      opacity: 1;
      margin: 0.35rem 1.5rem 0;
      padding: 0.45rem 0.65rem;
    }

    .client-msg.ok {
      color: #9ee89e;
      background: rgba(26, 161, 26, 0.12);
      border: 1px solid rgba(26, 161, 26, 0.28);
    }

    .client-msg.err {
      color: #ff8f8f;
      background: rgba(255, 107, 107, 0.1);
      border: 1px solid rgba(255, 107, 107, 0.25);
    }

    .client-stage {
      position: relative;
      flex: 1 1 auto;
      min-height: 0;
      margin: 0 1.25rem 1.25rem;
      border-radius: 16px;
      border: 1px solid rgba(26, 161, 26, 0.15);
      background: rgba(0, 0, 0, 0.22);
      overflow: hidden;
    }

    .client-panel {
      position: absolute;
      inset: 0;
      display: none;
      flex-direction: column;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition:
        opacity 0.32s ease,
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .client-panel.is-active {
      display: flex;
      opacity: 1;
      pointer-events: auto;
      transform: none;
    }

    .client-panel.client-panel--anim {
      animation: clientPanelIn 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes clientPanelIn {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: none; }
    }

    .client-panel[hidden] {
      display: none !important;
    }

    .client-panel-inner {
      flex: 1 1 auto;
      min-height: 0;
      overflow: auto;
      padding: 1rem 1.15rem 1.15rem;
      scrollbar-width: thin;
      scrollbar-color: rgba(26, 161, 26, 0.45) transparent;
    }

    .client-panel-inner::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }

    .client-panel-inner::-webkit-scrollbar-thumb {
      background: rgba(26, 161, 26, 0.4);
      border-radius: 6px;
    }

    .client-panel-inner--profil {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      padding: 1rem 1.15rem 1.25rem;
    }

    .ac-prof-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      flex-shrink: 0;
    }

    .ac-prof-tab {
      padding: 0.45rem 0.75rem;
      font-family: var(--font-title);
      font-size: 0.6rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 999px;
      color: var(--text-muted);
      cursor: pointer;
      transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
    }

    .ac-prof-tab:hover {
      color: var(--text);
      border-color: rgba(26, 161, 26, 0.35);
    }

    .ac-prof-tab[aria-selected="true"] {
      color: var(--bg);
      border-color: var(--accent);
      background: linear-gradient(135deg, #2bc02b, var(--accent));
      box-shadow: 0 0 16px rgba(26, 161, 26, 0.35);
    }

    .ac-prof-tab--pulse {
      animation: clientTabPop 0.38s var(--ease-out);
    }

    .ac-prof-stage {
      position: relative;
      flex: 1 1 auto;
      min-height: 0;
    }

    .ac-prof-panel {
      display: none;
      opacity: 0;
      transform: translateY(8px);
      transition:
        opacity 0.28s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .ac-prof-panel.is-active {
      display: block;
      opacity: 1;
      transform: none;
    }

    .ac-prof-panel.ac-prof-panel--anim {
      animation: clientPanelIn 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .ac-prof-panel[hidden] {
      display: none !important;
    }

    .ac-prof-panel .ac-card {
      max-width: 520px;
    }

    .client-toast {
      position: absolute;
      bottom: 1rem;
      left: 50%;
      z-index: 30;
      transform: translateX(-50%) translateY(120%);
      opacity: 0;
      pointer-events: none;
      padding: 0.65rem 1.35rem;
      border-radius: 10px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      background: rgba(18, 20, 18, 0.97);
      border: 1px solid rgba(26, 161, 26, 0.45);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
      transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease;
      max-width: calc(100% - 2rem);
      text-align: center;
    }

    .client-toast.is-show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    .client-toast.ok {
      border-color: rgba(26, 161, 26, 0.65);
      color: var(--accent);
    }

    .client-toast.err {
      border-color: rgba(255, 100, 100, 0.55);
      color: #ff9a9a;
    }

    .client-dialog .ac-close {
      position: absolute;
      top: 0.65rem;
      right: 0.65rem;
      z-index: 2;
      width: 2.35rem;
      height: 2.35rem;
      border-radius: 10px;
      border: 1px solid rgba(26, 161, 26, 0.4);
      background: rgba(20, 22, 20, 0.9);
      color: var(--accent);
      font-size: 1.2rem;
      line-height: 1;
      cursor: pointer;
      font-family: var(--font-title);
    }

    .ac-close:hover,
    .ac-close:focus-visible {
      background: var(--accent);
      color: var(--bg);
      outline: none;
    }

    .ac-avatar {
      flex-shrink: 0;
      width: 3.25rem;
      height: 3.25rem;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-family: var(--font-title);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--bg);
      background: linear-gradient(135deg, var(--accent) 0%, rgb(18, 120, 18) 100%);
      box-shadow: 0 6px 24px rgba(26, 161, 26, 0.35);
    }

    .ac-kicker {
      font-size: 0.65rem;
      font-family: var(--font-title);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.2rem;
    }

    .ac-title {
      font-family: var(--font-title);
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      line-height: 1.15;
      margin: 0;
    }

    .ac-title span { color: var(--accent); }

    .ac-email {
      margin: 0.35rem 0 0;
      font-size: 0.78rem;
      color: var(--text-muted);
      word-break: break-all;
    }

    .ac-rdv-grid {
      display: grid;
      gap: 1rem;
      height: 100%;
      align-content: start;
    }

    @media (min-width: 640px) {
      .ac-rdv-grid { grid-template-columns: 1fr 1fr; }
    }

    .ac-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(26, 161, 26, 0.14);
      border-radius: 14px;
      padding: 0.85rem 0.9rem 1rem;
    }

    .ac-card-h {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-family: var(--font-title);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      margin: 0 0 0.65rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(26, 161, 26, 0.12);
    }

    .ac-dot {
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .ac-dot--up { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
    .ac-dot--past { background: var(--text-muted); }

    .ac-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .ac-rdv-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.65rem;
      padding: 0.55rem 0.6rem;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .ac-rdv-main {
      display: grid;
      gap: 0.2rem;
      min-width: 0;
      flex: 1;
    }

    .ac-rdv-cancel {
      flex-shrink: 0;
      padding: 0.35rem 0.55rem;
      border-radius: 8px;
      border: 1px solid rgba(255, 100, 100, 0.4);
      background: rgba(255, 80, 80, 0.1);
      color: #ff9a9a;
      font-family: var(--font-title);
      font-size: 0.62rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .ac-rdv-cancel:hover:not(:disabled) {
      background: rgba(255, 80, 80, 0.2);
    }

    .ac-rdv-cancel:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .ac-rdv-row--anim {
      animation: clientRowIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
      animation-delay: calc(var(--i, 0) * 45ms);
    }

    @keyframes clientRowIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: none; }
    }

    .ac-rdv-date {
      font-size: 0.72rem;
      font-weight: 700;
      font-family: var(--font-title);
      color: var(--accent);
      letter-spacing: 0.03em;
    }

    .ac-rdv-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.35;
    }

    .ac-empty {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin: 0.35rem 0 0;
      font-style: italic;
      opacity: 0.9;
    }

    .ac-actions {
      margin-top: 0.85rem;
    }

    .ac-btn {
      font-family: var(--font-title);
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.55rem 0.85rem;
      border-radius: 10px;
      cursor: pointer;
      border: 1px solid rgba(26, 161, 26, 0.45);
      background: rgba(26, 161, 26, 0.12);
      color: var(--accent);
      width: 100%;
    }

    .ac-btn:hover,
    .ac-btn:focus-visible {
      background: rgba(26, 161, 26, 0.24);
      outline: none;
    }

    .ac-btn--ghost {
      background: transparent;
    }

    .client-dialog .form-simple.ac-form,
    .account-dialog .form-simple.ac-form {
      max-width: none;
      margin: 0.75rem 0 0;
      padding: 0.85rem;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(26, 161, 26, 0.12);
    }

    .client-dialog .form-simple.ac-form label,
    .account-dialog .form-simple.ac-form label {
      font-size: 0.72rem;
      margin-top: 0.65rem;
    }

    .client-dialog .form-simple.ac-form label:first-of-type,
    .account-dialog .form-simple.ac-form label:first-of-type { margin-top: 0; }

    .client-dialog .form-simple.ac-form input,
    .account-dialog .form-simple.ac-form input {
      padding: 0.6rem 0.7rem;
      font-size: 0.85rem;
      border-radius: 8px;
      background: rgba(30, 32, 30, 0.95);
    }

    .client-dialog .form-simple.ac-form button[type="submit"],
    .account-dialog .form-simple.ac-form button[type="submit"] {
      margin-top: 0.85rem;
      padding: 0.65rem;
      font-size: 0.65rem;
      border-radius: 10px;
    }

    .ac-quote-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .ac-quote-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.35rem 0.75rem;
      align-items: center;
      padding: 0.65rem 0.75rem;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(26, 161, 26, 0.12);
    }

    .ac-quote-row--anim {
      animation: clientRowIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
      animation-delay: calc(var(--i, 0) * 45ms);
    }

    .ac-quote-ref {
      font-family: var(--font-title);
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      color: var(--text);
    }

    .ac-quote-label {
      grid-column: 1 / -1;
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.3;
    }

    .ac-quote-amt {
      font-family: var(--font-title);
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--accent);
    }

    .ac-quote-date {
      font-size: 0.68rem;
      color: var(--text-muted);
      text-align: right;
    }

    .ac-foot {
      flex-shrink: 0;
      margin-top: auto;
      padding-top: 0.85rem;
      border-top: 1px solid rgba(26, 161, 26, 0.12);
    }

    .ac-logout {
      width: 100%;
      padding: 0.7rem;
      font-family: var(--font-title);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(255, 107, 107, 0.08);
      color: #ff8a8a;
      border: 1px solid rgba(255, 107, 107, 0.35);
      border-radius: 12px;
      cursor: pointer;
    }

    .ac-logout:hover,
    .ac-logout:focus-visible {
      background: rgba(255, 107, 107, 0.16);
      outline: none;
    }

    .ac-opt {
      font-weight: 400;
      opacity: 0.75;
      font-size: 0.85em;
    }

    .ac-card--chat {
      display: flex;
      flex-direction: column;
      min-height: 14rem;
    }

    .ac-chat-log {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      max-height: 16rem;
      overflow-y: auto;
      margin: 0.75rem 0 1rem;
      padding: 0.25rem 0;
    }

    .ac-chat-bubble {
      max-width: 88%;
      padding: 0.55rem 0.75rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ac-chat-bubble--mine {
      align-self: flex-end;
      background: rgba(26, 161, 26, 0.12);
      border-color: rgba(26, 161, 26, 0.35);
    }

    .ac-chat-bubble--them {
      align-self: flex-start;
    }

    .ac-chat-body {
      margin: 0;
      white-space: pre-wrap;
      line-height: 1.45;
      font-size: 0.88rem;
    }

    .ac-chat-time {
      display: block;
      margin-top: 0.35rem;
      font-size: 0.68rem;
      color: var(--text-muted);
    }

    .ac-chat-form textarea {
      width: 100%;
      min-height: 4.5rem;
      resize: vertical;
      margin-bottom: 0.65rem;
    }

    .devis-guest-fields {
      margin: 0 0 1rem;
      padding: 0.85rem 0 0;
      border-top: 1px solid rgba(26, 161, 26, 0.15);
    }

    .devis-guest-fields[hidden] { display: none !important; }

    .devis-guest-lead {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin: 0 0 0.75rem;
      line-height: 1.35;
    }

    .devis-guest-fields .devis-field-label { margin-top: 0.55rem; }
    .devis-guest-fields .devis-field-label:first-of-type { margin-top: 0; }

    .reviews-section {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .reviews-intro {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.88rem;
      margin: 0 auto 1.5rem;
      max-width: 36rem;
    }

    .reviews-list {
      list-style: none;
      margin: 0 0 1.5rem;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .review-card {
      background: var(--bg-card);
      border: 1px solid rgba(26, 161, 26, 0.18);
      border-radius: 12px;
      padding: 1rem 1.1rem;
      text-align: left;
    }

    .review-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }

    .review-author {
      font-family: var(--font-title);
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      color: var(--accent);
    }

    .review-stars { font-size: 0.95rem; letter-spacing: 0.05em; color: #e6c200; }

    .review-date {
      font-size: 0.68rem;
      color: var(--text-muted);
    }

    .review-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.45;
      margin: 0;
    }

    .reviews-panel {
      background: var(--bg-card);
      border: 1px solid rgba(26, 161, 26, 0.22);
      border-radius: 14px;
      padding: 1.1rem 1.25rem 1.25rem;
      max-width: 32rem;
      margin: 0 auto;
    }

    .reviews-panel h3 {
      font-family: var(--font-title);
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 0.75rem;
    }

    .reviews-msg {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin: 0 0 0.75rem;
      line-height: 1.4;
    }

    .reviews-msg a {
      color: var(--accent);
      text-decoration: underline;
    }

    .reviews-form label {
      display: block;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin: 0.65rem 0 0.3rem;
    }

    .reviews-form label:first-of-type { margin-top: 0; }

    .reviews-form textarea {
      width: 100%;
      min-height: 5.5rem;
      padding: 0.65rem;
      border-radius: 8px;
      border: 1px solid rgba(26, 161, 26, 0.35);
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.88rem;
    }

    .reviews-stars {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem 0.5rem;
      align-items: center;
    }

    .reviews-stars label {
      display: inline-flex;
      align-items: center;
      gap: 0.2rem;
      margin: 0;
      cursor: pointer;
      font-size: 0.8rem;
      color: var(--text);
    }

    .reviews-stars input { accent-color: var(--accent); }

    .reviews-submit {
      margin-top: 0.85rem;
      width: 100%;
      padding: 0.65rem;
      font-family: var(--font-title);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 2px solid var(--accent);
      background: transparent;
      color: var(--accent);
      border-radius: 10px;
      cursor: pointer;
    }

    .reviews-submit:hover,
    .reviews-submit:focus-visible {
      background: var(--accent);
      color: var(--bg);
      outline: none;
    }

    .reviews-feedback {
      margin-top: 0.65rem;
      font-size: 0.8rem;
      min-height: 1.2rem;
    }

    .reviews-feedback.ok { color: var(--accent); }
    .reviews-feedback.err { color: #ff6b6b; }

    #sheet-backdrop {
      z-index: 10060;
    }

    .sheet-dialog {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 0;
      max-width: min(calc(100vw - 1rem), 520px);
      max-height: min(94vh, 900px);
      padding: 0;
      border: none;
      border-radius: 16px;
      overflow: hidden;
      background: linear-gradient(160deg, rgba(38, 40, 38, 0.98), rgba(18, 20, 18, 1));
      box-shadow: 0 0 0 1px rgba(26, 161, 26, 0.22), 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .sheet-dialog .ac-close { position: absolute; }

    .sheet-toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      padding: 0.65rem 2.75rem 0.65rem 0.75rem;
      border-bottom: 1px solid rgba(26, 161, 26, 0.15);
      background: rgba(0, 0, 0, 0.25);
    }

    .sheet-toolbar button {
      font-family: var(--font-title);
      font-size: 0.58rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.45rem 0.55rem;
      border-radius: 8px;
      border: 1px solid rgba(26, 161, 26, 0.4);
      background: rgba(26, 161, 26, 0.12);
      color: var(--accent);
      cursor: pointer;
    }

    .sheet-toolbar button:hover,
    .sheet-toolbar button:focus-visible {
      background: rgba(26, 161, 26, 0.22);
      outline: none;
    }

    .sheet-scroll {
      flex: 1 1 auto;
      min-height: 0;
      overflow: auto;
      padding: 0.75rem 1rem 1rem;
    }

    .sheet-toast {
      font-size: 0.72rem;
      margin: 0;
      padding: 0.4rem 0.75rem;
      min-height: 1.5rem;
      color: var(--accent);
      background: rgba(26, 161, 26, 0.1);
      border-top: 1px solid rgba(26, 161, 26, 0.15);
    }

    .sheet-paper {
      background: #f4f4f2;
      color: #1a1a1a;
      border-radius: 8px;
      padding: 1.25rem 1.35rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      line-height: 1.45;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    }

    .sheet-paper h3 {
      font-family: var(--font-title);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgb(18, 120, 18);
      margin: 0 0 0.75rem;
      padding-bottom: 0.4rem;
      border-bottom: 2px solid rgb(26, 161, 26);
    }

    .sheet-meta {
      font-size: 0.68rem;
      color: #555;
      margin-bottom: 1rem;
    }

    .sheet-grid {
      display: grid;
      gap: 0.35rem 1rem;
      grid-template-columns: minmax(7rem, 38%) 1fr;
    }

    .sheet-k {
      font-weight: 600;
      color: #333;
    }

    .sheet-v { color: #222; }

    .sheet-block {
      margin-top: 1rem;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .sheet-foot {
      margin-top: 1rem;
      font-size: 0.65rem;
      color: #666;
    }

    @media print {
      body * { visibility: hidden !important; }
      #sheet-backdrop,
      #sheet-backdrop * { visibility: visible !important; }
      #sheet-backdrop {
        position: fixed !important;
        inset: 0 !important;
        display: block !important;
        background: #fff !important;
        padding: 0 !important;
        z-index: 99999 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
      }
      .sheet-dialog {
        max-width: none !important;
        max-height: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
      }
      .sheet-toolbar,
      .sheet-dialog .ac-close,
      .sheet-toast { display: none !important; }
      .sheet-scroll { overflow: visible !important; padding: 1rem !important; }
      .sheet-paper { box-shadow: none !important; }
    }

    @keyframes fxFadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fxTitlePop {
      from { opacity: 0.65; transform: translateY(6px) scale(0.98); filter: brightness(0.85); }
      to { opacity: 1; transform: none; filter: none; }
    }

    @keyframes lbPop {
      from { opacity: 0; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1); }
    }

    .site-nav.nav-is-scrolled {
      box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
      border-bottom-color: rgba(26, 161, 26, 0.38);
    }

    .nav-tabs a.is-active {
      color: var(--text);
      background: rgba(26, 161, 26, 0.2);
      box-shadow: inset 0 -2px 0 var(--accent);
    }

    .nav-brand.is-active .w { color: var(--text); }
    .nav-brand.is-active .g {
      text-shadow: 0 0 12px rgba(26, 161, 26, 0.55);
    }

    .reveal.fx-stagger.visible .cards-grid > .card {
      animation: fxFadeUp 0.58s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    }

    .reveal.fx-stagger.visible .cards-grid > .card:nth-child(1) { animation-delay: 0.04s; }
    .reveal.fx-stagger.visible .cards-grid > .card:nth-child(2) { animation-delay: 0.12s; }
    .reveal.fx-stagger.visible .cards-grid > .card:nth-child(3) { animation-delay: 0.2s; }
    .reveal.fx-stagger.visible .cards-grid > .card:nth-child(4) { animation-delay: 0.28s; }
    .reveal.fx-stagger.visible .cards-grid > .card:nth-child(5) { animation-delay: 0.36s; }

    .reveal.fx-stagger.visible .section-title span {
      display: inline-block;
      animation: fxTitlePop 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s backwards;
    }

    .lightbox.is-open img {
      animation: lbPop 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal.fx-stagger.visible .cards-grid > .card,
      .reveal.fx-stagger.visible .section-title span,
      .lightbox.is-open img {
        animation: none !important;
      }

      .section-divider::after {
        animation: none !important;
        transform: none;
        opacity: 0.4;
      }

      .card::after {
        display: none !important;
      }

      .auth-backdrop,
      .auth-backdrop.is-open,
      .auth-backdrop > .auth-dialog {
        transition-duration: 0.01ms !important;
        transition-delay: 0s !important;
      }

      .auth-backdrop > .auth-dialog {
        transform: none !important;
        opacity: 1 !important;
      }

      .nav-brand:hover {
        transform: none;
        filter: none;
      }

      .card--pack-gold,
      .card--pack-gold::before {
        animation: none !important;
      }

      .admin-kpi--anim,
      .admin-bar,
      .admin-panel--anim,
      .client-panel--anim,
      .ac-prof-panel--anim,
      .ac-rdv-row--anim,
      .ac-quote-row--anim {
        animation: none !important;
      }

      .auth-dialog.admin-dialog,
      .auth-dialog.client-dialog {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }

      .card--pack-gold {
        box-shadow: 0 0 0 1px rgba(255, 236, 180, 0.35), 0 0 20px rgba(255, 200, 80, 0.25);
      }
    }

    .auth-page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;
      gap: 1.5rem;
    }

    .auth-page-brand {
      font-family: var(--font-title);
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-decoration: none;
      color: var(--text);
    }

    .auth-page-brand .g { color: var(--accent); }

    .auth-page-card {
      width: 100%;
      max-width: 420px;
      background: var(--bg-card);
      border: 1px solid rgba(26, 161, 26, 0.35);
      padding: 1.75rem 2rem;
    }

    .auth-page-title {
      font-family: var(--font-title);
      font-size: 1.1rem;
      margin-bottom: 1rem;
      letter-spacing: 0.04em;
    }

    .auth-page-title span { color: var(--accent); }

    .auth-page-lead {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .auth-page-link {
      color: var(--accent);
      text-decoration: none;
    }

    .auth-page-link:hover { text-decoration: underline; }

    .auth-forgot {
      margin: 0.35rem 0 0.75rem;
      font-size: 0.78rem;
      text-align: right;
    }

    .auth-forgot a {
      color: var(--accent);
      text-decoration: none;
    }

    .auth-forgot a:hover { text-decoration: underline; }

    .addr-ac-list {
      position: fixed;
      z-index: 10080;
      margin: 0;
      padding: 0;
      list-style: none;
      max-height: 220px;
      overflow-y: auto;
      background: rgb(28, 30, 28);
      border: 1px solid rgba(26, 161, 26, 0.45);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    }

    .addr-ac-item {
      padding: 0.55rem 0.75rem;
      font-size: 0.85rem;
      color: var(--text);
      cursor: pointer;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .addr-ac-item:last-child { border-bottom: none; }

    .addr-ac-item:hover,
    .addr-ac-item.is-active {
      background: rgba(26, 161, 26, 0.2);
      outline: none;
    }

    .auth-dialog.admin-dialog {
      position: relative;
      display: flex;
      flex-direction: column;
      width: min(calc(100vw - 1.25rem), 1280px);
      max-width: min(calc(100vw - 1.25rem), 1280px);
      height: min(calc(100vh - 1.25rem), 920px);
      max-height: min(calc(100vh - 1.25rem), 920px);
      padding: 0;
      overflow: hidden;
      border-radius: 22px;
      background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 161, 26, 0.12), transparent 55%),
        linear-gradient(165deg, rgba(38, 42, 38, 0.98) 0%, rgba(20, 22, 20, 1) 50%, rgba(14, 16, 14, 1) 100%);
      box-shadow:
        0 0 0 1px rgba(26, 161, 26, 0.28),
        0 32px 120px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
      opacity: 0;
      transform: translateY(20px) scale(0.97);
      transition:
        opacity 0.45s var(--ease-out),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .auth-backdrop.is-open > .admin-dialog.admin-dialog--ready {
      opacity: 1;
      transform: none;
    }

    .admin-dialog > .ac-close {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      z-index: 40;
      width: 2.35rem;
      height: 2.35rem;
      padding: 0;
      margin: 0;
      flex: none;
      align-self: auto;
      border-radius: 10px;
      border: 1px solid rgba(26, 161, 26, 0.4);
      background: rgba(20, 22, 20, 0.92);
      color: var(--accent);
      font-size: 1.25rem;
      line-height: 1;
      cursor: pointer;
      font-family: var(--font-title);
    }

    .admin-dialog > .ac-close:hover,
    .admin-dialog > .ac-close:focus-visible {
      background: var(--accent);
      color: var(--bg);
      outline: none;
    }

    .admin-shell-head {
      flex-shrink: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 0.85rem 1.25rem;
      padding: 1.35rem 3.25rem 0.85rem 1.5rem;
      border-bottom: 1px solid rgba(26, 161, 26, 0.18);
      background: linear-gradient(180deg, rgba(26, 161, 26, 0.06), transparent);
    }

    .admin-shell-brand .ac-kicker {
      margin-bottom: 0.15rem;
    }

    .admin-shell-title {
      font-size: clamp(1.05rem, 2.2vw, 1.35rem);
      margin: 0;
    }

    .admin-stage {
      position: relative;
      flex: 1 1 auto;
      min-height: 0;
      margin: 0 1.25rem 1.25rem;
      border-radius: 16px;
      border: 1px solid rgba(26, 161, 26, 0.15);
      background: rgba(0, 0, 0, 0.22);
      overflow: hidden;
    }

    .admin-panel {
      position: absolute;
      inset: 0;
      display: none;
      flex-direction: column;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition:
        opacity 0.32s ease,
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .admin-panel.is-active {
      display: flex;
      opacity: 1;
      pointer-events: auto;
      transform: none;
    }

    .admin-panel.admin-panel--anim {
      animation: adminPanelIn 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes adminPanelIn {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: none; }
    }

    .admin-panel[hidden] {
      display: none !important;
    }

    .admin-panel-inner {
      flex: 1 1 auto;
      min-height: 0;
      overflow: auto;
      padding: 1rem 1.15rem 1.15rem;
      scrollbar-width: thin;
      scrollbar-color: rgba(26, 161, 26, 0.45) transparent;
    }

    .admin-panel-inner::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }

    .admin-panel-inner::-webkit-scrollbar-thumb {
      background: rgba(26, 161, 26, 0.4);
      border-radius: 6px;
    }

    .admin-panel-inner--overview {
      display: flex;
      flex-direction: column;
      gap: 1.15rem;
    }

    .admin-overview-chart {
      flex: 1 1 auto;
      min-height: 0;
      display: flex;
      flex-direction: column;
      padding: 0.85rem 1rem;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(26, 161, 26, 0.12);
    }

    .admin-panel-inner--vacation {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 1.5rem;
    }

    .admin-panel-inner--rdv {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .admin-rdv-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .admin-cancel-alerts {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-bottom: 0.75rem;
      padding: 0.85rem 1rem;
      border-radius: 8px;
      border: 1px solid rgba(255, 92, 92, 0.45);
      background: rgba(255, 80, 80, 0.08);
      flex-shrink: 0;
    }

    .admin-cancel-alerts-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .admin-cancel-alerts-head strong {
      color: #ff9a9a;
      font-size: 0.88rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .admin-cancel-alert {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.65rem 0.75rem;
      border-radius: 6px;
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 120, 120, 0.25);
    }

    .admin-cancel-alert-text {
      margin: 0;
      font-size: 0.82rem;
      line-height: 1.45;
      color: var(--text);
      flex: 1;
    }

    .nav-admin-badge--cancel {
      background: #ff3030;
      box-shadow: 0 0 14px rgba(255, 48, 48, 0.65);
      animation: navAdminBadgePop 0.45s var(--ease-out), navAdminBadgePulse 1.2s ease-in-out infinite;
    }

    @keyframes navAdminBadgePulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.08); }
    }

    .admin-tab-badge--danger {
      background: #ff3030 !important;
      box-shadow: 0 0 10px rgba(255, 48, 48, 0.5);
    }

    .admin-rdv-local-warn {
      margin: 0;
      flex: 1 1 auto;
      font-size: 0.72rem;
      color: #ffb88a;
    }

    .admin-rdv-table {
      flex: 1 1 auto;
      min-height: 0;
      overflow: auto;
    }

    .admin-btn--ghost {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.15);
      color: var(--text-muted);
    }

    .admin-btn--ghost:hover {
      color: var(--text);
      border-color: rgba(26, 161, 26, 0.4);
      background: rgba(26, 161, 26, 0.08);
    }

    .admin-panel-inner--reviews {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .admin-toast {
      position: absolute;
      bottom: 1rem;
      left: 50%;
      z-index: 30;
      transform: translateX(-50%) translateY(120%);
      opacity: 0;
      pointer-events: none;
      padding: 0.65rem 1.35rem;
      border-radius: 10px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      background: rgba(18, 20, 18, 0.97);
      border: 1px solid rgba(26, 161, 26, 0.45);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
      transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease;
      max-width: calc(100% - 2rem);
      text-align: center;
    }

    .admin-toast.is-show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    .admin-toast.ok {
      border-color: rgba(26, 161, 26, 0.65);
      color: var(--accent);
    }

    .admin-toast.err {
      border-color: rgba(255, 100, 100, 0.55);
      color: #ff9a9a;
    }

    @keyframes adminBtnPop {
      0% { transform: scale(1); }
      45% { transform: scale(0.92); }
      100% { transform: scale(1); }
    }

    .admin-btn.admin-btn--pulse {
      animation: adminBtnPop 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .admin-vacation-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-top: 0.25rem;
    }

    .admin-msg {
      font-size: 0.78rem;
      min-height: 0;
      margin: 0 1.5rem 0.35rem;
      flex-shrink: 0;
    }

    .admin-msg:empty {
      display: none;
      margin: 0;
    }

    .admin-msg.ok { color: var(--accent); }
    .admin-msg.err { color: #ff6b6b; }

    .admin-kpis {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      flex-shrink: 0;
    }

    @media (min-width: 720px) {
      .admin-kpis { grid-template-columns: repeat(4, 1fr); }
    }

    .admin-kpi {
      padding: 1rem 0.75rem;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(26, 161, 26, 0.22);
      text-align: center;
      transition:
        transform 0.25s var(--ease-out),
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    }

    .admin-kpi:hover {
      transform: translateY(-3px);
      border-color: rgba(26, 161, 26, 0.45);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    .admin-kpi--anim {
      animation: adminKpiIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
      animation-delay: calc(var(--i, 0) * 0.07s + 0.05s);
    }

    @keyframes adminKpiIn {
      from { opacity: 0; transform: translateY(14px) scale(0.96); }
      to { opacity: 1; transform: none; }
    }

    .admin-kpi--warn {
      border-color: rgba(255, 100, 100, 0.45);
      background: rgba(255, 80, 80, 0.08);
    }

    .admin-kpi-n {
      display: block;
      font-family: var(--font-title);
      font-size: clamp(1.25rem, 2.5vw, 1.65rem);
      color: var(--accent);
      line-height: 1.1;
    }

    .admin-kpi--warn .admin-kpi-n { color: #ff8a8a; }

    .admin-kpi-l {
      display: block;
      font-size: 0.68rem;
      color: var(--text-muted);
      margin-top: 0.35rem;
      letter-spacing: 0.02em;
    }

    .admin-sec-h {
      font-family: var(--font-title);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.65rem;
    }

    .admin-chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 0.4rem;
      flex: 1 1 auto;
      min-height: 160px;
      padding: 0.5rem 0 0.25rem;
    }

    .admin-bar-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 0;
    }

    .admin-bar {
      width: 100%;
      max-width: 32px;
      background: linear-gradient(180deg, #3dd63d, rgb(18, 110, 18));
      border-radius: 6px 6px 0 0;
      box-shadow: 0 0 12px rgba(26, 161, 26, 0.35);
      transform-origin: bottom;
      animation: adminBarGrow 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    }

    @keyframes adminBarGrow {
      from { transform: scaleY(0); opacity: 0.4; }
      to { transform: scaleY(1); opacity: 1; }
    }

    .admin-bar-l {
      font-size: 0.58rem;
      color: var(--text-muted);
      margin-top: 0.35rem;
    }

    .admin-chart-legend {
      font-size: 0.7rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
      flex-shrink: 0;
    }

    .admin-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      justify-content: flex-end;
    }

    .admin-tab {
      position: relative;
      padding: 0.5rem 0.85rem;
      font-family: var(--font-title);
      font-size: 0.62rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 999px;
      color: var(--text-muted);
      cursor: pointer;
      transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s var(--ease-out);
    }

    .admin-tab:hover {
      color: var(--text);
      border-color: rgba(26, 161, 26, 0.35);
    }

    .admin-tab[aria-selected="true"] {
      color: var(--bg);
      border-color: var(--accent);
      background: linear-gradient(135deg, #2bc02b, var(--accent));
      box-shadow: 0 0 20px rgba(26, 161, 26, 0.4);
    }

    .admin-tab-badge {
      position: absolute;
      top: -0.3rem;
      right: -0.25rem;
      min-width: 1rem;
      height: 1rem;
      padding: 0 0.25rem;
      border-radius: 999px;
      font-family: var(--font-title);
      font-size: 0.52rem;
      font-weight: 700;
      line-height: 1rem;
      text-align: center;
      color: var(--bg);
      background: #ff5c5c;
      border: 1px solid rgba(255, 255, 255, 0.35);
      box-shadow: 0 0 10px rgba(255, 80, 80, 0.5);
      animation: navAdminBadgePop 0.45s var(--ease-out);
    }

    .admin-tab[aria-selected="true"] .admin-tab-badge {
      color: #fff;
      background: #c62828;
      border-color: rgba(255, 255, 255, 0.5);
    }

    .admin-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      font-size: 0.82rem;
    }

    .admin-table thead th {
      position: sticky;
      top: 0;
      z-index: 2;
      background: rgba(18, 20, 18, 0.97);
      backdrop-filter: blur(6px);
    }

    .admin-table th,
    .admin-table td {
      padding: 0.55rem 0.5rem;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .admin-table tbody tr {
      transition: background 0.2s ease;
    }

    .admin-table tbody tr:hover {
      background: rgba(26, 161, 26, 0.06);
    }

    .admin-table th {
      font-family: var(--font-title);
      font-size: 0.62rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .admin-row-flag { background: rgba(255, 80, 80, 0.1); }

    .admin-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      justify-content: flex-end;
    }

    .admin-btn {
      padding: 0.4rem 0.65rem;
      font-size: 0.68rem;
      font-family: var(--font-title);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      background: rgba(26, 161, 26, 0.15);
      border: 1px solid rgba(26, 161, 26, 0.45);
      border-radius: 8px;
      color: var(--accent);
      cursor: pointer;
      margin-left: 0.25rem;
      transition:
        background 0.2s ease,
        transform 0.2s var(--ease-out),
        box-shadow 0.2s ease;
    }

    .admin-btn:hover {
      background: rgba(26, 161, 26, 0.28);
      box-shadow: 0 0 14px rgba(26, 161, 26, 0.25);
    }

    .admin-btn--danger {
      background: rgba(255, 80, 80, 0.12);
      border-color: rgba(255, 100, 100, 0.45);
      color: #ff9a9a;
    }

    .admin-btn--ok {
      background: rgba(26, 161, 26, 0.12);
      border-color: rgba(26, 161, 26, 0.55);
      color: #b8ffb8;
    }

    .admin-badge {
      font-size: 0.65rem;
      padding: 0.15rem 0.35rem;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.08);
    }

    .admin-badge--pending { color: #ffd88a; }
    .admin-badge--approved { color: var(--accent); }
    .admin-badge--rejected { color: #ff8a8a; }
    .admin-badge--confirmed { color: var(--accent); }
    .admin-badge--cancelled { color: #ff8a8a; }
    .admin-badge--completed { color: #9ecfff; }

    .admin-review {
      padding: 0.85rem 1rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      margin-bottom: 0.5rem;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .admin-review:hover {
      border-color: rgba(26, 161, 26, 0.25);
      background: rgba(26, 161, 26, 0.04);
    }

    .admin-review-head {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.35rem;
      margin-bottom: 0.35rem;
      font-size: 0.78rem;
    }

    .admin-review p {
      margin: 0.65rem 0 0;
      line-height: 1.5;
      white-space: pre-wrap;
    }

    .admin-contact--unread {
      border-color: rgba(255, 216, 138, 0.45);
    }

    .admin-contact-thread {
      margin-bottom: 1.25rem;
      padding: 1rem 1.1rem;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .admin-chat-log {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      max-height: 14rem;
      overflow-y: auto;
      margin: 0.75rem 0;
      padding: 0.25rem 0;
    }

    .admin-chat-bubble {
      max-width: 90%;
      padding: 0.5rem 0.7rem;
      border-radius: 10px;
      font-size: 0.86rem;
      line-height: 1.45;
    }

    .admin-chat-bubble p {
      margin: 0;
      white-space: pre-wrap;
    }

    .admin-chat-bubble time {
      display: block;
      margin-top: 0.3rem;
      font-size: 0.68rem;
      color: var(--text-muted);
    }

    .admin-chat-bubble--client {
      align-self: flex-start;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .admin-chat-bubble--admin {
      align-self: flex-end;
      background: rgba(26, 161, 26, 0.12);
      border: 1px solid rgba(26, 161, 26, 0.35);
    }

    .admin-chat-reply {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: flex-end;
    }

    .admin-chat-reply textarea {
      flex: 1 1 100%;
      min-height: 3.5rem;
      resize: vertical;
      padding: 0.55rem 0.65rem;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(0, 0, 0, 0.25);
      color: inherit;
      font: inherit;
    }

    .admin-empty {
      font-size: 0.82rem;
      color: var(--text-muted);
      padding: 0.5rem 0;
    }

    .admin-vacation-form {
      max-width: 32rem;
      width: 100%;
      padding: 1.25rem 1.5rem;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 200, 80, 0.25);
      box-shadow: 0 0 32px rgba(255, 180, 50, 0.08);
    }

    .admin-quote-form {
      max-width: 36rem;
      width: 100%;
      margin-bottom: 1.25rem;
      padding: 1.25rem 1.5rem;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(26, 161, 26, 0.25);
      box-shadow: 0 0 32px rgba(26, 161, 26, 0.06);
    }

    .admin-quote-lead {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
      line-height: 1.45;
    }

    .admin-quote-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.5rem 0.75rem;
      align-items: center;
      margin-bottom: 1rem;
      font-size: 0.88rem;
    }

    .admin-quote-input {
      padding: 0.45rem 0.6rem;
      background: rgba(18, 19, 18, 0.9);
      border: 1px solid rgba(26, 161, 26, 0.35);
      color: var(--text);
      border-radius: 8px;
      font-family: var(--font-body);
      max-width: 100%;
    }

    .admin-quote-actions {
      display: flex;
      gap: 0.5rem;
    }

    .admin-quote-list {
      width: 100%;
    }

    .admin-vacation-lead {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
      line-height: 1.45;
    }

    .admin-vacation-check {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
      font-size: 0.9rem;
      cursor: pointer;
    }

    .admin-vacation-dates {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem 0.75rem;
      margin-bottom: 1rem;
      font-size: 0.88rem;
    }

    .admin-vacation-dates input[type="date"] {
      padding: 0.45rem 0.6rem;
      background: rgba(18, 19, 18, 0.9);
      border: 1px solid rgba(26, 161, 26, 0.35);
      color: var(--text);
      border-radius: 8px;
      font-family: var(--font-body);
    }

    #admin-backdrop { z-index: 10055; }