/* ============================================================
   ALYSSE — Réalisations
   ============================================================ */

.ar-section {
    padding: 4rem 2.5rem;
    background: #F6F2EB;
}

/* Intro */
.ar-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.ar-label {
    color: #C07B2B;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.ar-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 2.25rem;
    color: #1B3A4B;
    margin: 0 0 1rem;
}

.ar-intro-txt {
    font-size: 16px;
    color: #555;
    line-height: 1.85;
    margin: 0;
}

/* Grille */
.ar-grille {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ar-cols-1 { grid-template-columns: 1fr; }
.ar-cols-2 { grid-template-columns: repeat(2, 1fr); }
.ar-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Fiche */
.ar-fiche {
    background: white;
    border-top: 2px solid #C07B2B;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.ar-fiche:hover {
    box-shadow: 0 4px 20px rgba(27, 58, 75, 0.1);
}

/* Image */
.ar-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #E5E0D6;
}

.ar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.ar-fiche:hover .ar-img {
    transform: scale(1.03);
}

/* Placeholder si pas d'image */
.ar-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #E5E0D6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0A898;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Corps */
.ar-fiche-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Badges */
.ar-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0.85rem;
}

.ar-badge {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
}

.ar-badge-type {
    background: rgba(27, 58, 75, 0.08);
    color: #1B3A4B;
}

.ar-badge-secteur {
    background: rgba(192, 123, 43, 0.08);
    color: #C07B2B;
    border: 1px solid rgba(192, 123, 43, 0.3);
}

.ar-badge-niveau {
    color: #C07B2B;
    font-size: 13px;
    letter-spacing: 0;
    padding: 3px 6px;
}

/* Titre fiche */
.ar-fiche-titre {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1B3A4B;
    margin: 0 0 0.85rem;
    line-height: 1.3;
}

/* Description */
.ar-fiche-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin: 0 0 1.25rem;
}

/* Développements */
.ar-fiche-label {
    font-size: 11px;
    font-weight: 600;
    color: #1B3A4B;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.ar-fiche-devs {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}

.ar-fiche-devs li {
    margin-bottom: 4px;
}

/* Plugins */
.ar-fiche-plugins {
    font-size: 12px;
    color: #7FA0B0;
    margin: 0 0 1.5rem;
    letter-spacing: 0.3px;
}

/* Lien */
.ar-fiche-lien {
    display: inline-block;
    background: #C07B2B;
    color: white;
    padding: 10px 20px;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-top: auto;
    align-self: flex-start;
    transition: background 0.2s;
}

.ar-fiche-lien:hover {
    background: #A56825;
    color: white;
}

/* Responsive */
@media ( max-width: 900px ) {
    .ar-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media ( max-width: 600px ) {
    .ar-grille { grid-template-columns: 1fr !important; }
    .ar-section { padding: 3rem 1.25rem; }
    .ar-intro-txt { font-size: 15px; }
}
