/* ===== Palette / variables ===== */
:root{
    --lu-bg:#efe3cf;
    --lu-paper:#fffaf3;
    --lu-ink:#2b1e17;
    --lu-muted:#5b4942;
    --lu-brand:#6d0f22;         /* bordeaux */
    --lu-brand-2:#8b2a3a;
    --lu-border:#e6d6c8;
    --lu-shadow:0 10px 26px rgba(0,0,0,.08), 0 3px 8px rgba(0,0,0,.04);
}

.luthier{ color:var(--lu-ink); }

/* ===== En-tête ===== */
.lu-hero{ text-align:center; margin: 1rem 0 1.4rem; }
.lu-title{
    font-weight:900; letter-spacing:.2px;
    font-size: clamp(1.5rem, .9rem + 2.2vw, 2.2rem);
    margin:0;
}

/* ===== Grille de services ===== */
.lu-grid{
    display:grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

/* Carte */
.lu-card{
    grid-column: 1 / -1;
    display:grid;
    grid-template-columns: 120px 1fr;
    gap:16px;
    padding:14px;
    background:var(--lu-paper);
    border:1px solid var(--lu-border);
    border-radius:16px;
    box-shadow:var(--lu-shadow);
    align-items:start;
}
@media (min-width: 992px){
    .lu-card{ grid-column: 1 / -1; }
}
/* Image */
.lu-media{
    margin:0;
    aspect-ratio: 4/3;
    overflow:hidden;
    border-radius:12px;
    border:1px solid var(--lu-border);
    background:#0001;
}
.lu-media img{
    width:100%; height:100%; object-fit:cover; display:block;
    transform:scale(1.02);
    transition: transform .35s ease;
}
.lu-card:hover .lu-media img{ transform:scale(1.06); }

/* Corps carte */
.lu-body{ padding-top:2px; }
.lu-h3{
    margin:.15rem 0 .35rem;
    font-size: clamp(1.05rem, .9rem + .6vw, 1.25rem);
    font-weight:800;
}
.lu-h3::after{
    content:"";
    display:block; width:64px; height:3px; margin:.3rem 0 .2rem;
    border-radius:6px;
    background:linear-gradient(90deg,var(--lu-brand),var(--lu-brand-2));
}

/* Liste à puces soignées */
.lu-list{ margin:.4rem 0 0; padding-left:0; list-style:none; }
.lu-list li{
    position:relative; padding-left:1.2rem; margin:.35rem 0;
    color:var(--lu-ink);
}
.lu-list li::before{
    content:""; position:absolute; left:0; top:.58rem;
    width:.55rem; height:.55rem; border-radius:50%;
    background:var(--lu-brand);
    box-shadow:0 0 0 3px #f2e9dc;
}

/* ===== Tarifs ===== */
.lu-rates{ margin: 1.8rem 0 2.6rem; }
.lu-rates-head{ text-align:center; margin-bottom:.6rem; }
.lu-rates .lu-h3{ display:inline-block; margin:0; }
.lu-aster{ color:var(--lu-brand); margin-left:.25rem; }
.lu-note{ color:var(--lu-muted); font-size:.95rem; margin:.3rem 0 .9rem; }

/* Table moderne + conteneur scroll si besoin */
.lu-table-wrap{
    background:var(--lu-paper);
    border:1px solid var(--lu-border);
    border-radius:16px;
    box-shadow:var(--lu-shadow);
    overflow:hidden;
}
.lu-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    font-size:1rem;
}
.lu-table thead th{
    background:#2f363d; color:#fff; font-weight:800; text-align:left;
    padding: .9rem 1rem;
}
.lu-table thead th:last-child{ text-align:right; }
.lu-table td{
    padding: .85rem 1rem; vertical-align:top;
    border-top:1px solid var(--lu-border);
}
.lu-table td:last-child{ text-align:right; white-space:nowrap; }

/* Mobile : table -> cartes */
@media (max-width: 768px){
    .lu-table, .lu-table thead, .lu-table tbody, .lu-table tr, .lu-table th, .lu-table td{ display:block; }
    .lu-table thead{ display:none; }
    .lu-table tr{
        border-top:1px solid var(--lu-border);
        padding:.6rem .6rem .5rem;
    }
    .lu-table td{
        border:0; border-bottom:1px dashed var(--lu-border);
        padding:.55rem .25rem .55rem 7.8rem; position:relative;
    }
    .lu-table td:last-child{ border-bottom:0; }
    .lu-table td::before{
        content: attr(data-label);
        position:absolute; left:.25rem; top:.55rem;
        font-weight:700; color:var(--lu-muted);
    }
}

/* Petites finitions */
@media (hover:hover){
    .lu-card:hover{ transform: translateY(-2px); transition: transform .2s ease; }
}
