/* HERO */
.hero { background: var(--opeq-navy); padding: 64px 0 72px; text-align: center; }
.hero__eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--opeq-blue); margin-bottom: 14px; }
.hero__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px,6.5vw,84px); line-height: .95; letter-spacing: -.01em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.hero__sub { font-size: clamp(16px,2vw,19px); font-weight: 300; color: rgba(245,243,240,.75); max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* FILTERS */
.filters { background: #fff; padding: 24px 0; border-bottom: 1px solid rgba(14,40,65,.08); position: sticky; top: 72px; z-index: 100; }
.filters__inner { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-pill { padding: 9px 20px; border-radius: 999px; border: 2px solid rgba(14,40,65,.12); background: none; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--fg-muted); cursor: pointer; transition: all .15s; }
.filter-pill:hover { border-color: var(--opeq-blue); color: var(--opeq-blue); }
.filter-pill.active { background: var(--opeq-navy); border-color: var(--opeq-navy); color: #fff; }
.filters__label { font-size: 13px; font-weight: 700; color: var(--fg-muted); text-transform: uppercase; letter-spacing: .08em; margin-right: 4px; }

/* MAP SECTION */
.map-section { padding: 48px 0 0; }
.map-container { background: var(--opeq-navy); border-radius: 24px; height: clamp(340px, 50vw, 560px); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.map-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0E2841 0%, #1a3d5c 100%); }
.map-svg { width: 100%; height: 100%; }
/* Quebec map placeholder — simplified path */
.map-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: rgba(245,243,240,.6); font-size: 15px; z-index: 2; }
.map-placeholder img { width: 80px; height: 80px; opacity: .5; }

/* Map markers */
.map-markers { position: absolute; inset: 0; }
.marker { position: absolute; transform: translate(-50%, -50%); cursor: pointer; }
.marker__dot { width: 18px; height: 18px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.3); transition: transform .15s; }
.marker:hover .marker__dot { transform: scale(1.4); }
.marker__label { position: absolute; top: -36px; left: 50%; transform: translateX(-50%); background: #fff; color: var(--opeq-navy); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,.15); pointer-events: none; }
.marker--tri .marker__dot { background: var(--opeq-blue); }
.marker--atelier .marker__dot { background: var(--opeq-green-deep); }
.marker--admin .marker__dot { background: var(--opeq-yellow); }

/* Popup */
.map-popup { position: absolute; background: #fff; border-radius: 16px; box-shadow: 0 8px 32px rgba(14,40,65,.2); padding: 20px; min-width: 240px; z-index: 10; display: none; }
.map-popup.visible { display: block; }
.map-popup__title { font-weight: 800; font-size: 15px; color: var(--opeq-navy); margin-bottom: 6px; }
.map-popup__addr { font-size: 13px; color: var(--fg-muted); line-height: 1.5; margin-bottom: 10px; }
.map-popup__close { position: absolute; top: 10px; right: 12px; background: none; border: none; cursor: pointer; font-size: 18px; color: var(--fg-muted); }

/* LEGEND */
.legend { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; margin-bottom: 48px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--fg-muted); }
.legend-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.15); flex: 0 0 14px; }
.legend-dot--tri { background: var(--opeq-blue); }
.legend-dot--atelier { background: var(--opeq-green-deep); }
.legend-dot--admin { background: var(--opeq-yellow); }

/* LOCATION CARDS */
.locations { padding: 0 0 80px; }
.locations__section-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(22px,3vw,36px); text-transform: uppercase; color: var(--opeq-navy); margin-bottom: 20px; margin-top: 48px; display: flex; align-items: center; gap: 14px; }
.locations__section-title::before { content: ''; width: 12px; height: 12px; border-radius: 50%; flex: 0 0 12px; }
.locations__section-title--tri::before { background: var(--opeq-blue); }
.locations__section-title--atelier::before { background: var(--opeq-green-deep); }
.locations__section-title--admin::before { background: var(--opeq-yellow); border: 2px solid rgba(14,40,65,.2); }
.locations__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .locations__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .locations__grid { grid-template-columns: repeat(3, 1fr); } }

.loc-card { background: #fff; border-radius: 20px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(14,40,65,.07); border: 2px solid transparent; transition: border-color .15s, box-shadow .15s; }
.loc-card:hover { border-color: var(--opeq-blue); box-shadow: 0 6px 24px rgba(40,170,222,.12); }
.loc-card__type { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; display: inline-flex; align-items: center; gap: 6px; }
.loc-card__type .type-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.loc-card__type--tri { color: var(--opeq-blue); }
.loc-card__type--tri .type-dot { background: var(--opeq-blue); }
.loc-card__type--atelier { color: var(--opeq-green-deep); }
.loc-card__type--atelier .type-dot { background: var(--opeq-green-deep); }
.loc-card__type--admin { color: #8a7010; }
.loc-card__type--admin .type-dot { background: var(--opeq-yellow); }
.loc-card__name { font-weight: 800; font-size: 18px; color: var(--opeq-navy); margin-bottom: 16px; line-height: 1.2; }
.loc-card__info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.loc-info-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.loc-info-row svg { flex: 0 0 16px; margin-top: 1px; }
.loc-card__hours { background: var(--opeq-cream); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: var(--fg-muted); margin-bottom: 18px; line-height: 1.5; }
.loc-card__hours strong { display: block; color: var(--opeq-navy); font-weight: 700; margin-bottom: 2px; }
.loc-card__note { font-size: 12px; color: #8a7010; background: #fefbe6; border-radius: 8px; padding: 8px 12px; margin-bottom: 18px; }
.loc-card__cta { display: flex; gap: 8px; flex-wrap: wrap; }

/* FERMETURE ENCART */
.closure-banner { background: var(--opeq-navy); border-radius: 16px; padding: 20px 28px; display: flex; align-items: center; gap: 16px; margin-bottom: 48px; }
.closure-banner svg { flex: 0 0 24px; color: var(--opeq-yellow); }
.closure-banner p { font-size: 15px; color: rgba(245,243,240,.85); }
.closure-banner strong { color: #fff; }

/* FOOTER */

/* Certs band */
.partner-badge { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 140px; }
