  body { margin: 0; padding: 0; background: #f8f9fa; font-family: 'Plus Jakarta Sans', sans-serif; }

  /* Étiquette tier de forfait */
  .pricing-tier {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  /* Titre de colonne dans le footer */
  .footer-section-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b0d91c;
    margin-bottom: 1.1rem;
  }

  .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
  }

  * { box-sizing: border-box; }
  h1, h2, h3 { margin: 0; }
  p { margin: 0; }
  a { text-decoration: none; }

  /* Header — sticky + effet scroll */
  #site-footer { background: #b0d91c; color: #000; }
  #site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
  }
  #site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  #header-inner { width:100%;padding:0 2rem;display:flex;align-items:center;justify-content:space-between;height:125px;box-sizing:border-box; }
  #header-left { display:flex;align-items:center;gap:1.25rem; }
  #header-right { display:flex;align-items:center;gap:1rem; }

  /* Nav — transitions hover + indicateur actif */
  #site-nav { display:flex;align-items:center;list-style:none;margin:0;padding:0; }
  #site-nav a {
    position: relative;
    display: block;
    padding: 14px 20px 12px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 18px;
    white-space: nowrap;
    transition: color 0.2s ease;
  }
  #site-nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #b0d91c;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  #site-nav a:hover { color: #b0d91c; background: none; }
  #site-nav a:hover::after { transform: scaleX(1); }
  #site-nav a.active { color: #b0d91c; font-weight: 700; }
  #site-nav a.active::after { transform: scaleX(1); }

  #btn-reserver { display:flex;align-items:center;justify-content:center;gap:0.4rem;width:150px;height:40px;background:#b0d91c;color:#fff;font-family:'Montserrat',Arial,sans-serif;font-size:15px;font-weight:700;letter-spacing:1px;text-decoration:none;border-radius:0;text-transform:capitalize;white-space:nowrap;transition:background 0.2s ease; }
  #btn-reserver:hover { background:#9bc415; }
  #header-phone { display:flex;align-items:center;gap:0.5rem;white-space:nowrap; }
  #header-phone a { font-family:'Montserrat',Arial,sans-serif;font-size:16px;color:#000;text-decoration:none;transition:color 0.2s ease; }
  #header-phone a:hover { color:#b0d91c; }
  #header-social { display:flex;align-items:center;gap:1rem; }
  #header-social a { color:#000;font-size:22px;text-decoration:none;transition:color 0.2s; }
  #header-social a:hover { color:#b0d91c; }

  /* Menu mobile — slide-down animé */
  #mobile-menu {
    overflow: hidden;
    max-height: 0;
    padding: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  #mobile-menu.open {
    max-height: 420px;
    border-top: 1px solid #f0f0f0;
    padding: 0.5rem 2rem 1rem;
  }
  #mobile-menu a { display:block;padding:0.6rem 0;font-family:'Montserrat',Arial,sans-serif;font-size:16px;color:#000;text-decoration:none;border-bottom:1px solid #f0f0f0;transition:color 0.2s ease; }
  #mobile-menu a:hover { color:#b0d91c; }

  @media (max-width: 900px) {
    #site-nav, #header-right { display:none !important; }
    #menu-toggle { display:block !important; }
    #header-left { margin-right:0; }
    #site-header { position: relative !important; }
  }

  /* Scroll fade */
  .scroll-fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  .scroll-fade.visible { opacity: 1; transform: translateY(0); }

  /* Hero */
  .hero-gradient {
    background: linear-gradient(135deg, #1a2e00 0%, #2d4e00 60%, #3d6400 100%);
    position: relative;
  }
  .hero-bubble-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(176,217,28,0.08);
    pointer-events: none;
  }
  .hero-bubble-2 {
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(176,217,28,0.05);
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(176,217,28,0.18);
    border: 1px solid rgba(176,217,28,0.35);
    border-radius: 999px;
    color: #b0d91c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .hero-badge-part--events::before {
    content: " \00B7 ";
  }

  @media (max-width: 430px) {
    .hero-badge.idx-hero-badge-mb {
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      line-height: 1.15;
      gap: 4px 6px;
    }
    .hero-badge.idx-hero-badge-mb .hero-badge-part {
      min-width: 0;
    }
    .hero-badge.idx-hero-badge-mb .hero-badge-part--events {
      flex-basis: 100%;
    }
    .hero-badge.idx-hero-badge-mb .hero-badge-part--events::before {
      content: "";
    }
  }

  /* CTA buttons */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #b0d91c, #c4e635);
    color: #1a2e00;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 6px 24px rgba(176,217,28,0.35);
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, #9bc415, #b0d91c);
    box-shadow: 0 10px 32px rgba(176,217,28,0.45);
    transform: translateY(-2px);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 1.75rem;
    background: transparent;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.875rem;
    border: 2px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }
  .btn-secondary:hover { border-color: #b0d91c; color: #b0d91c; }

  /* Section heading */
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(176,217,28,0.12);
    border-radius: 999px;
    color: #3a6200;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  /* Pricing cards */
  .pricing-card {
    background: #fff;
    border: 2px solid #e8edde;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
  }
  .pricing-card:hover {
    border-color: #b0d91c;
    box-shadow: 0 16px 48px rgba(176,217,28,0.18);
    transform: translateY(-4px);
  }
  .pricing-card.featured {
    border-color: #b0d91c;
    background: linear-gradient(160deg, #f8fde8 0%, #fff 60%);
  }
  .pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b0d91c, #c4e635);
  }
  .pricing-popular {
    position: absolute;
    top: 0.25rem; right: 1.25rem;
    background: linear-gradient(135deg, #b0d91c, #c4e635);
    color: #1a2e00;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
  }
  .pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #404a39;
    line-height: 1.4;
  }
  .pricing-feature .check {
    width: 18px;
    height: 18px;
    background: rgba(176,217,28,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* Process steps */
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .process-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b0d91c, #c4e635);
    color: #1a2e00;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(176,217,28,0.3);
  }

  /* Gallery grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0.75rem;
  }
  @media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
  .gallery-item.tall img { height: 100%; }

  /* Testimonials */
  .review-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid #e8edde;
    transition: box-shadow 0.2s;
  }
  .review-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
  .stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }

  /* FAQ */
  .faq-item {
    border-bottom: 1px solid #e8edde;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #191c1d;
    transition: color 0.2s;
  }
  .faq-question:hover { color: #3a6200; }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.25s;
    font-size: 0.95rem;
    color: #404a39;
    line-height: 1.7;
  }
  .faq-answer.open {
    max-height: 300px;
    padding-bottom: 1.25rem;
  }
  .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
  }
  .faq-item.open .faq-icon { background: #b0d91c; transform: rotate(45deg); }
  .faq-item.open .faq-question { color: #3a6200; }

  /* Stat cards */
  .stat-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid #e8edde;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }

  /* Equipment specs */
  .spec-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f0f2ec;
  }
  .spec-row:last-child { border-bottom: none; }

  /* Zone card */
  .zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f3f4f5;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #1a2e00;
    border: 1px solid #e8edde;
  }
  .zone-chip.included { background: rgba(176,217,28,0.1); border-color: rgba(176,217,28,0.4); color: #3a6200; }

  /* Accessibility fix */
  p.text-primary, a.text-primary, span.text-primary:not(.material-symbols-outlined) {
    color: #3a6200 !important;
  }

  /* Grilles de base (le style initial avant les media queries) */
  .md-hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
  .stats-grid   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .events-grid  { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
  .equipment-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }

  /* Events grid */
  @media (min-width:900px) { .events-grid { grid-template-columns: 1fr 1fr !important; } }

  /* Responsive grids (déplacés depuis main.js) */
  @media (min-width:768px) { .stats-grid { grid-template-columns: repeat(4,1fr) !important; } }
  @media (min-width:1024px) {
    .md-hero-grid { grid-template-columns: 1fr 420px !important; }
    .equipment-grid { grid-template-columns: 1fr 1fr !important; }
    .md-two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .md-tarif-grid { grid-template-columns: 1fr 1fr; }
  }
  .prix-badge-flottant {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  @media (max-width:1023px) {
    .prix-badge-flottant { position:static !important; margin-top:1.25rem; box-shadow:0 4px 16px rgba(0,0,0,0.10) !important; }
  }

  /* Hero image col — responsive via CSS */
  #hero-img-col { display: none; }
  @media (min-width:1024px) { #hero-img-col { display: block !important; } }

  /* Image hero mobile */
  .hero-mobile-img {
    margin-top: 2rem;
    border-radius: 1.25rem;
    overflow: hidden;
    max-height: 260px;
  }
  .hero-mobile-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (min-width:1024px) { .hero-mobile-img { display: none; } }

  /* Bouton outline */
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 1.75rem;
    background: transparent;
    color: #1a2e00;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.875rem;
    border: 2px solid #1a2e00;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }
  .btn-outline:hover { background: #1a2e00; color: #b0d91c; }

  /* Pricing feature désactivée */
  .pricing-feature.disabled { opacity: 0.32; }
  .pricing-feature.disabled .check { background: #f0f0f0; }

  /* Event icon card */
  .event-icon-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem 0.75rem;
    text-align: center;
    border: 1px solid #e8edde;
    transition: border-color 0.2s, transform 0.2s;
  }
  .event-icon-card:hover { border-color: #b0d91c; transform: translateY(-3px); }
  .event-icon-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b0d91c, #c4e635);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
  }
  .event-icon-card .label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a2e00;
  }

  /* === Livre d'or audio === */

  /* --- Sections --- */
  .loa-section-hero   { padding: 4rem 0 3rem; }
  .loa-section-white  { padding: 5rem 0; background: #fff; }
  .loa-section-gray   { padding: 5rem 0; background: #f8f9fa; }

  /* --- Wrappers / conteneurs --- */
  .loa-container    { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  .loa-container-sm { max-width: 800px;  margin: 0 auto; padding: 0 2rem; }
  .loa-container-xs { max-width: 760px;  margin: 0 auto; padding: 0 2rem; text-align: center; }

  /* --- Hero --- */
  .loa-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; text-align: center; }

  .loa-hero-badge-wrap { margin: 0 auto 1.75rem; }

  .loa-hero-icon-sm {
    font-size: 14px;
    font-variation-settings: 'FILL' 1;
  }

  .loa-hero-title {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }

  .loa-hero-accent { color: #b0d91c; }

  .loa-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .loa-hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .loa-hero-price-strong { color: #b0d91c; font-weight: 800; }

  .loa-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
    justify-content: center;
  }

  .loa-hero-icon-md {
    font-size: 18px;
    font-variation-settings: 'FILL' 1;
  }
  .loa-hero-icon-md--outline { font-size: 18px; }

  .loa-hero-avail {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .loa-avail-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b0d91c;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(176,217,28,0.25);
  }

  .loa-hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
  }

  .loa-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
  }

  .loa-badge-icon {
    font-size: 15px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
  }

  /* --- Section header commun --- */
  .loa-section-header { text-align: center; margin-bottom: 3.5rem; }
  .loa-section-header--md { text-align: center; margin-bottom: 3rem; }

  .loa-section-label-icon {
    font-size: 14px;
    font-variation-settings: 'FILL' 1;
  }

  .loa-section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #191c1d;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-top: 0.75rem;
  }

  .loa-section-desc {
    font-size: 1rem;
    color: #707a68;
    line-height: 1.7;
    max-width: 520px;
    margin: 0.75rem auto 0;
  }

  /* --- Concept section --- */
  .loa-concept-p {
    font-size: 1rem;
    color: #404a39;
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }
  .loa-concept-p--last { margin-bottom: 2rem; }

  .loa-concept-h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #191c1d;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    margin-top: 0.75rem;
  }

  .loa-concept-accent { color: #3a6200; }

  .loa-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .loa-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f4f9e8;
    border-radius: 1rem;
    border-left: 3px solid #b0d91c;
  }

  .loa-feature-icon {
    font-size: 22px;
    color: #3a6200;
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1;
  }

  .loa-feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #191c1d;
  }

  .loa-feature-desc {
    font-size: 0.85rem;
    color: #707a68;
    margin-top: 2px;
  }

  .loa-concept-img-col { position: relative; }

  .loa-img-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.15);
  }

  .loa-img-wrapper img { width: 100%; height: auto; display: block; }

  .loa-prix-badge-inner {
    display: flex;
    align-items: center;
    gap: 0.875rem;
  }

  .loa-prix-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b0d91c, #c4e635);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .loa-prix-icon {
    font-size: 24px;
    color: #1a2e00;
    font-variation-settings: 'FILL' 1;
  }

  .loa-prix-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #191c1d;
    line-height: 1;
  }

  .loa-prix-label {
    font-size: 0.78rem;
    color: #707a68;
  }

  /* --- Étapes --- */
  .loa-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }

  .loa-step-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
  }

  .loa-step-card--delay1 { transition-delay: 0.1s; }
  .loa-step-card--delay2 { transition-delay: 0.2s; }

  .loa-step-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(176,217,28,0.06);
  }

  .loa-step-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #b0d91c, #c4e635);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(176,217,28,0.3);
  }

  .loa-step-icon-wrap--alt {
    background: linear-gradient(135deg, #1a2e00, #2d4e00);
    box-shadow: 0 6px 20px rgba(26,46,0,0.2);
  }

  .loa-step-icon {
    font-size: 26px;
    color: #1a2e00;
    font-variation-settings: 'FILL' 1;
  }

  .loa-step-icon--alt { color: #b0d91c; }

  .loa-step-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: #b0d91c;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .loa-step-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #191c1d;
    margin-bottom: 0.875rem;
    line-height: 1.2;
  }

  .loa-step-text {
    font-size: 0.9rem;
    color: #707a68;
    line-height: 1.7;
  }

  /* --- Citation --- */
  .loa-quote-block {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, #1a2e00, #2d4e00);
    border-radius: 2rem;
    padding: 2.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .loa-quote-decor-tl {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(176,217,28,0.06);
  }

  .loa-quote-decor-br {
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(176,217,28,0.04);
  }

  .loa-quote-inner { position: relative; z-index: 1; }

  .loa-quote-icon {
    font-size: 36px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
    display: block;
    margin-bottom: 1rem;
  }

  .loa-quote-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 1rem;
    font-style: italic;
  }

  .loa-quote-em { color: #b0d91c; }

  .loa-quote-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* --- Événements --- */
  .loa-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .loa-event-card {
    border-radius: 1.5rem;
    padding: 1.75rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .loa-event-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b0d91c, #c4e635);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .loa-event-icon-wrap--alt {
    background: linear-gradient(135deg, #1a2e00, #2d4e00);
  }

  .loa-event-icon {
    font-size: 24px;
    color: #1a2e00;
    font-variation-settings: 'FILL' 1;
  }

  .loa-event-icon--alt { color: #b0d91c; }

  .loa-event-title {
    font-size: 1rem;
    font-weight: 800;
    color: #191c1d;
    margin-bottom: 0.4rem;
  }

  .loa-event-desc {
    font-size: 0.82rem;
    color: #707a68;
    line-height: 1.5;
  }

  /* --- Tarif --- */
  .loa-tarif-card {
    background: #fff;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    border: 2px solid rgba(176,217,28,0.25);
  }

  .loa-tarif-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #b0d91c;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .loa-tarif-price {
    font-size: 4rem;
    font-weight: 800;
    color: #191c1d;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .loa-tarif-currency {
    font-size: 1.75rem;
    color: #707a68;
  }

  .loa-tarif-sub {
    font-size: 0.875rem;
    color: #707a68;
    margin-top: 0.375rem;
  }

  .loa-tarif-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .loa-tarif-feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: #404a39;
  }

  .loa-tarif-feature-icon {
    font-size: 18px;
    color: #3a6200;
    font-variation-settings: 'FILL' 1;
  }

  .loa-tarif-divider {
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 2rem;
    padding-top: 1.75rem;
  }

  .loa-tarif-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .loa-btn-lg { font-size: 1.05rem; padding: 1.1rem 2.25rem; }

  .loa-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1.1rem 2rem;
    background: #f8f9fa;
    color: #191c1d;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.875rem;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.2s;
  }
  .loa-btn-phone:hover { border-color: #b0d91c; color: #3a6200; }

  .loa-btn-phone-icon { font-size: 20px; }

  /* --- FAQ --- */
  .loa-faq-container {
    background: #f8f9fa;
    border-radius: 1.5rem;
    padding: 0.5rem 1.75rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  }

  .loa-faq-last { border-bottom: none; }

  /* --- CTA final --- */
  .loa-cta-card {
    background: linear-gradient(135deg, #1a2e00 0%, #2d4e00 70%, #1a2e00 100%);
    border-radius: 2rem;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
  }

  .loa-cta-decor-tr {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(176,217,28,0.08);
  }

  .loa-cta-decor-bl {
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(176,217,28,0.05);
  }

  .loa-cta-inner { position: relative; z-index: 1; }

  .loa-cta-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 1.25rem;
    background: rgba(176,217,28,0.15);
    border: 1px solid rgba(176,217,28,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }

  .loa-cta-icon {
    font-size: 30px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
  }

  .loa-cta-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .loa-cta-accent { color: #b0d91c; }

  .loa-cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .loa-cta-avail {
    font-size: 12px;
    color: rgba(176,217,28,0.7);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .loa-cta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b0d91c;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(176,217,28,0.25);
  }

  .loa-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  /* Grilles internes (concept + tarif) */
  .loa-grid-two-col {
    display: grid;
    gap: 2rem;
    align-items: center;
  }

  /* Icône dans faq-icon */
  .faq-icon-add {
    font-size: 18px;
    color: #3a6200;
  }

  /* Dernier item FAQ sans bordure basse */
  .faq-item--last { border-bottom: none; }

  /* === Photobooths === */

  /* --- Hero --- */
  .pb-hero-h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .pb-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
  }

  .pb-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* --- Section tech commune --- */
  .pb-tech-section {
    padding: 3rem 0;
    background: #fff;
    border-bottom: 1px solid #f0f2ec;
  }

  .pb-container-md {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .pb-tech-label {
    text-align: center;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #606859;
    margin-bottom: 1.5rem;
  }

  .pb-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem 1.25rem;
    max-width: 780px;
    margin: 0 auto;
  }
  @media (min-width: 768px) {
    .pb-tech-grid { grid-template-columns: repeat(3, 1fr); gap: 0.875rem 2rem; }
  }

  .pb-tech-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .pb-tech-icon {
    font-size: 20px;
    color: #b0d91c;
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1;
  }

  .pb-tech-text {
    font-size: 0.875rem;
    color: #404a39;
    font-weight: 500;
  }

  /* --- Section modèles (header) --- */
  .pb-models-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  /* --- Grille modèle 2 colonnes --- */
  .pb-model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
  }

  .pb-model-grid--last {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  /* --- Badge modèle --- */
  .pb-model-badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a2e00;
    color: #b0d91c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
  }

  .pb-model-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f7d4;
    color: #3a6200;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
  }

  .pb-model-badge-icon {
    font-size: 14px;
    font-variation-settings: 'FILL' 1;
  }

  /* --- Titre h2 modèle --- */
  .pb-model-h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #191c1d;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .pb-model-accent { color: #3a6200; }

  /* --- Paragraphe modèle --- */
  .pb-model-desc {
    font-size: 1rem;
    color: #606859;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }

  /* --- Liste de features modèle --- */
  .pb-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2rem;
  }

  .pb-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .pb-feature-icon {
    font-size: 16px;
    color: #b0d91c;
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1;
  }

  .pb-feature-text {
    font-size: 0.9rem;
    color: #404a39;
  }

  /* --- CTA row modèle --- */
  .pb-model-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
  }

  /* --- Carte image modèle --- */
  .pb-model-img-card {
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0,0,0,0.12);
    background: #e8f0d8;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pb-model-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* --- Section événements header --- */
  .pb-events-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  /* --- Section Livre d'or audio (fond gris, padding réduit) --- */
  .pb-section-gray-sm {
    padding: 4rem 0;
    background: #f8f9fa;
  }

  /* --- Carte LOA intégrée --- */
  .pb-loa-card {
    background: linear-gradient(135deg, #1a2e00, #2d4e00);
    border-radius: 1.75rem;
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  .pb-loa-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .pb-loa-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .pb-loa-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: rgba(176,217,28,0.15);
    border: 1px solid rgba(176,217,28,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .pb-loa-icon {
    font-size: 28px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
  }

  .pb-loa-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
  }

  .pb-loa-price {
    font-size: 1rem;
    color: #b0d91c;
    font-weight: 700;
  }

  .pb-loa-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin: 0;
  }

  .pb-loa-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
  }

  .pb-loa-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .pb-loa-feature-icon {
    font-size: 16px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
  }

  .pb-loa-feature-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
  }

  /* --- FAQ container --- */
  .pb-faq-container {
    background: #fff;
    border-radius: 1.5rem;
    padding: 0.5rem 1.75rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  }

  /* --- Emphase blanche dans texte sombre --- */
  .pb-strong-white { color: #fff; }

  /* --- Délais d'animation event-icon-card --- */
  .pb-delay-1 { transition-delay: 0.06s; }
  .pb-delay-2 { transition-delay: 0.12s; }
  .pb-delay-3 { transition-delay: 0.18s; }
  .pb-delay-4 { transition-delay: 0.24s; }

  /* --- Icône et label des event-icon-card dans photobooths --- */
  .pb-event-icon {
    font-size: 36px;
    color: #3a6200;
    margin-bottom: 0.75rem;
    display: block;
    font-variation-settings: 'FILL' 1;
  }

  .pb-event-label {
    font-size: 1rem;
    font-weight: 700;
    color: #191c1d;
  }

  /* --- CTA section (wrapper section blanc) --- */
  .pb-cta-section {
    padding: 5rem 0;
    background: #fff;
  }

  /* === Tarifs === */

  /* --- Hero --- */
  .tar-hero-badge-wrap { margin: 0 auto 1.5rem; }

  .tar-hero-h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  /* --- Section "Inclus dans tous les forfaits" --- */
  .tar-inclus-section {
    padding: 3rem 0;
    background: #fff;
    border-bottom: 1px solid #f0f2ec;
  }

  /* --- En-têtes de section (titre + description) --- */
  .tar-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #191c1d;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .tar-section-title--lg {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #191c1d;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .tar-section-title--sm {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #191c1d;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .tar-section-desc {
    font-size: 1rem;
    color: #606859;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
  }

  .tar-section-desc--sm {
    font-size: 1rem;
    color: #606859;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
  }

  /* --- Grille forfaits --- */
  .tar-forfaits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }

  /* --- Couleur du tier (étiquette) --- */
  .tar-tier-muted { color: #606859; }
  .tar-tier-green { color: #3a6200; }

  /* --- Bloc prix --- */
  .tar-price-block {
    font-size: 2.5rem;
    font-weight: 800;
    color: #191c1d;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .tar-price-currency {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .tar-audience {
    font-size: 13px;
    color: #606859;
    margin-bottom: 0.5rem;
  }

  /* --- Badge nombre de tirages --- */
  .tar-badge-tirages {
    font-size: 0.8rem;
    font-weight: 700;
    color: #3a6200;
    background: #f0f7d4;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
  }

  .tar-badge-tirages--featured {
    font-size: 0.8rem;
    font-weight: 700;
    color: #3a6200;
    background: #e4f5b0;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
  }

  /* --- Séparateur + liste features dans une card --- */
  .tar-features-divider {
    border-top: 1px solid #f0f2ec;
    padding-top: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .tar-features-divider--featured {
    border-top: 1px solid #e0edbb;
    padding-top: 1.25rem;
    margin-bottom: 1.5rem;
  }

  /* --- Icône check dans pricing-feature --- */
  .tar-check-icon {
    font-size: 12px;
    color: #3a6200;
    font-variation-settings: 'FILL' 1;
  }

  /* --- Bouton "Choisir ce forfait" (surcharge de btn-primary) --- */
  .tar-btn-forfait {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  /* --- Note livraison sous les forfaits --- */
  .tar-note {
    text-align: center;
    font-size: 12px;
    color: #9aaa88;
    margin-top: 1.25rem;
  }

  .tar-note-icon {
    font-size: 13px;
    vertical-align: middle;
  }

  /* --- Délais d'animation propres à tarifs --- */
  .tar-delay-1 { transition-delay: 0.08s; }
  .tar-delay-2 { transition-delay: 0.16s; }
  .tar-delay-3 { transition-delay: 0.24s; }

  /* --- Grille options à la carte --- */
  .tar-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  /* --- Surcharges event-icon-card pour les options --- */
  .tar-option-card {
    text-align: left;
    padding: 1.5rem;
  }

  .tar-option-card--featured { border-color: #b0d91c; }

  /* --- Icône wrapper dans les options --- */
  .tar-option-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 0.875rem;
    background: #f0f7d4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .tar-option-icon-wrap--dark {
    width: 48px;
    height: 48px;
    border-radius: 0.875rem;
    background: #1a2e00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .tar-option-icon {
    font-size: 24px;
    color: #3a6200;
    font-variation-settings: 'FILL' 1;
  }

  .tar-option-icon--loa {
    font-size: 24px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
  }

  .tar-option-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #191c1d;
    margin-bottom: 0.25rem;
  }

  .tar-option-price { color: #3a6200; }

  .tar-option-desc {
    font-size: 0.85rem;
    color: #606859;
    line-height: 1.6;
    margin: 0;
  }

  /* --- Zone de livraison --- */
  .tar-zone-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }

  .tar-zone-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
  }

  /* --- Google Maps embed --- */
  .tar-maps-wrapper {
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
  }

  .tar-maps-inner {
    position: relative;
    height: 380px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .tar-map-iframe {
    border: 0;
    display: block;
    position: absolute;
    top: -50px;
    left: 0;
  }

  /* --- Légende zones carte --- */
  .tar-map-legend {
    background: #1a2e00;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .tar-map-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .tar-map-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
  }

  .tar-map-dot--z1 { background: #4caf50; }
  .tar-map-dot--z2 { background: #fff176; }
  .tar-map-dot--z3 { background: #9e9e9e; }
  .tar-map-dot--hors { background: rgba(255,255,255,0.2); box-shadow: 0 0 0 2px rgba(255,255,255,0.15); }

  .tar-zone-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
  }

  .tar-zone-label--hors { color: rgba(255,255,255,0.5); }

  .tar-zone-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
  }

  .tar-zone-sub--hors { color: rgba(255,255,255,0.35); }

  /* --- Section zone desc (même que loa-section-desc mais max-width:520px + couleur #606859) --- */
  .tar-zone-desc {
    font-size: 1rem;
    color: #606859;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
  }

  /* === Index === */

  /* --- Hero --- */
  .idx-section-hero { padding: 5rem 0 6rem; }

  .idx-hero-text { max-width: 640px; }

  .idx-hero-badge-mb { margin-bottom: 1.75rem; }

  .idx-h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }

  /* Disponibilité hero (texte plus visible que loa-hero-avail) */
  .idx-hero-avail {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Ligne de boutons hero (non centrée, contrairement à loa-hero-cta-row) */
  .idx-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  /* Garanties row */
  .idx-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
  }

  /* Colonne photo hero */
  .idx-hero-img-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
    transform: rotate(2deg);
  }

  .idx-hero-img-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Badge flottant sur la photo hero */
  .idx-prix-badge-flottant {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    background: #fff;
    border-radius: 1rem;
    padding: 0.875rem 1.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .idx-prix-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b0d91c, #c4e635);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .idx-prix-icon {
    font-size: 22px;
    color: #1a2e00;
    font-variation-settings: 'FILL' 1;
  }

  .idx-prix-sub {
    font-size: 0.8rem;
    color: #606859;
    font-weight: 500;
  }

  .idx-prix-amount {
    font-size: 1rem;
    font-weight: 800;
    color: #191c1d;
  }

  /* --- Stats --- */
  .idx-stats-section {
    background: #fff;
    padding: 3.5rem 0;
    border-bottom: 1px solid #e8edde;
  }

  .idx-stat-val {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a2e00;
    line-height: 1;
  }

  .idx-stat-lbl {
    font-size: 0.9rem;
    color: #606859;
    font-weight: 500;
    margin-top: 0.5rem;
  }

  .idx-stat-star {
    font-size: 1.5rem;
    color: #f59e0b;
  }

  /* Délais d'animation supplémentaires */
  .idx-delay-2 { transition-delay: 0.1s; }
  .idx-delay-3 { transition-delay: 0.15s; }
  .idx-delay-4 { transition-delay: 0.2s; }

  /* --- Événements --- */
  .idx-section-events { padding: 4rem 0; background: #f8f9fa; }

  .idx-events-desc {
    font-size: 0.975rem;
    color: #404a39;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 1.5rem;
  }

  .idx-events-small {
    font-size: 0.875rem;
    color: #606859;
    line-height: 1.7;
    max-width: 520px;
  }

  .idx-events-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  /* --- Forfaits --- */
  .idx-audience {
    font-size: 13px;
    color: #606859;
    margin-bottom: 1.5rem;
  }

  /* Addon Livre d'or dans section forfaits */
  .idx-loa-addon {
    margin-top: 2rem;
    background: linear-gradient(135deg, #1a2e00, #2d4e00);
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .idx-addon-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .idx-addon-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
  }

  .idx-addon-accent { color: #b0d91c; }

  .idx-addon-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
  }

  /* --- Comment ça marche --- */
  .idx-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem;
  }

  .idx-delay-p1 { transition-delay: 0.1s; }
  .idx-delay-p2 { transition-delay: 0.2s; }
  .idx-delay-p3 { transition-delay: 0.3s; }

  .idx-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #191c1d;
    margin-bottom: 0.5rem;
  }

  .idx-step-text {
    font-size: 0.9rem;
    color: #606859;
    line-height: 1.6;
  }

  /* --- Galerie --- */
  .idx-gallery-cta {
    text-align: center;
    margin-top: 2.5rem;
  }

  .idx-icon-18 { font-size: 18px; }

  /* --- Matériel --- */
  .idx-equipment-desc {
    font-size: 1rem;
    color: #606859;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
  }

  .idx-spec-box {
    background: #f8f9fa;
    border-radius: 1.25rem;
    padding: 1.5rem;
  }

  .idx-spec-icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(176,217,28,0.12);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .idx-spec-icon {
    font-size: 20px;
    color: #3a6200;
    font-variation-settings: 'FILL' 1;
  }

  .idx-spec-title {
    font-size: 14px;
    font-weight: 700;
    color: #191c1d;
  }

  .idx-spec-desc {
    font-size: 13px;
    color: #606859;
  }

  .idx-equipment-img {
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0,0,0,0.12);
  }

  .idx-equipment-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* --- Confiance / Avis --- */
  .idx-trust-section { padding: 5rem 0 3.5rem; background: #f8f9fa; }

  .idx-score-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
  }

  .idx-score-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #191c1d;
    line-height: 1;
  }

  .idx-stars-row {
    display: flex;
    gap: 3px;
    margin-bottom: 0.25rem;
  }

  .idx-star-icon {
    font-size: 22px;
    color: #f9ab00;
    font-variation-settings: 'FILL' 1;
  }

  .idx-count-text {
    font-size: 0.8rem;
    color: #606859;
  }

  .idx-google-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.5rem;
    opacity: 0.7;
  }

  .idx-google-link-text {
    font-size: 0.75rem;
    color: #606859;
    text-decoration: underline;
  }

  .idx-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3.5rem;
  }

  .idx-delay-r1 { transition-delay: 0.08s; }
  .idx-delay-r2 { transition-delay: 0.16s; }
  .idx-delay-r3 { transition-delay: 0.24s; }
  .idx-delay-r4 { transition-delay: 0.32s; }

  .idx-stars-sm-row { display: flex; gap: 2px; }

  .idx-star-sm-icon {
    font-size: 16px;
    color: #f9ab00;
    font-variation-settings: 'FILL' 1;
  }

  .idx-trust-sep {
    border-top: 1px solid #eaefdf;
    padding-top: 3rem;
  }

  .idx-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 3.5rem;
  }

  .idx-logo-img {
    width: 80px;
    height: auto;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: opacity 0.2s, filter 0.2s;
  }

  /* --- CTA final --- */
  .idx-btn-phone-lg {
    font-size: 1.05rem;
    padding: 1.1rem 2rem;
  }

  /* Icônes dans les boutons du CTA final */
  .idx-cta-btn-icon {
    font-size: 20px;
    font-variation-settings: 'FILL' 1;
  }
  .idx-cta-btn-icon--outline { font-size: 20px; }

  .idx-nowrap { white-space: nowrap; }
  .idx-mb-1 { margin-bottom: 1rem; }

  /* Variante loa-section-desc avec max-width légèrement plus large et font-size 1.05rem */
  .idx-section-desc-lg {
    font-size: 1.05rem;
    color: #707a68;
    line-height: 1.7;
    max-width: 560px;
    margin: 0.75rem auto 0;
  }

  /* Icône info dans le bouton addon LOA */
  .idx-info-icon { font-size: 17px; }

  /* Icône dans les event-icon-card de la section événements */
  .idx-event-icon {
    font-size: 24px;
    color: #1a2e00;
    font-variation-settings: 'FILL' 1;
  }

  /* Icône dans les process-num */
  .idx-process-icon {
    font-size: 26px;
    font-variation-settings: 'FILL' 1;
  }

  /* Icône dans les zone-chip */
  .idx-zone-chip-icon {
    font-size: 14px;
    font-variation-settings: 'FILL' 1;
  }

  /* === Formulaire réservation — hero === */
  .res-hero {
    position: relative;
    padding: 4rem 0 3rem;
    margin-bottom: 0;
  }
  .res-hero-inner { position: relative; z-index: 1; }

  /* Surcharge des utilitaires Tailwind sur fond vert */
  .res-hero .text-on-surface          { color: #fff; }
  .res-hero .text-on-surface-variant  { color: rgba(255,255,255,0.75); }
  .res-hero .bg-secondary-container   { background: rgba(176,217,28,0.22); }
  .res-hero .bg-surface-container     { background: rgba(255,255,255,0.12); }
  .res-hero .text-xs.font-semibold    { color: rgba(255,255,255,0.85); }
  .res-hero .italic                   { color: #b0d91c !important; }
  .res-hero span.text-primary         { color: #b0d91c !important; }
  .res-hero .opacity-40               { opacity: 0.5; color: #fff; }

  /* === Galeries === */

  .gal-search-wrap {
    position: relative;
    margin-bottom: 2.5rem;
  }
  .gal-search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #707a68;
    pointer-events: none;
  }
  .gal-search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    border: 2px solid #e8ede0;
    border-radius: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: #191c1d;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .gal-search-input:focus {
    border-color: #b0d91c;
    box-shadow: 0 0 0 4px rgba(176,217,28,0.12);
  }
  .gal-search-input::placeholder { color: #a0a89a; }

  .gal-state {
    text-align: center;
    padding: 4rem 2rem;
  }
  .gal-state-icon {
    font-size: 48px;
    color: #b0d91c;
    display: block;
    margin-bottom: 1rem;
  }
  .gal-state-icon--spin { animation: gal-spin 1.2s linear infinite; }
  @keyframes gal-spin { to { transform: rotate(360deg); } }
  .gal-state-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #191c1d;
    margin: 0 0 0.5rem;
  }
  .gal-state-sub {
    font-size: 0.9rem;
    color: #707a68;
    margin: 0;
  }

  .gal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  @media (min-width: 600px) {
    .gal-grid { grid-template-columns: 1fr 1fr; }
  }

  .gal-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .gal-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transform: translateY(-3px);
  }

  /* Thumbnail */
  .gal-card-thumb-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 1rem;
    overflow: hidden;
    background: #e8ede0;
    flex-shrink: 0;
  }
  .gal-card-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }
  .gal-card:hover .gal-card-thumb { transform: scale(1.05); }
  .gal-card-thumb-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
  }
  .gal-card-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,46,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
  }
  .gal-card:hover .gal-card-thumb-overlay { opacity: 1; }
  .gal-card-lock {
    font-size: 36px;
    color: #fff;
    font-variation-settings: 'FILL' 1;
  }

  .gal-card-body { flex: 1; padding: 0; }
  .gal-card-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #191c1d;
    margin-bottom: 0.4rem;
  }
  .gal-card-expiry {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #3a6200;
    background: rgba(176,217,28,0.12);
    padding: 3px 10px;
    border-radius: 999px;
  }
  .gal-expiry-icon {
    font-size: 14px;
    font-variation-settings: 'FILL' 1;
  }

  .gal-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #b0d91c, #c4e635);
    color: #1a2e00;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.875rem;
    cursor: pointer;
    transition: filter 0.2s, transform 0.15s;
  }
  .gal-card:hover .gal-card-cta { filter: brightness(1.06); }

  /* Modal mot de passe */
  .gal-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  .gal-modal[hidden] { display: none; }
  .gal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26,46,0,0.55);
    backdrop-filter: blur(4px);
  }
  .gal-modal-box {
    position: relative;
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.5rem 2rem 2rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  /* Branding Fotografia dans la modale */
  .gal-modal-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .gal-modal-brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2e00, #3a6200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .gal-modal-brand-icon {
    font-size: 18px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
  }
  .gal-modal-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e00;
    letter-spacing: 0.04em;
  }

  .gal-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #f0f4e8;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #3a6200;
    transition: background 0.2s;
  }
  .gal-modal-close:hover { background: #ddeaa0; }
  .gal-modal-thumb-wrap {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    max-height: 180px;
  }
  .gal-modal-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  .gal-modal-thumb-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(26,46,0,0.75);
    color: #b0d91c;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px 4px 8px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
  }
  .gal-modal-thumb-badge .material-symbols-outlined {
    font-size: 15px;
    font-variation-settings: 'FILL' 1;
  }

  .gal-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .gal-modal-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #191c1d;
    margin: 0;
  }
  .gal-modal-desc {
    font-size: 0.9rem;
    color: #707a68;
    margin: 0;
  }
  .gal-modal-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .gal-modal-pwd-icon {
    position: absolute;
    left: 1rem;
    font-size: 18px;
    color: #707a68;
    pointer-events: none;
  }
  .gal-modal-pwd { padding-left: 2.75rem; }
  .gal-modal-error {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.88rem;
    color: #c0392b;
    font-weight: 600;
    margin: 0;
  }
  .gal-modal-error[hidden] { display: none; }
  .gal-modal-error-icon { font-size: 16px; flex-shrink: 0; font-variation-settings: 'FILL' 1; }
  .gal-modal-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .gal-modal-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #a0a89a;
    margin: 0;
    text-align: center;
  }
  .gal-modal-note-icon { font-size: 14px; flex-shrink: 0; }

  /* Viewer iframe galerie */
  .gal-viewer {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
    flex-direction: column;
    background: #0d1a00;
  }
  .gal-viewer[hidden] { display: none; }
  .gal-viewer-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: #1a2e00;
    flex-shrink: 0;
  }
  .gal-viewer-icon {
    font-size: 20px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
    flex-shrink: 0;
  }
  .gal-viewer-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .gal-viewer-ext {
    color: #b0d91c;
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: color 0.2s;
  }
  .gal-viewer-ext:hover { color: #fff; }
  .gal-viewer-close {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .gal-viewer-close:hover { background: rgba(255,255,255,0.2); }
  .gal-viewer-iframe {
    flex: 1;
    width: 100%;
    border: none;
    background: #fff;
  }

  /* === Admin galeries === */
  .adm-topbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: #1a2e00;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .adm-topbar-icon {
    font-size: 22px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
    flex-shrink: 0;
  }
  .adm-topbar-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
  }
  .adm-topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #b0d91c;
    text-decoration: none;
    transition: color 0.2s;
  }
  .adm-topbar-link:hover { color: #fff; }

  .adm-main {
    max-width: 860px;
    margin: 2.5rem auto;
    padding: 0 1.25rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .adm-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
  }
  .adm-card--center {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .adm-card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b0d91c, #c4e635);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .adm-card-icon {
    font-size: 30px;
    color: #1a2e00;
    font-variation-settings: 'FILL' 1;
  }
  .adm-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #191c1d;
    margin: 0;
  }
  .adm-subtitle {
    font-size: 0.95rem;
    color: #707a68;
    margin: 0;
  }

  .adm-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .adm-input {
    width: 100%;
    padding: 0.875rem 1.1rem;
    border: 2px solid #e8ede0;
    border-radius: 0.875rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #191c1d;
    background: #fafff0;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .adm-input:focus {
    border-color: #b0d91c;
    box-shadow: 0 0 0 4px rgba(176,217,28,0.12);
  }
  .adm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    cursor: pointer;
  }

  .adm-error {
    font-size: 0.88rem;
    color: #c0392b;
    font-weight: 600;
    margin: 0;
  }
  .adm-error[hidden] { display: none; }
  .adm-success {
    font-size: 0.88rem;
    color: #3a6200;
    font-weight: 600;
    margin: 0;
  }
  .adm-success[hidden] { display: none; }

  .adm-stats-row {
    display: flex;
    gap: 1rem;
  }
  .adm-stat {
    flex: 1;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
  }
  .adm-stat-val {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3a6200;
  }
  .adm-stat-val--warn { color: #c05c00; }
  .adm-stat-label {
    font-size: 0.85rem;
    color: #707a68;
    font-weight: 500;
  }

  .adm-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .adm-section-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #191c1d;
    margin: 0 0 1.5rem;
  }
  .adm-section-head .adm-section-title { margin: 0; }

  .adm-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  @media (min-width: 600px) {
    .adm-form-grid { grid-template-columns: 1fr 1fr; }
  }
  .adm-field { display: flex; flex-direction: column; gap: 6px; }
  .adm-field--full { grid-column: 1 / -1; }
  .adm-label { font-size: 0.85rem; font-weight: 700; color: #3a6200; }
  .adm-hint { font-size: 0.8rem; color: #a0a89a; margin: 0; }
  .adm-form-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

  .adm-btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.625rem 1.25rem;
    background: #fff0f0;
    color: #c0392b;
    border: 2px solid #f5c6c6;
    border-radius: 0.875rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .adm-btn-danger:hover { background: #fce8e8; border-color: #e57373; }

  .adm-list { display: flex; flex-direction: column; gap: 0.875rem; }
  .adm-list-empty { text-align: center; color: #a0a89a; padding: 2rem; font-size: 0.95rem; }
  .adm-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 2px solid #e8ede0;
    background: #fafff0;
    transition: border-color 0.2s;
  }
  .adm-row--warn { border-color: #f5c6c6; background: #fff8f8; }
  .adm-row--soon { border-color: #ffe5b0; background: #fffdf5; }
  .adm-row-thumb {
    width: 72px;
    height: 54px;
    border-radius: 0.625rem;
    overflow: hidden;
    background: #e8ede0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .adm-thumb-img { width: 100%; height: 100%; object-fit: cover; }
  .adm-thumb-icon {
    font-size: 28px;
    color: #b0d91c;
    font-variation-settings: 'FILL' 1;
  }
  .adm-row-info { flex: 1; min-width: 0; }
  .adm-row-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #191c1d;
    margin-bottom: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .adm-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .adm-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #3a6200;
    background: rgba(176,217,28,0.12);
    padding: 2px 10px;
    border-radius: 999px;
  }
  .adm-badge--date { color: #707a68; background: #f0f4e8; }
  .adm-badge-icon { font-size: 14px; font-variation-settings: 'FILL' 1; }
  .adm-row-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
  }
  .adm-btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: #f0f4e8;
    color: #3a6200;
    transition: background 0.2s;
  }
  .adm-btn-icon:hover { background: #ddeaa0; }
  .adm-btn-icon--delete { background: #fff0f0; color: #c0392b; }
  .adm-btn-icon--delete:hover { background: #fce8e8; }

  .adm-url-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .adm-url-wrap .adm-input { padding-right: 2.5rem; }
  .adm-meta-spinner,
  .adm-meta-ok {
    position: absolute;
    right: 0.75rem;
    display: flex;
    align-items: center;
  }
  .adm-meta-spinner[hidden],
  .adm-meta-ok[hidden] { display: none; }
  .adm-meta-spinner .material-symbols-outlined { font-size: 20px; color: #b0d91c; }
  .adm-meta-ok .material-symbols-outlined { font-size: 20px; color: #3a6200; font-variation-settings: 'FILL' 1; }
  .adm-spin { animation: gal-spin 1s linear infinite; }

  .adm-thumb-preview-wrap { display: flex; flex-direction: column; gap: 0.75rem; }
  .adm-thumb-preview {
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    border-radius: 0.875rem;
    border: 2px solid #e8ede0;
  }
  .adm-thumb-preview[hidden] { display: none; }
