:root{
    --bg: #f3f4f6;
    --paper: #ffffff;
    --ink: #141414;
    --muted: #60636b;
    --line: rgba(15, 15, 15, .12);
    --shadow: 0 18px 55px rgba(18, 20, 40, .12);
    --shadow2: 0 10px 28px rgba(18, 20, 40, .10);
    --r: 18px;
    --r2: 22px;
    --hero1: #000000;
    --hero2: #141517;
    --accent: #0f172a; /* navy */
    --chip: rgba(255,255,255,.92);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
    margin:0;
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--ink);
    background: radial-gradient(1100px 520px at 10% 10%, rgba(2, 6, 23, .07), transparent 60%),
    radial-gradient(900px 520px at 90% 30%, rgba(2, 6, 23, .05), transparent 60%),
    linear-gradient(180deg, var(--bg), #ffffff);
    background-attachment: fixed;
}

a{ color: inherit; }
.wrap{
    max-width: 1120px;
    margin: 0 auto;
    padding: 26px 18px 64px;
}

/* HERO (CV-like) */
.hero{
    box-shadow: var(--shadow);
    background: linear-gradient(90deg, var(--hero1), var(--hero2));
    color:#fff;
}
.heroInner{
    padding: 22px 22px 18px;
}
.heroName{
    margin:0 0 8px 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 1.05;
}
.heroRole{
    margin:0;
    font-size: 14px;
    opacity: .92;
    font-weight: 500;
}
.heroLine{
    height:1px;
    background: rgba(255,255,255,.24);
    margin: 12px 0 12px;
}
.heroContact{
    margin:0;
    font-size: 12px;
    opacity: .90;
}
.tagline{
    padding: 10px 22px;
    background: rgba(255,255,255,.92);
    color: #2b2b2b;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: .2px;
    text-align:center;
    border-top: 1px solid rgba(255,255,255,.10);
}

/* Controls */
.panel{
    margin-top: 16px;
    padding: 14px 14px 10px;
}
.controls{
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.pills{
    display:flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,15,15,.12);
    background: var(--chip);
    text-decoration:none;
    font-size: 13px;
    color: rgba(20,20,20,.92);
}
.pill:hover{ border-color: rgba(15,15,15,.20); }
.pill--active{
    background: linear-gradient(180deg, rgba(2,6,23,.10), rgba(255,255,255,.94));
    border-color: rgba(2,6,23,.22);
    font-weight: 700;
}
.search{
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,15,15,.12);
    background: var(--chip);
}
.search input{
    border:none;
    outline:none;
    background: transparent;
    font-size: 13px;
    min-width: 230px;
    color: var(--ink);
}
@media (max-width: 560px){
    .search input{ min-width: 140px; }
}
.btn{
    border: 1px solid rgba(15,15,15,.12);
    background: rgba(255,255,255,.92);
    border-radius: 999px;
    padding: 8px 10px;
    font-weight: 700;
    cursor:pointer;
}
.btn:hover{ border-color: rgba(15,15,15,.20); }

/* Sections */
.section{
    margin-top: 18px;
}
.sectionTitleRow{
    display:flex;
    align-items:center;
    gap: 12px;
    margin: 50px 0 30px;
}
.ruleFixed{
    width: 20px;
    height: 1px;
    background: rgba(2,6,23,.88);
    flex: 0 0 20px;
}
.ruleFlex{
    height: 1px;
    background: rgba(2,6,23,.18);
    flex: 1;
}
.h2{
    margin:0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 32px;
    padding: 20px;
}

/* Featured layout (B): meta left, shots right */
.card{
    border: 1px solid var(--line);
    box-shadow: var(--shadow2);
    overflow:hidden;
}
.cardInner{
    display:grid;
    grid-template-columns: 1fr 420px;
    gap: 14px;
    padding: 16px 16px 14px;
    align-items:start;
}
@media (max-width: 980px){
    .cardInner{ grid-template-columns: 1fr; }
}

.meta h3{
    margin: 0 0 20px 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: .1px;
    color:#111;
}
.date {
    font-weight: initial;
    font-style: italic;
    color: rgba(0, 0, 0, 0.2);
}
.row{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items:center;
    margin-bottom: 20px;
}
.tag{
    display:inline-flex;
    align-items:center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,15,15,.10);
    background: rgba(255,255,255,.86);
    color: rgba(20,20,20,.78);
    font-size: 12px;
    white-space: nowrap;
}
.tag a{ text-decoration:none; border-bottom: 1px solid rgba(20,20,20,.22); }
.tag a:hover{ border-bottom-color: rgba(20,20,20,.44); }

.bullets{
    margin: 0;
    padding-left: 18px;
    color: rgba(20,20,20,.86);
    line-height: 1.55;
    font-size: 14px;
}
.bullets li{ margin: 4px 0; }
.bullets li strong{ font-weight: 800; }

.cardInner .shots{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
@media (max-width: 520px){
    .cardInner .shots{ grid-template-columns: 1fr; }
}
.cardInner .shots--single{
    grid-template-columns: 1fr;
}

.cardInner .shots--single .shot img{
    height: 260px; /* plus grande hauteur pour premium look */
}
.shot{
    border-radius: 16px;
    overflow:hidden;
    border: 1px solid rgba(15,15,15,.10);
    background: rgba(255,255,255,.82);
    box-shadow: 0 10px 26px rgba(18, 20, 40, .08);
}
.shot a{ display:block; text-decoration:none; }
.shot img{
    width: 100%;
    height: 180px;              /* thumbnail height */
    object-fit: cover;          /* crop */
    object-position: top center;/* keep top */
    display:block;
    transition: transform .4s ease;
}

.shots--archive .shot img{
    height: 300px;
}

.shot:hover img{
    transform: scale(1.05);
}
.cap{
    padding: 8px 10px;
    font-size: 12px;
    color: rgba(20,20,20,.72);
    border-top: 1px solid rgba(15,15,15,.08);
    display:none;
}

/* Archives compact */
.archiveList{
    display:grid;
    gap: 10px;
}
.archiveItem{
    border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(18, 20, 40, .08);
    padding: 14px 14px 12px;
}
.archiveTop{

}
.archiveName{
    margin:0 0 20px 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    font-weight: 800;
    font-size: 21px;
}
.archiveDesc{
    margin: 8px 0 0 0;
    color: rgba(20,20,20,.78);
    font-size: 13px;
    line-height: 1.5;
}

footer{
    margin-top: 22px;
    color: rgba(20,20,20,.58);
    font-size: 13px;
}
.miniRow{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Floating Action Buttons */

.floating-actions{
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.fab{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(15,15,15,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
    transition: all .25s ease;
    backdrop-filter: blur(6px);
}

.fab svg{
    width: 22px;
    height: 22px;
}

.fab:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0,0,0,.22);
    background: #fff;
}
/* GRID UNIQUEMENT POUR archiveItem */

.archiveList--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* Les featured (.card) prennent toute la largeur */
.archiveList--grid .card {
    grid-column: 1 / -1;
}

/* archive items s'adaptent */
.archiveList--grid .archiveItem {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Mobile */
@media (max-width: 900px) {
    .archiveList--grid {
        grid-template-columns: 1fr;
    }
}