/*
Theme Name: GHMMM
Theme URI: https://ghmmm.platypus-coaching.fr
Author: Jonathan / Platypus
Description: Thème custom pour le site Global Hapkido Magné. Design éditorial, fond blanc, code couleur par discipline, intégration HelloAsso.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
License: Tous droits réservés
Text Domain: ghmmm
*/

/* ============================================
   VARIABLES & RESET
============================================ */
:root {
  --paper: #ffffff;
  --paper-warm: #f7f6f2;
  --ink: #110d0b;
  --ink-soft: #4a4239;
  --ink-mute: #8a7e6d;
  --line: #ececea;
  --accent: #b53e30;
  --accent-deep: #8e2f25;

  /* Discipline colors */
  --hap: #b53e30;
  --mma: #2c3e50;
  --ful: #355064;
  --grp: #6b7547;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.han { font-family: 'Noto Serif KR', serif; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* Scroll fade-in animations */
.fade { opacity: 0; transform: translateY(24px); transition: opacity .85s cubic-bezier(.2,.6,.2,1), transform .85s cubic-bezier(.2,.6,.2,1); }
.fade.in { opacity: 1; transform: none; }
.fade.d1 { transition-delay: .08s; }
.fade.d2 { transition-delay: .16s; }
.fade.d3 { transition-delay: .24s; }
.fade.d4 { transition-delay: .32s; }

/* ============================================
   ANNOUNCEMENT BAR
============================================ */
.announce { background: var(--ink); color: var(--paper); overflow: hidden; }
.announce-track { display: flex; padding: 11px 0; animation: scrollx 42s linear infinite; white-space: nowrap; }
.announce-track span { font-family: 'DM Sans'; font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; padding: 0 28px; font-weight: 500; }
.announce-track .ac { color: var(--accent); }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   HEADER
============================================ */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 30px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand .han-mark { font-family: 'Noto Serif KR', serif; font-weight: 500; font-size: 1.7rem; color: var(--ink); line-height: 1; }
.brand .han-mark .ac { color: var(--accent); }
.brand .wm { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.25rem; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.brand .sub { font-family: 'DM Sans'; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-mute); margin-top: 5px; font-weight: 500; }

.nav-links { display: flex; gap: 24px; align-items: center; list-style: none; }
.nav-links a { font-family: 'DM Sans'; font-size: .78rem; font-weight: 600; color: var(--ink); transition: color .2s; text-transform: uppercase; letter-spacing: .1em; }
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--accent); }

.cta { background: var(--accent); color: #fff !important; padding: 12px 22px; font-weight: 700; font-size: .76rem; transition: background .2s, transform .2s; text-transform: uppercase; letter-spacing: .12em; display: inline-block; }
.cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
.burger { display: none; font-size: 1.4rem; background: none; border: none; cursor: pointer; color: var(--ink); }

/* ============================================
   SOUS-MENUS (desktop dropdown)
============================================ */
.nav-links .menu-item-has-children { position: relative; }
.nav-links .menu-item-has-children > a::after { content: " ▾"; font-size: .6em; vertical-align: middle; }
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--paper);
  border-top: 2px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  list-style: none;
  z-index: 200;
  padding: 8px 0;
}
.nav-links .menu-item-has-children:hover > .sub-menu,
.nav-links .menu-item-has-children:focus-within > .sub-menu { display: block; }
.nav-links .sub-menu a { padding: 10px 20px; font-size: .76rem; display: block; white-space: nowrap; text-transform: uppercase; letter-spacing: .1em; border-bottom: none; }
.nav-links .sub-menu a:hover { color: var(--accent); background: var(--paper-warm); }

/* ============================================
   HERO
============================================ */
.hero { position: relative; width: 100%; height: 85vh; min-height: 620px; max-height: 920px; overflow: hidden; background: var(--ink); }
.hero .bg { position: absolute; inset: 0; }
.hero .bg img { width: 100%; height: 100%; object-fit: cover; animation: heroPan 22s ease-in-out infinite alternate; }
@keyframes heroPan { 0% { transform: scale(1.05); } 100% { transform: scale(1.12) translate(-1.5%, -1%); } }
.hero .grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.3) 65%, rgba(0,0,0,.78) 100%); }

.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 56px 0; color: #fff; }
.hero-top { padding: 0 32px; max-width: 1240px; margin: 0 auto; width: 100%; display: flex; justify-content: space-between; align-items: start; gap: 30px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: 'DM Sans'; font-size: .76rem; text-transform: uppercase; letter-spacing: .22em; font-weight: 600; }
.hero-eyebrow::before { content: ""; width: 36px; height: 1px; background: #fff; opacity: .7; }
.hero-eyebrow .han { color: var(--accent); font-size: 1rem; }
.hero-quote { max-width: 28ch; text-align: right; font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.05rem; line-height: 1.2; text-transform: uppercase; letter-spacing: -.01em; }
.hero-quote .att { display: block; margin-top: 10px; font-family: 'DM Sans'; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .22em; opacity: .8; }

.hero-bottom { padding: 0 32px; max-width: 1240px; margin: 0 auto; width: 100%; }
.hero h1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(3rem, 10vw, 8.6rem); line-height: .88; letter-spacing: -.045em; text-transform: uppercase; color: #fff; }
.hero h1 .last { color: var(--accent); }
.hero p.hero-sub { font-family: 'DM Sans'; color: rgba(255,255,255,.88); font-size: 1.18rem; max-width: 56ch; margin: 32px 0 38px; font-weight: 400; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.btn-ghost-light { color: #fff; padding: 12px 0; font-weight: 700; font-size: .8rem; border-bottom: 2px solid #fff; transition: color .2s, border-color .2s, padding-right .2s; text-transform: uppercase; letter-spacing: .14em; display: inline-block; }
.btn-ghost-light:hover { color: var(--accent); border-color: var(--accent); padding-right: 14px; }

/* ============================================
   HERO STATS BAR
============================================ */
.hero-stats { background: #fff; border-bottom: 2px solid var(--ink); }
.hero-stats .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 48px; padding-bottom: 48px; align-items: end; }
.h-stat .num { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1; color: var(--ink); letter-spacing: -.04em; }
.h-stat .num .sm { font-size: .55em; color: var(--ink-mute); }
.h-stat .lbl { font-family: 'DM Sans'; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-soft); font-weight: 600; max-width: 24ch; margin-top: 10px; }

/* ============================================
   DISCIPLINES MARQUEE
============================================ */
.disc-marquee { padding: 38px 0; background: var(--paper-warm); border-bottom: 2px solid var(--ink); overflow: hidden; }
.disc-marquee-track { display: flex; animation: scrollx 28s linear infinite; white-space: nowrap; align-items: center; }
.disc-marquee-track .nm { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(2.4rem, 5vw, 4rem); padding: 0 32px; line-height: 1; text-transform: uppercase; letter-spacing: -.035em; }
.disc-marquee-track .sep { color: var(--ink); font-family: 'Noto Serif KR'; font-size: 2.2rem; opacity: .35; }

/* ============================================
   SECTIONS
============================================ */
.sec { padding: 130px 0; position: relative; }
.sec-head { margin-bottom: 70px; max-width: 760px; }
.sec-head .sec-label { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.sec-head .sec-label .n { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.1rem; color: var(--accent); }
.sec-head .sec-label .han { color: var(--accent); font-size: 1.1rem; }
.sec-head .sec-label .t { font-family: 'DM Sans'; font-size: .76rem; text-transform: uppercase; letter-spacing: .22em; color: var(--accent-deep); font-weight: 700; }
.sec-head h2 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(2.4rem, 5.4vw, 4.6rem); line-height: .94; letter-spacing: -.035em; text-transform: uppercase; max-width: 22ch; }
.sec-head h2 .red { color: var(--accent); }
.sec-head p { color: var(--ink-soft); margin-top: 28px; font-size: 1.08rem; max-width: 58ch; }

/* ============================================
   DISCIPLINE BOXES (4)
============================================ */
.disc-boxes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.disc-box { aspect-ratio: 3/4.6; position: relative; overflow: hidden; cursor: pointer; background: var(--ink); transition: transform .35s cubic-bezier(.2,.6,.2,1); display: block; color: #fff; }
.disc-box:hover { transform: translateY(-6px); color: #fff; }
.disc-box .media { position: absolute; inset: 0; }
.disc-box .media img { width: 100%; height: 100%; object-fit: cover; animation: kburns 16s ease-in-out infinite alternate; }
.disc-box:hover .media img { animation-duration: 6s; }
@keyframes kburns { 0% { transform: scale(1.1); } 50% { transform: scale(1.2) translate(-2%, -1%); } 100% { transform: scale(1.16) translate(2%, -3%); } }
.disc-box .tint { position: absolute; inset: 0; background: linear-gradient(180deg, var(--c) 0%, transparent 45%); opacity: .72; transition: opacity .35s; }
.disc-box:hover .tint { opacity: .52; }
.disc-box::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 20px; background: var(--c); z-index: 3; }
.disc-box .box-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,13,11,.15) 0%, transparent 30%, rgba(17,13,11,.75) 100%); }
.disc-box .num { position: absolute; top: 18px; left: 18px; z-index: 2; color: #fff; font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.3rem; letter-spacing: -.03em; }
.disc-box .tag { position: absolute; top: 20px; right: 18px; z-index: 2; background: var(--c); color: #fff; font-family: 'DM Sans'; font-size: .62rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; padding: 6px 10px; }
.disc-box .info { position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2; color: #fff; }
.disc-box .name { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(1.4rem, 2.2vw, 2.1rem); text-transform: uppercase; letter-spacing: -.035em; line-height: .92; }
.disc-box .desc { font-family: 'DM Sans'; font-size: .82rem; margin-top: 12px; line-height: 1.45; opacity: .92; }
.disc-box .arrow { position: absolute; bottom: 24px; right: 24px; z-index: 2; color: #fff; font-size: 1.2rem; transition: transform .25s; }
.disc-box:hover .arrow { transform: translate(4px, -4px); }

/* ============================================
   PALETTE STATEMENT
============================================ */
.palette-stmt { padding: 100px 0; background: var(--ink); color: var(--paper); }
.palette-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.p-block { padding: 70px 26px 26px; min-height: 210px; display: flex; flex-direction: column; justify-content: end; color: #fff; transition: padding-bottom .25s; }
.p-block:hover { padding-bottom: 40px; }
.p-block .num { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1rem; opacity: .72; }
.p-block .ttl { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.6rem; text-transform: uppercase; letter-spacing: -.03em; margin-top: 12px; line-height: .95; }
.palette-stmt .statement { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 36px; margin-top: 70px; }
.palette-stmt .statement .big { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(2.2rem, 4.4vw, 3.8rem); text-transform: uppercase; letter-spacing: -.035em; line-height: .95; max-width: 26ch; }
.palette-stmt .statement .big .ac { color: var(--accent); }
.palette-stmt .statement .by { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.15rem; line-height: 1.25; color: #d4ccbb; max-width: 32ch; text-transform: uppercase; letter-spacing: -.005em; }
.palette-stmt .statement .by .att { display: block; font-family: 'DM Sans'; font-size: .76rem; text-transform: uppercase; letter-spacing: .22em; color: #8a8073; margin-top: 14px; font-weight: 600; }

/* ============================================
   GALLERY STRIP
============================================ */
.gallery { padding: 120px 0 0; }
.gallery-strip { display: flex; gap: 14px; padding: 0 32px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 24px; }
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--line); }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--accent); }
.gallery-strip figure { flex: 0 0 480px; aspect-ratio: 4/3; overflow: hidden; scroll-snap-align: start; position: relative; background: var(--ink); margin: 0; }
.gallery-strip figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.gallery-strip figure:hover img { transform: scale(1.04); }
.gallery-strip figcaption { position: absolute; bottom: 16px; left: 16px; right: 16px; color: #fff; font-family: 'DM Sans'; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; text-shadow: 0 2px 12px rgba(0,0,0,.6); }

/* ============================================
   PLANNING
============================================ */
.planning { background: var(--paper-warm); }
.grid-days { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.day { background: #fff; padding: 30px 26px; border: 1px solid var(--line); transition: transform .25s, border-color .25s; }
.day:hover { transform: translateY(-2px); border-color: var(--ink); }
.day h4 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.4rem; color: var(--ink); margin-bottom: 22px; text-transform: uppercase; letter-spacing: -.02em; padding-bottom: 14px; border-bottom: 2px solid var(--ink); }
.slot { margin-bottom: 22px; }
.slot:last-child { margin-bottom: 0; }
.slot .time { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: .95rem; color: var(--ink); margin-bottom: 10px; letter-spacing: -.01em; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { font-family: 'DM Sans'; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; padding: 5px 10px; border: 1.5px solid var(--c); color: var(--c); background: transparent; }
.planning .note { margin-top: 36px; font-family: 'DM Sans'; font-size: .85rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .14em; font-weight: 500; }
.planning-map { margin-top: 60px; border: 1px solid var(--line); overflow: hidden; }
.planning-map .map-link { position: relative; display: block; }
.planning-map .map-overlay { position: absolute; bottom: 16px; right: 16px; background: var(--ink); color: #fff; font-family: 'DM Sans'; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: 10px 18px; transition: background .2s; }
.planning-map .map-link:hover .map-overlay { background: var(--accent); }
.planning-map .map-label { padding: 14px 20px; font-family: 'DM Sans'; font-size: .82rem; color: var(--ink-soft); border-top: 1px solid var(--line); background: var(--paper-warm); }

/* ============================================
   AGENDA
============================================ */
.agenda { background: var(--paper-warm); border-top: 2px solid var(--ink); }
.agenda-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink); }
.agenda-item { display: grid; grid-template-columns: 130px 1fr 200px 140px; gap: 30px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--line); transition: padding .25s, background .25s; }
.agenda-item:hover { padding-left: 18px; padding-right: 18px; background: #fff; }
.agenda-item .date { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.6rem; letter-spacing: -.025em; color: var(--ink); line-height: 1; text-transform: uppercase; }
.agenda-item .date .small { display: block; font-size: .78rem; color: var(--ink-mute); margin-top: 6px; font-weight: 600; letter-spacing: .1em; }
.agenda-item .info h4 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.35rem; text-transform: uppercase; letter-spacing: -.02em; line-height: 1.05; }
.agenda-item .info p { font-family: 'DM Sans'; font-size: .88rem; color: var(--ink-soft); margin-top: 6px; }
.agenda-item .where { font-family: 'DM Sans'; font-size: .82rem; color: var(--ink-soft); }
.agenda-item .where .lbl { display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-mute); font-weight: 600; margin-bottom: 4px; }
.agenda-item .cat { justify-self: end; }
.agenda-item .cat .tag-ev { font-family: 'DM Sans'; font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; padding: 6px 12px; background: var(--c); color: #fff; }
.agenda-cta { margin-top: 50px; text-align: center; }
.agenda-cta a { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: .9rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 4px; transition: color .2s, border-color .2s, padding-right .25s; }
.agenda-cta a:hover { color: var(--accent); border-color: var(--accent); padding-right: 14px; }

/* ============================================
   NEWS
============================================ */
.news-asym { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.news-side { display: flex; flex-direction: column; gap: 32px; }
.news-card { display: flex; flex-direction: column; cursor: pointer; }
.news-card .img { aspect-ratio: 16/11; overflow: hidden; position: relative; margin-bottom: 22px; background: var(--ink); }
.news-side .news-card .img { aspect-ratio: 16/10; }
.news-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.news-card:hover .img img { transform: scale(1.05); }
.news-card .img .pin { position: absolute; top: 18px; left: 18px; z-index: 2; background: var(--c); color: #fff; font-family: 'DM Sans'; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; padding: 7px 13px; }
.news-card .date { font-family: 'DM Sans'; font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; color: var(--c); font-weight: 700; margin-bottom: 14px; }
.news-card h3 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.55rem; line-height: 1.02; letter-spacing: -.025em; text-transform: uppercase; margin-bottom: 14px; }
.news-card.feat h3 { font-size: clamp(2rem, 3.6vw, 3rem); }
.news-card p { color: var(--ink-soft); font-size: .98rem; }
.news-card .more { margin-top: 20px; font-family: 'DM Sans'; font-size: .76rem; font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 3px; align-self: start; transition: color .2s, border-color .2s, padding-right .25s; text-transform: uppercase; letter-spacing: .14em; }
.news-card:hover .more { color: var(--c); border-color: var(--c); padding-right: 16px; }

/* ============================================
   SPONSORS
============================================ */
.sponsors-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 60px; }
.sponsor-slot { aspect-ratio: 3/2; border: 1.5px dashed var(--line); display: grid; place-items: center; color: var(--ink-mute); font-family: 'DM Sans'; font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 600; text-align: center; padding: 10px; transition: border-color .2s, color .2s; }
.sponsor-slot:hover { border-color: var(--accent); color: var(--accent); }
.sponsor-slot img { max-width: 80%; max-height: 80%; object-fit: contain; }
.sponsors-cta { background: var(--ink); color: var(--paper); padding: 60px 50px; display: grid; grid-template-columns: 1.5fr auto; gap: 50px; align-items: center; }
.sponsors-cta h3 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(1.8rem, 3.2vw, 2.6rem); text-transform: uppercase; letter-spacing: -.03em; line-height: .95; margin-bottom: 16px; }
.sponsors-cta p { color: #b3a99a; font-family: 'DM Sans'; font-size: 1rem; max-width: 52ch; }
.sponsors-cta .cta-btn { background: var(--accent); color: #fff; padding: 18px 30px; font-family: 'Bricolage Grotesque'; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .88rem; transition: background .2s, transform .2s; white-space: nowrap; display: inline-block; }
.sponsors-cta .cta-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }

/* ============================================
   TARIFS / INFOS
============================================ */
.infos-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.tarifs h3 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.6rem; margin-bottom: 32px; text-transform: uppercase; letter-spacing: -.02em; }
.tarif-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: baseline; transition: padding-left .25s; }
.tarif-row:hover { padding-left: 14px; }
.tarif-row:last-child { border-bottom: none; }
.tarif-row .what { font-family: 'DM Sans'; font-size: 1rem; font-weight: 500; }
.tarif-row .what .lbl-sub { display: block; font-size: .82rem; color: var(--ink-mute); margin-top: 4px; font-weight: 400; }
.tarif-row .price { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 2.2rem; letter-spacing: -.03em; }
.tarif-row .price .small { font-size: .74rem; color: var(--ink-mute); margin-left: 8px; font-family: 'DM Sans'; font-weight: 500; letter-spacing: 0; }
.tarifs-note { margin-top: 28px; padding: 20px 24px; background: var(--paper-warm); border-left: 3px solid var(--accent); font-size: .94rem; color: var(--ink-soft); }
.tarifs-note strong { color: var(--ink); font-weight: 700; }
.infos-side { display: flex; flex-direction: column; gap: 18px; }
.info-block { background: var(--paper-warm); padding: 34px; }
.info-block h4 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.25rem; margin-bottom: 22px; text-transform: uppercase; letter-spacing: -.02em; }
.info-block .row { display: flex; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.info-block .row:last-child { border-bottom: none; }
.info-block .row .k { font-weight: 700; min-width: 90px; text-transform: uppercase; font-size: .76rem; letter-spacing: .1em; }
.info-block .row .v { color: var(--ink-soft); }
.info-block .ha-cta { display: block; margin-top: 24px; background: var(--ink); color: var(--paper); padding: 16px 24px; text-align: center; font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; transition: background .25s, transform .25s; }
.info-block .ha-cta:hover { background: var(--accent); transform: translateY(-1px); }
.info-block .ha-cta .small { display: block; font-family: 'DM Sans'; font-size: .68rem; opacity: .75; margin-top: 5px; letter-spacing: .15em; font-weight: 500; }

/* ============================================
   PAGE GENERIC (single page templates)
============================================ */
.page-hero { padding: 100px 0 70px; background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.page-hero .label { font-family: 'DM Sans'; font-size: .76rem; text-transform: uppercase; letter-spacing: .22em; color: var(--accent-deep); font-weight: 700; margin-bottom: 20px; }
.page-hero h1 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(2.6rem, 6vw, 5rem); line-height: .94; letter-spacing: -.04em; text-transform: uppercase; max-width: 22ch; }
.page-hero h1 .red { color: var(--accent); }
.page-hero p.chapo { color: var(--ink-soft); margin-top: 28px; font-size: 1.15rem; max-width: 60ch; }

/* ============================================
   SINGLE DISCIPLINE
============================================ */
.disc-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; background: var(--ink); overflow: hidden; }
.disc-hero-bg { position: absolute; inset: 0; }
.disc-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.disc-hero-grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.75) 100%); }
.disc-hero-content { position: relative; z-index: 1; padding: 60px 32px 52px; color: #fff; }
.disc-hero-content .back-link { display: inline-block; font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: 24px; transition: color .2s; }
.disc-hero-content .back-link:hover { color: #fff; }
.disc-hero-content h1 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(2.4rem, 6vw, 4.5rem); text-transform: uppercase; letter-spacing: -.03em; line-height: 1; margin: 0 0 20px; }
.disc-hero-content h1::after { content: ''; display: block; width: 48px; height: 4px; background: var(--c, var(--accent)); margin-top: 18px; }
.disc-hero-content .disc-intro { font-size: 1.1rem; max-width: 60ch; opacity: .9; line-height: 1.6; }

.disc-body { display: grid; grid-template-columns: 1fr; gap: 60px; padding: 80px 32px 100px; max-width: 820px; }
.disc-content { font-size: 1.05rem; line-height: 1.75; }
.disc-content h2 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.8rem; text-transform: uppercase; letter-spacing: -.02em; margin: 50px 0 20px; }
.disc-content h3 { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.3rem; text-transform: uppercase; margin: 36px 0 14px; }
.disc-content p { margin: 0 0 1.2em; }
.disc-content ul, .disc-content ol { margin: 0 0 1.4em 1.4em; }
.disc-content li { margin-bottom: .5em; }

.disc-essai { background: var(--paper-warm); padding: 36px; border-left: 4px solid var(--accent); }
.disc-essai h3 { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.25rem; text-transform: uppercase; letter-spacing: -.01em; margin: 0 0 14px; }
.disc-essai p { margin: 0; color: var(--ink-soft); }

.disc-autres { background: var(--paper-warm); padding: 80px 0; }
.disc-boxes--small .disc-box { min-height: 280px; }

@media (max-width: 900px) {
  .disc-hero-content { padding: 40px 22px 36px; }
  .disc-body { padding: 50px 22px 70px; gap: 40px; }
}

.page-body { padding: 80px 0 120px; }
.page-body .container { max-width: 760px; margin: 0 auto; }
.page-body h2 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 2rem; margin: 60px 0 24px; text-transform: uppercase; letter-spacing: -.02em; }
.page-body h3 { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.4rem; margin: 40px 0 18px; text-transform: uppercase; letter-spacing: -.015em; }
.page-body p { margin: 0 0 1.2em; font-size: 1.05rem; }
.page-body ul, .page-body ol { margin: 0 0 1.4em 1.4em; }
.page-body li { margin-bottom: .5em; font-size: 1.05rem; }
.page-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.page-body a:hover { color: var(--accent-deep); }
.page-body blockquote { border-left: 3px solid var(--accent); padding: 4px 0 4px 24px; margin: 30px 0; font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.4rem; line-height: 1.25; }
.page-body img { margin: 30px 0; }

/* ============================================
   FOOTER
============================================ */
.site-footer { background: var(--ink); color: #b3a99a; padding: 90px 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-brand .mark { font-family: 'Noto Serif KR', serif; font-size: 2.4rem; color: var(--paper); line-height: 1; }
.foot-brand .mark .ac { color: var(--accent); }
.foot-brand .wm { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.5rem; color: var(--paper); margin-top: 10px; text-transform: uppercase; letter-spacing: -.03em; }
.foot-brand .sub { font-family: 'DM Sans'; font-size: .85rem; color: #8a8073; margin-top: 14px; max-width: 32ch; line-height: 1.55; }
.foot-col h5 { color: var(--paper); font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: .95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .12em; }
.foot-col ul { list-style: none; }
.foot-col a { display: block; font-family: 'DM Sans'; font-size: .9rem; padding: 5px 0; transition: color .2s, padding-left .25s; }
.foot-col a:hover { color: var(--accent); padding-left: 8px; }
.foot-bottom { padding-top: 30px; font-family: 'DM Sans'; font-size: .78rem; color: #6f6659; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; text-transform: uppercase; letter-spacing: .12em; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .disc-boxes { grid-template-columns: repeat(2, 1fr); }
  .palette-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: block; flex-shrink: 0; }
  .primary-nav { order: 3; flex: 0 0 auto; }
  .brand { flex: 1; min-width: 0; }
  .brand .wm { font-size: 1rem; }
  .wrap { padding: 0 22px; }
  .hero { height: 75vh; min-height: 540px; }
  .hero-top, .hero-bottom { padding: 0 22px; }
  .hero-quote { display: none; }
  .hero-stats .wrap { grid-template-columns: 1fr; gap: 28px; }
  .disc-boxes { grid-template-columns: 1fr; }
  .palette-bar { grid-template-columns: 1fr; }
  .gallery-strip figure { flex-basis: 320px; }
  .news-asym, .infos-wrap { grid-template-columns: 1fr; }
  .sponsors-cta { grid-template-columns: 1fr; gap: 28px; }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
  .agenda-item { grid-template-columns: 80px 1fr 90px; gap: 16px; padding: 22px 0; }
  .agenda-item .where { grid-column: 2/4; font-size: .78rem; margin-top: 4px; }
  .agenda-item .cat .tag-ev { font-size: .62rem; padding: 5px 9px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

/* WP admin bar */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* ============================================
   MOBILE MENU
============================================ */
@media (max-width: 900px) {
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 82px;
    left: 0;
    width: 100vw;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    z-index: 9999;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav-links .cta { margin-top: 14px; text-align: center; border-bottom: none; }
  body.menu-open { overflow: hidden; }

  /* Sous-menu mobile : accordéon inline */
  .nav-links .menu-item-has-children > a { display: flex; justify-content: space-between; align-items: center; }
  .nav-links .menu-item-has-children > a::after { content: "▾"; font-size: .8em; transition: transform .25s; }
  .nav-links .menu-item-has-children.open > a::after { transform: rotate(-180deg); }
  .nav-links .sub-menu {
    display: none;
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    box-shadow: none !important;
    border-top: none !important;
    border-left: 2px solid var(--accent);
    background: transparent;
    padding: 0 0 8px 16px;
    margin-bottom: 4px;
  }
  .nav-links .menu-item-has-children.open > .sub-menu { display: block; }
  .nav-links .sub-menu a { padding: 10px 0; font-size: .85rem; border-bottom: 1px solid var(--line); white-space: normal; }
  .nav-links .sub-menu li:last-child a { border-bottom: none; }
  /* Pas de flèche sur les items dans le sous-menu */
  .nav-links .sub-menu .menu-item-has-children > a::after { display: none; }
}
