/* =========================================================
   SPORTING CLUB ROYANNAIS — feuille de style principale
   Signature visuelle : la diagonale du maillot (bande noire
   en biais sur fond rouge) reprise partout comme motif de
   coupe — boutons, séparateurs de section, cartes, scores.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Alatsi&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  --rouge: #BD1325;
  --rouge-dark: #B21415;
  --noir: #161213;
  --encre: #221E19;
  --pierre: #E8E2D6;
  --pierre-dark: #C9C0AE;
  --blanc: #FBFAF6;
  --vert-terrain: #2C4A2E;

  --font-display: 'Alatsi', 'Arial Narrow', sans-serif;
  --font-body: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --angle: -6deg;
  --slash: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--blanc);
  color: var(--encre);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight:400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 .5em;
}
h2{ font-size: clamp(2rem, 4vw, 3rem); }
h3{ font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p{ margin: 0 0 1em; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 480px){ .container{ padding: 0 18px; } }

:focus-visible{ outline: 3px solid var(--rouge); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight:600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rouge);
  display:flex; align-items:center; gap:.6em;
  margin-bottom: .9em;
}
.eyebrow::before{
  content:"";
  width: 26px; height: 3px;
  background: var(--noir);
  transform: skewX(-20deg);
}

/* ---------- boutons "maillot" ---------- */
.btn{
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .92rem;
  display: inline-block;
  padding: 1em 2em .95em 1.7em;
  clip-path: var(--slash);
  border: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn-primary{ background: var(--rouge); color: var(--blanc); }
.btn-primary:hover{ background: var(--noir); transform: translateY(-2px); }
.btn-dark{ background: var(--noir); color: var(--blanc); }
.btn-dark:hover{ background: var(--rouge); transform: translateY(-2px); }
.btn-outline{ background: transparent; color: var(--noir); box-shadow: inset 0 0 0 2px var(--noir); }
.btn-outline:hover{ box-shadow: inset 0 0 0 2px var(--rouge); color: var(--rouge); }

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header{
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  background: rgba(21,18,14,.94);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--rouge);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  height: 76px;
}
.brand{ display:flex; align-items:center; gap:.7em; }
.brand-mark{
  width: 44px; height: 44px;
  object-fit: contain;
  flex: none;
}
.brand-text{
  font-family: var(--font-display);
  color: var(--blanc);
  font-size: .95rem;
  letter-spacing: .03em;
  line-height:1.1;
  white-space: nowrap;
}
.brand-text small{
  display:block; font-family: var(--font-mono);
  font-size: .58rem; letter-spacing: .18em; color: var(--pierre-dark);
  font-weight: 500; margin-top: .25em;
}

.nav-primary{ display:flex; align-items:center; gap: 0; }
.nav-primary > li{ position: relative; }
.nav-primary > li > a, .nav-primary > li > button{
  background:none; border:none; cursor:pointer;
  font-family: var(--font-body); color: var(--pierre);
  font-weight: 600; font-size: .8rem; letter-spacing:.02em;
  text-transform: uppercase;
  padding: 1.6em .7em;
  display:flex; align-items:center; gap:.35em;
  white-space: nowrap;
  transition: color .15s ease;
}
.nav-primary > li > a:hover, .nav-primary > li > button:hover,
.nav-primary > li.open > button{ color: var(--rouge); }
.nav-primary .caret{ font-size:.65em; transition: transform .2s ease; }
.nav-primary li.open .caret{ transform: rotate(180deg); }

.dropdown{
  position:absolute; top: 100%; left: 0;
  min-width: 240px;
  background: var(--blanc);
  box-shadow: 0 18px 30px rgba(0,0,0,.28);
  border-top: 3px solid var(--rouge);
  padding: .5em 0;
  opacity:0; visibility:hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-primary li.open .dropdown{ opacity:1; visibility:visible; transform: translateY(0); }
.dropdown a{
  display:block; padding: .8em 1.3em;
  font-size: .88rem; font-weight:600; color: var(--encre);
  border-left: 3px solid transparent;
}
.dropdown a:hover{ background: var(--pierre); border-left-color: var(--rouge); color: var(--rouge-dark); }

.nav-cta{ margin-left: .5em; }
.nav-cta .btn{ padding: .65em 1.2em .6em 1em; font-size: .76rem; }

.nav-toggle{
  display:none; background:none; border:none; cursor:pointer;
  width: 40px; height: 32px; position:relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; position:absolute; left:0; right:0; height:3px; background: var(--blanc);
}
.nav-toggle span{ top:14px; }
.nav-toggle span::before{ top:-10px; }
.nav-toggle span::after{ top:10px; }

@media (max-width: 560px){
  .site-header .container{ height: 64px; }
  .brand-mark{ width: 36px; height: 36px; }
  .brand-text{ font-size: .74rem; }
  .brand-text small{ font-size: .52rem; }
  .nav-primary{ top: 64px !important; }
}
@media (max-width: 360px){
  .brand-text{ font-size: .64rem; }
}

@media (max-width: 980px){
  .nav-toggle{ display:block; }
  .nav-primary{
    position:fixed; top:76px; left:0; right:0; bottom:0;
    flex-direction:column; align-items:stretch; gap:0;
    background: var(--noir); overflow-y:auto;
    padding: 1em 1.4em 2em;
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .nav-primary.open{ transform: translateX(0); }
  .nav-primary > li{ border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-primary > li > a, .nav-primary > li > button{ width:100%; justify-content:space-between; padding: 1.1em .2em; }
  .dropdown{
    position:static; box-shadow:none; border-top:none; opacity:1; visibility:visible;
    transform:none; max-height:0; overflow:hidden; padding:0; background: rgba(255,255,255,.03);
    transition: max-height .25s ease;
  }
  .nav-primary li.open .dropdown{ max-height: 400px; padding: .3em 0 .6em; }
  .dropdown a{ color: var(--pierre); padding: .7em 1em; }
  .nav-cta{ margin: 1em 0 0; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; min-height: 100vh; min-height: 100svh;
  display:flex; align-items:flex-end;
  color: var(--blanc);
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position: center 30%; }
.hero-media::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(21,18,14,.35) 0%, rgba(21,18,14,.35) 40%, rgba(21,18,14,.92) 100%);
}
.hero-content{ position:relative; z-index:1; padding: 0 0 5.5rem; width:100%; }
.hero-eyebrow{
  font-family: var(--font-mono); letter-spacing:.22em; text-transform:uppercase;
  font-size:.8rem; color: var(--rouge); margin-bottom: 1em; font-weight:600;
}
.hero h1{
  font-size: clamp(2.6rem, 8vw, 6rem);
  margin: 0;
  text-shadow: 0 6px 26px rgba(0,0,0,.4);
}
.hero h1 span{ color: var(--rouge); }
.hero-sub{
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 42em; margin: 1.1em 0 2em;
  color: var(--pierre);
  font-weight: 500;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap: 1em; }
.hero-scroll{
  position:absolute; right: 28px; bottom: 28px; z-index:1;
  writing-mode: vertical-rl; font-family: var(--font-mono);
  font-size:.72rem; letter-spacing:.2em; color: var(--pierre-dark);
  display:flex; align-items:center; gap:.8em;
}
.hero-scroll::after{ content:""; width:2px; height:46px; background: var(--rouge); }
@media (max-width: 560px){
  .hero-content{ padding-bottom: 3.2rem; }
  .hero-scroll{ display:none; }
}

/* =========================================================
   SECTIONS / DIVIDERS
   ========================================================= */
.section{ padding: 6.5rem 0; position:relative; }
.section-tight{ padding: 4rem 0; }
@media (max-width: 620px){
  .section{ padding: 3.5rem 0; }
  .section-tight{ padding: 2.6rem 0; }
}
.section-dark{ background: var(--noir); color: var(--blanc); }
.section-stone{ background: var(--pierre); }
.section-red{ background: var(--rouge); color: var(--blanc); }

.section-slash-top{ clip-path: polygon(0 3.2vw, 100% 0, 100% 100%, 0 100%); margin-top:-3.2vw; }
.section-slash-bottom{ clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.2vw), 0 100%); }

.section-head{ max-width: 640px; margin-bottom: 3rem; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* generic page hero (sous-pages) */
.page-hero{
  padding: 11rem 0 4.5rem;
  background: var(--noir); color: var(--blanc);
  position:relative; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; top:-20%; right:-6%; width:46%; height:160%;
  background: var(--rouge); clip-path: polygon(30% 0,100% 0,70% 100%,0 100%);
  opacity:.9;
}
.page-hero .container{ position:relative; }
.page-hero .eyebrow{ color: var(--pierre); }
.page-hero .eyebrow::before{ background: var(--rouge); }
.page-hero h1{ font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin:0; }
.page-hero p{ max-width: 46em; color: var(--pierre-dark); font-weight:500; margin-top:1em; }
@media (max-width: 620px){
  .page-hero{ padding: 8rem 0 3rem; }
}

.breadcrumb{
  font-family: var(--font-mono); font-size:.75rem; letter-spacing:.08em;
  color: var(--pierre-dark); margin-bottom: 1.4em; text-transform:uppercase;
}
.breadcrumb a{ color: var(--pierre); }
.breadcrumb a:hover{ color: var(--rouge); }

/* =========================================================
   CARDS / GRIDS
   ========================================================= */
.grid{ display:grid; gap: 1.8rem; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; } }

.card{
  background: var(--blanc);
  border: 1px solid var(--pierre-dark);
  position:relative; padding: 1.9rem 1.7rem;
}
.card::before{
  content:""; position:absolute; top:0; left:0; width: 34px; height: 6px;
  background: var(--rouge); clip-path: polygon(0 0, 100% 0, 78% 100%, 0% 100%);
}
.card h3{ margin-top:.6em; }
.card p:last-child{ margin-bottom:0; }
.card-dark{ background: var(--noir); color: var(--blanc); border-color: rgba(255,255,255,.12); }
.card-dark::before{ background: var(--rouge); }

/* joueur / staff card */
.person{
  background: var(--blanc); border:1px solid var(--pierre-dark);
  position:relative; overflow:hidden;
}
.person-photo{
  aspect-ratio: 4/5; background: var(--pierre-dark);
  display:flex; align-items:center; justify-content:center;
  color: var(--noir); font-family: var(--font-display); font-size: 2.4rem;
  position:relative;
}
.person-photo::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height: 40%;
  background: linear-gradient(180deg, transparent, rgba(21,18,14,.55));
}
.person-num{
  position:absolute; top:.7em; left:.7em; z-index:1;
  font-family: var(--font-mono); background: var(--rouge); color:var(--blanc);
  font-size:.78rem; font-weight:700; padding: .25em .55em;
}
.person-body{ padding: 1.1em 1.2em 1.3em; text-align:center; }
.person-body .name{ font-family: var(--font-display); text-transform:uppercase; font-size:1.05rem; }
.person-body .role{ font-family: var(--font-mono); font-size:.74rem; letter-spacing:.06em; color: var(--rouge-dark); text-transform:uppercase; }

/* stat blocks */
.stat{ text-align:center; }
.stat .num{ font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--rouge); line-height:1; }
.stat .label{ font-family: var(--font-mono); font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; color: var(--pierre-dark); margin-top:.5em; }

/* =========================================================
   FORMULAIRES
   ========================================================= */
.form{ display:grid; gap: 1.3rem; }
.form-row{ display:grid; gap: 1.3rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px){ .form-row{ grid-template-columns: 1fr; } }
.field{ display:flex; flex-direction:column; gap:.5em; }
.field label{
  font-family: var(--font-mono); font-size:.72rem; letter-spacing:.1em;
  text-transform: uppercase; color: var(--noir);
}
.field input, .field select, .field textarea{
  font-family: var(--font-body); font-size: 1rem;
  border: none; border-bottom: 2px solid var(--pierre-dark);
  background: transparent; padding: .7em .2em;
  color: var(--encre);
  transition: border-color .15s ease;
}
.section-dark .field label{ color: var(--pierre); }
.section-dark .field input, .section-dark .field select, .section-dark .field textarea{
  color: var(--blanc); border-bottom-color: rgba(255,255,255,.3);
}
.field input:focus, .field select:focus, .field textarea:focus{ border-bottom-color: var(--rouge); outline:none; }
.field textarea{ resize: vertical; min-height: 120px; }
.form-note{ font-size:.85rem; color: var(--pierre-dark); }
.form-status{ font-family: var(--font-mono); font-size:.85rem; margin-top:.5em; min-height:1.2em; }
.form-status.ok{ color: #6FBF73; }
.form-status.err{ color: var(--rouge); }

/* =========================================================
   TABLEAU CALENDRIER / RESULTATS
   ========================================================= */
.cal-toolbar{
  display:flex; flex-wrap:wrap; gap:.8em; align-items:center; margin-bottom: 1.6em;
}
.cal-toolbar select, .cal-toolbar button{
  font-family: var(--font-mono); font-size:.78rem; text-transform:uppercase; letter-spacing:.06em;
  background: var(--blanc); border:1px solid var(--noir); padding:.6em 1em; cursor:pointer;
}
.cal-toolbar button.active{ background: var(--noir); color: var(--blanc); }

.match-table{ width:100%; border-collapse: collapse; font-family: var(--font-body); }
.match-table thead th{
  text-align:left; font-family: var(--font-mono); font-size:.7rem; letter-spacing:.1em;
  text-transform:uppercase; color: var(--pierre-dark); padding: .6em .8em; border-bottom: 2px solid var(--noir);
}
.match-table tbody tr{ border-bottom: 1px solid var(--pierre-dark); }
.match-table tbody tr:hover{ background: var(--pierre); }
.match-table td{ padding: .9em .8em; font-size:.94rem; vertical-align middle; }
.match-table td.score{ font-family: var(--font-mono); font-weight:700; white-space:nowrap; }
.match-table .home-us{ font-weight:700; }
.tag{
  font-family: var(--font-mono); font-size:.68rem; text-transform:uppercase; letter-spacing:.06em;
  padding: .3em .6em; display:inline-block;
}
.tag-v{ background:#1F6B34; color:#fff; }
.tag-n{ background:#8a8a86; color:#fff; }
.tag-d{ background: var(--rouge); color:#fff; }
.tag-todo{ background: transparent; color: var(--pierre-dark); border:1px dashed var(--pierre-dark); }

/* editable admin mini-panel */
.admin-toggle{
  font-family: var(--font-mono); font-size:.72rem; text-decoration:underline;
  color: var(--pierre-dark); background:none; border:none; cursor:pointer; margin-top:2.2em;
}
.admin-panel{
  display:none; margin-top:1.4em; padding: 1.6em; background: var(--pierre); border:1px dashed var(--pierre-dark);
}
.admin-panel.open{ display:block; }
.admin-panel textarea{ width:100%; min-height:160px; font-family: var(--font-mono); font-size:.82rem; padding:1em; border:1px solid var(--pierre-dark); }

/* =========================================================
   ORGANIGRAMME
   ========================================================= */
.org{ display:flex; flex-direction:column; align-items:center; gap: 1.6rem; }
.org-node{
  background: var(--noir); color: var(--blanc); text-align:center;
  padding: 1em 1.6em; clip-path: var(--slash); min-width: 220px;
}
.org-node .role{ font-family: var(--font-mono); font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color: var(--rouge); display:block; margin-bottom:.3em; }
.org-node .name{ font-weight:700; }
.org-row{ display:flex; flex-wrap:wrap; justify-content:center; gap: 1.1rem; }
.org-row .org-node{ background: var(--pierre); color: var(--encre); min-width:180px; }
.org-row .org-node .role{ color: var(--rouge-dark); }
.org-row .org-node.top{ background: var(--noir); color: var(--blanc); }
.org-row .org-node.top .role{ color: var(--rouge); }
.org-connector{ width:2px; height: 28px; background: var(--pierre-dark); }
@media (max-width: 480px){
  .org-node{ min-width: 0; width: 100%; padding: 1em 1.2em; }
  .org-row{ flex-direction: column; align-items: stretch; }
  .org-row .org-node{ min-width: 0; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--noir); color: var(--pierre); padding: 4.5rem 0 2rem; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.site-footer h4{ color: var(--blanc); font-size: 1rem; margin-bottom: 1em; }
.site-footer a{ color: var(--pierre-dark); }
.site-footer a:hover{ color: var(--rouge); }
.footer-nav li{ margin-bottom:.6em; font-size:.92rem; }
.footer-bottom{
  margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12);
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:1em;
  font-family: var(--font-mono); font-size:.72rem; color: var(--pierre-dark); letter-spacing:.04em;
}
.social{ display:flex; gap:.9em; }
.social a{
  width: 36px; height:36px; border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center; font-size:.8rem;
}
.social a:hover{ border-color: var(--rouge); color: var(--rouge); }

/* =========================================================
   PARTENAIRES
   ========================================================= */
.sponsor-tier{ margin-bottom: 3rem; }
.sponsor-tier h3{ display:flex; align-items:center; gap:.8em; }
.sponsor-tier h3::after{ content:""; flex:1; height:1px; background: var(--pierre-dark); }
.sponsor-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:1.2rem; }
@media (max-width: 780px){ .sponsor-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px){ .sponsor-grid{ grid-template-columns: 1fr; } }
.sponsor-logo{
  background: var(--pierre); border:1px solid var(--pierre-dark); border-bottom:none;
  aspect-ratio: 3/2; display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono); font-size:.78rem; color: var(--pierre-dark); text-align:center; padding: 1em;
}
.sponsor-card{
  display:flex; flex-direction:column;
  background: var(--blanc); border:1px solid var(--pierre-dark);
}
.sponsor-name{
  font-family: var(--font-body); font-weight:700; text-align:center;
  padding: .9em .8em .3em; font-size:.95rem;
}
.sponsor-link{
  margin: .8em 1em 1.2em; text-align:center; font-size:.72rem;
  padding: .7em 1em .65em;
}

/* =========================================================
   FRISE CHRONOLOGIQUE
   ========================================================= */
.timeline{ position:relative; margin-top: 1rem; }
.timeline::before{
  content:""; position:absolute; left: 112px; top: 6px; bottom: 6px; width: 3px;
  background: var(--pierre-dark);
}
.timeline-item{
  position:relative; display:grid;
  grid-template-columns: 96px 32px 1fr;
  column-gap: 1.4rem; align-items:start;
  padding-bottom: 2.6rem;
}
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-year{
  font-family: var(--font-mono); font-weight:700; color: var(--rouge);
  text-align:right; font-size: 1.15rem; padding-top: .1em; white-space:nowrap;
}
.timeline-marker{ display:flex; justify-content:center; }
.timeline-marker::before{
  content:""; width: 16px; height: 16px; border-radius: 50%;
  background: var(--rouge); box-shadow: 0 0 0 4px var(--blanc), 0 0 0 5px var(--rouge);
  margin-top: .3em;
}
.timeline-content{ padding-top: .05em; }
.timeline-content p{ margin:0; font-size: .96rem; color: var(--encre); }
.timeline-content strong{ color: var(--noir); }
@media (max-width: 620px){
  .timeline::before{ left: 62px; }
  .timeline-item{ grid-template-columns: 46px 24px 1fr; column-gap: .8rem; }
  .timeline-year{ font-size: .92rem; }
}

/* full-bleed photo strip */
.photo-strip{ display:grid; grid-template-columns: repeat(3,1fr); }
@media (max-width: 780px){ .photo-strip{ grid-template-columns: 1fr; } }
.photo-strip .youth-photo{ aspect-ratio: 4/3; }

/* =========================================================
   CATÉGORIES JEUNES
   ========================================================= */
.youth-card{
  background: var(--blanc); border: 1px solid var(--pierre-dark);
  display:flex; flex-direction:column;
}
.youth-photo{
  aspect-ratio: 4/3; background: var(--pierre);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono); font-size:.75rem; color: var(--pierre-dark);
  position:relative;
}
.youth-photo::before{
  content:""; position:absolute; top:0; left:0; width: 30px; height: 5px;
  background: var(--rouge); clip-path: polygon(0 0, 100% 0, 78% 100%, 0% 100%);
}
.youth-body{ padding: 1.2em 1.3em 1.4em; }
.youth-body h3{ margin-bottom:.5em; }
.youth-body p{ font-size:.88rem; margin-bottom:.5em; color: var(--encre); }
.youth-body p:last-child{ margin-bottom:0; }
.youth-body p strong{ color: var(--rouge-dark); font-family: var(--font-mono); font-size:.7rem; letter-spacing:.05em; text-transform:uppercase; display:block; margin-bottom:.2em; }

/* misc */
.divider-red{ height:4px; background: var(--rouge); width:64px; margin: 0 0 1.6em; clip-path: polygon(0 0,100% 0,90% 100%,0 100%); }
.lead{ font-size: 1.15rem; color: var(--encre); font-weight:500; }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items:start; }
@media (max-width: 860px){ .two-col{ grid-template-columns: 1fr; gap: 2.2rem; } }
.pull-photo{ position:relative; }
.pull-photo img{ width:100%; }
.pull-photo::before{
  content:""; position:absolute; inset: -10px -10px auto auto; width:70%; height:70%;
  border: 3px solid var(--rouge); z-index:-1;
}
.map-frame{ border:0; width:100%; height: 360px; filter: grayscale(.3); }
