*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --marine: #071F32;
      --marine-2: #0C2C46;
      --marine-deep: #04131F;
      --marine-80: rgba(7,31,50,0.80);
      --marine-55: rgba(7,31,50,0.55);
      --marine-10: rgba(7,31,50,0.08);
      --rouge: #D22638;
      --rouge-deep: #A81628;
      --or: #E7C9A0;
      --bleu-lien: #2C43C4;
      --pierre: #F7F3EC;
      --pierre-2: #EFE8DC;
      --sable: #E3D8C6;
      --blanc: #FFFFFF;
      --texte: #16242E;
      --gris: #56646E;
      --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
      --shadow-sm: 0 2px 10px rgba(7,31,50,0.06);
      --shadow-md: 0 16px 40px rgba(7,31,50,0.12);
      --shadow-lg: 0 34px 80px rgba(7,31,50,0.20);
      --maxw: 1280px;
      --r-xs: 6px;
      --r-sm: 10px;
      --r-md: 14px;
      --r-lg: 22px;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Montserrat', system-ui, sans-serif; color: var(--texte); background: var(--blanc); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; font-size: 16px; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }
    h1, h2, h3, .display { font-family: 'Fraunces', Georgia, serif; }
    ::selection { background: rgba(210,38,56,0.16); color: var(--marine); }

    .skip-link { position: absolute; left: 12px; top: -60px; background: var(--marine); color: #fff; padding: 10px 18px; z-index: 500; font-weight: 600; border-radius: 0 0 8px 8px; transition: top 0.2s ease; }
    .skip-link:focus { top: 0; }
    :focus-visible { outline: 3px solid var(--rouge); outline-offset: 3px; border-radius: 3px; }

    .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 4vw, 44px); }

    .eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--rouge); }
    .eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--rouge); }
    .section-head { margin-bottom: clamp(30px, 4vw, 52px); }
    .section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; line-height: 1.06; letter-spacing: -0.015em; color: var(--marine); margin-top: 14px; max-width: 20ch; }
    .section-head h2 em { font-style: italic; color: var(--rouge); }
    .section-head p { margin-top: 14px; color: var(--gris); max-width: 54ch; font-size: 1.02rem; }

    /* ==================== HEADER ==================== */
    .header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease); border-bottom: 1px solid transparent; }
    .header-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 4vw, 44px); display: flex; align-items: center; justify-content: space-between; height: 80px; transition: height 0.4s var(--ease); }
    .logo { display: flex; align-items: center; gap: 12px; }
    .logo svg { width: 40px; height: 46px; transition: transform 0.4s var(--ease); }
    .logo:hover svg { transform: translateY(-2px); }
    .logo-name { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 600; letter-spacing: 3px; color: #fff; transition: color 0.4s var(--ease); }
    .logo-sub { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.56rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color 0.4s var(--ease); margin-top: -2px; }

    .nav-main { display: flex; gap: 4px; }
    .nav-main > li { position: relative; }
    .nav-main > li > a { display: flex; align-items: center; height: 80px; padding: 0 16px; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.92); position: relative; transition: color 0.3s var(--ease), height 0.4s var(--ease); }
    .nav-main > li > a::after { content: ''; position: absolute; left: 16px; right: 16px; bottom: 24px; height: 2px; background: var(--rouge); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
    .nav-main > li:hover > a::after { transform: scaleX(1); }
    .dropdown { position: absolute; top: calc(100% - 14px); left: 0; min-width: 268px; background: #fff; border: 1px solid var(--sable); box-shadow: var(--shadow-md); padding: 10px; border-radius: var(--r-md); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.28s var(--ease); }
    .nav-main > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown a { display: block; padding: 11px 16px; font-size: 0.87rem; font-weight: 500; color: var(--marine-80); border-radius: var(--r-sm); transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease; }
    .dropdown a:hover { background: var(--pierre); color: var(--marine); padding-left: 22px; }

    .header-right { display: flex; align-items: center; gap: 8px; }
    .icon-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); color: #fff; cursor: pointer; font-family: inherit; font-size: 0.85rem; font-weight: 600; padding: 10px 18px; border-radius: var(--r-sm); backdrop-filter: blur(6px); transition: all 0.3s var(--ease); }
    .icon-btn:hover { background: #fff; color: var(--marine); border-color: #fff; }
    .icon-btn svg { width: 17px; height: 17px; }
    .burger { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
    .burger span { display: block; width: 20px; height: 2px; background: #fff; }

    .header.solid { background: rgba(255,255,255,0.95); backdrop-filter: blur(14px); border-bottom-color: var(--sable); box-shadow: var(--shadow-sm); }
    .header.solid .header-inner { height: 66px; }
    .header.solid .nav-main > li > a { height: 66px; color: var(--marine); }
    .header.solid .nav-main > li > a::after { bottom: 18px; }
    .header.solid .logo-name { color: var(--marine); }
    .header.solid .logo-sub { color: var(--marine-55); }
    .header.solid .logo svg .shield { fill: var(--marine); }
    .header.solid .logo svg .shield-m { fill: #fff; }
    .header.solid .icon-btn { background: var(--marine); color: #fff; border-color: var(--marine); }
    .header.solid .icon-btn:hover { background: var(--rouge); border-color: var(--rouge); }
    .header.solid .burger { background: var(--marine); border-color: var(--marine); }

    /* ==================== HERO ==================== */
    .hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
    .hero-media { position: absolute; inset: 0; z-index: 0; }
    .hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,19,31,0.55) 0%, rgba(4,19,31,0.05) 30%, rgba(4,19,31,0.18) 60%, rgba(4,19,31,0.85) 100%); }
    .hero-img { position: absolute; inset: -3%; width: 106%; height: 106%; background: url('images/paysage-campagne.jpg') center 42%/cover no-repeat; animation: kenburns 26s var(--ease) infinite alternate; will-change: transform; }
    @keyframes kenburns { from { transform: scale(1) translateY(0); } to { transform: scale(1.08) translateY(-1.5%); } }

    .hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(130px, 17vh, 220px); }
    .hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-size: 0.74rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 22px; opacity: 0; animation: heroUp 1s var(--ease) 0.2s forwards; }
    .hero-eyebrow .pin { width: 34px; height: 2px; background: var(--rouge); display: inline-block; }
    .hero h1 { color: #fff; font-weight: 500; font-size: clamp(3.6rem, 12vw, 8.5rem); line-height: 0.92; letter-spacing: -0.02em; text-shadow: 0 8px 40px rgba(0,0,0,0.35); opacity: 0; animation: heroUp 1.1s var(--ease) 0.34s forwards; }
    .hero h1 em { font-style: italic; font-weight: 500; }
    .hero-tagline { color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 2.2vw, 1.4rem); font-weight: 400; max-width: 40ch; margin-top: 22px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); opacity: 0; animation: heroUp 1.1s var(--ease) 0.5s forwards; }
    .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; opacity: 0; animation: heroUp 1.1s var(--ease) 0.66s forwards; }
    .btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; font-family: inherit; font-size: 0.92rem; font-weight: 700; border-radius: var(--r-sm); cursor: pointer; border: 1.5px solid transparent; transition: all 0.3s var(--ease); }
    .btn svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
    .btn:hover svg { transform: translateX(4px); }
    .btn-primary { background: var(--rouge); color: #fff; box-shadow: 0 10px 26px rgba(210,38,56,0.35); }
    .btn-primary:hover { background: var(--rouge-deep); transform: translateY(-2px); }
    .btn-ghost { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.5); backdrop-filter: blur(6px); }
    .btn-ghost:hover { background: #fff; color: var(--marine); border-color: #fff; transform: translateY(-2px); }

    .scroll-cue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,0.8); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0; animation: heroUp 1s var(--ease) 1s forwards; }
    .scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.6); border-radius: 100px; position: relative; }
    .scroll-cue .mouse::after { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; border-radius: 4px; background: #fff; animation: wheel 1.6s ease-in-out infinite; }
    @keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%,100%{opacity:0;transform:translate(-50%,12px)} }
    @keyframes heroUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }

    /* ==================== TRAY ==================== */
    .tray-wrap { position: relative; z-index: 5; margin-top: clamp(-96px, -9vw, -70px); }
    .tray { background: #fff; box-shadow: var(--shadow-lg); border-radius: var(--r-lg); display: grid; grid-template-columns: repeat(6, 1fr); overflow: hidden; }
    .tray a { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 30px 14px; position: relative; transition: background 0.3s var(--ease); }
    .tray a + a::before { content: ''; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px; background: var(--marine-10); }
    .tray a:hover { background: var(--pierre); }
    .tray-ico { width: 56px; height: 56px; border-radius: var(--r-md); background: var(--pierre); color: var(--marine); display: flex; align-items: center; justify-content: center; transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease; }
    .tray a:hover .tray-ico { transform: translateY(-4px); background: var(--marine); color: #fff; }
    .tray-ico svg { width: 26px; height: 26px; stroke-width: 1.5; }
    .tray span { font-size: 0.85rem; font-weight: 600; color: var(--marine); line-height: 1.3; }

    section { position: relative; }
    .pad { padding: clamp(66px, 9vw, 122px) 0; }
    .bg-pierre { background: var(--pierre); }

    .link-all { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.88rem; color: var(--marine); border-bottom: 2px solid var(--rouge); padding-bottom: 4px; transition: gap 0.3s var(--ease); }
    .link-all:hover { gap: 14px; }
    .link-all svg { width: 16px; height: 16px; }
    .head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

    /* ==================== ACTUALITÉS ==================== */
    .news { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
    .feature { display: block; }
    .feature .f-media { position: relative; overflow: hidden; border-radius: var(--r-md); box-shadow: var(--shadow-md); }
    .feature .f-media .ph { width: 100%; aspect-ratio: 3/2; background-size: cover; background-position: center; transition: transform 0.9s var(--ease); }
    .feature:hover .f-media .ph { transform: scale(1.05); }
    .feature .f-media .chip { position: absolute; top: 18px; left: 18px; z-index: 2; background: rgba(255,255,255,0.94); color: var(--marine); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; padding: 7px 14px; border-radius: var(--r-sm); backdrop-filter: blur(4px); }
    .feature .f-body { padding: 26px 4px 0; }
    .feature .kicker { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.6px; color: var(--rouge); }
    .feature h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--marine); margin-top: 10px; }
    .feature p { color: var(--gris); margin-top: 12px; font-size: 1rem; max-width: 48ch; }
    .feature .read { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--rouge); }
    .feature .read svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
    .feature:hover .read svg { transform: translateX(5px); }

    .fil-item { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid var(--marine-10); align-items: start; }
    .fil-item:first-child { border-top: none; padding-top: 0; }
    .fil-item:last-child { padding-bottom: 0; }
    .fil-mark { width: 46px; height: 46px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--pierre); color: var(--marine); box-shadow: inset 0 0 0 1px var(--marine-10); }
    .fil-mark svg { width: 22px; height: 22px; stroke-width: 1.6; }
    .fil-mark.alert { background: var(--rouge); color: #fff; box-shadow: none; }
    .fil-thumb { width: 46px; height: 46px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
    .fil-kicker { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: var(--rouge); }
    .fil-item h4 { font-family: 'Fraunces', serif; font-size: 1.22rem; font-weight: 600; line-height: 1.2; color: var(--marine); margin-top: 4px; }
    .fil-item p { font-size: 0.9rem; color: var(--gris); margin-top: 6px; }
    .fil-item .go { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--marine); transition: gap 0.25s var(--ease); }
    .fil-item .go:hover { gap: 12px; color: var(--rouge); }
    .fil-item .go svg { width: 14px; height: 14px; }

    /* ==================== SLAB ==================== */
    .slab { margin: 0 clamp(0px, 2.5vw, 34px); border-radius: var(--r-lg); overflow: hidden; }
    @media (max-width: 620px) { .slab { margin: 0; border-radius: 0; } }

    /* ==================== HERITAGE ==================== */
    .heritage { background: var(--marine); color: #fff; position: relative; }
    .heritage::before { content: 'M'; position: absolute; right: -3vw; top: 50%; transform: translateY(-50%); font-family: 'Fraunces', serif; font-size: 42vw; line-height: 1; font-weight: 600; color: rgba(255,255,255,0.03); pointer-events: none; z-index: 0; }
    .heritage-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; position: relative; z-index: 1; }
    .heritage-media { position: relative; }
    .heritage-media .h-img { position: relative; overflow: hidden; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
    .heritage-media .h-img img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; }
    .heritage-media .stamp { position: absolute; bottom: -20px; right: -14px; border-radius: var(--r-md); background: var(--rouge); color: #fff; padding: 16px 22px; box-shadow: var(--shadow-md); text-align: center; }
    .heritage-media .stamp .num { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 600; line-height: 1; }
    .heritage-media .stamp .lbl { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 1.2px; margin-top: 5px; }
    .heritage-text .eyebrow { color: #fff; } .heritage-text .eyebrow::before { background: var(--rouge); }
    .heritage-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; line-height: 1.06; margin-top: 16px; letter-spacing: -0.015em; }
    .heritage-text h2 em { font-style: italic; color: var(--or); }
    .heritage-text .lede { font-family: 'Fraunces', serif; font-size: clamp(1.1rem, 2vw, 1.4rem); font-style: italic; color: rgba(255,255,255,0.92); margin-top: 22px; line-height: 1.5; }
    .heritage-text p { color: rgba(255,255,255,0.72); margin-top: 18px; font-size: 0.98rem; }
    .heritage-facts { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
    .heritage-facts .f { flex: 1; min-width: 96px; padding: 18px 16px; border-radius: var(--r-sm); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
    .heritage-facts .f .n { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; color: #fff; }
    .heritage-facts .f .t { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
    .heritage-text .btn { margin-top: 32px; }

    /* ==================== VIVRE À MUZY (mosaïque photos) ==================== */
    .vivre-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; gap: 16px; }
    .vtile { position: relative; overflow: hidden; border-radius: var(--r-md); display: block; box-shadow: var(--shadow-sm); }
    .vtile .vph { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.9s var(--ease); }
    .vtile:hover .vph { transform: scale(1.06); }
    .vtile .vgrad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,19,31,0) 30%, rgba(4,19,31,0.30) 62%, rgba(4,19,31,0.86) 100%); }
    .vtile .vcap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 22px 24px; color: #fff; }
    .vtile .vk { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: rgba(255,255,255,0.82); }
    .vtile h3 { font-size: 1.3rem; font-weight: 600; margin-top: 3px; line-height: 1.15; }
    .vtile .varr { position: absolute; top: 16px; right: 16px; z-index: 2; width: 38px; height: 38px; border-radius: var(--r-sm); background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transform: translateY(-6px); transition: all 0.3s var(--ease); }
    .vtile:hover .varr { opacity: 1; transform: none; }
    .vtile .varr svg { width: 16px; height: 16px; }
    .vtile.big { grid-column: span 2; grid-row: span 2; }
    .vtile.big h3 { font-size: 2rem; }
    .vtile.big .vcap { padding: 30px 32px; }

    /* ==================== AGENDA ==================== */
    .agenda-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .ev { background: #fff; border: 1px solid var(--sable); border-radius: var(--r-md); padding: 24px 26px; display: flex; gap: 20px; align-items: center; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
    .ev:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .ev-date { flex-shrink: 0; width: 76px; height: 78px; border-radius: var(--r-md); background: var(--marine); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
    .ev-date::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 12px; height: 2px; background: var(--rouge); }
    .ev-date .j { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 600; line-height: 1; }
    .ev-date .m { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }
    .ev-body .tag { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--rouge); }
    .ev-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--marine); margin-top: 5px; }
    .ev-body .meta { display: flex; align-items: center; gap: 6px; margin-top: 9px; font-size: 0.82rem; color: var(--gris); }
    .ev-body .meta svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ==================== ALERTES SMS (clair) ==================== */
    .sms { background: var(--pierre); border-top: 1px solid var(--sable); border-bottom: 1px solid var(--sable); position: relative; overflow: hidden; }
    .sms::after { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; border: 1px solid var(--sable); right: -90px; bottom: -150px; }
    .sms-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
    .sms h2 { color: var(--marine); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 600; line-height: 1.06; letter-spacing: -0.015em; }
    .sms h2 em { font-style: italic; color: var(--rouge); }
    .sms p { color: var(--gris); margin-top: 18px; font-size: 1.02rem; max-width: 46ch; }
    .sms-form { display: flex; gap: 10px; background: #fff; border: 1px solid var(--sable); padding: 8px; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
    .sms-form input { flex: 1; background: none; border: none; outline: none; color: var(--marine); font-family: inherit; font-size: 1rem; padding: 12px 18px; }
    .sms-form input::placeholder { color: var(--marine-55); }
    .sms-form button { background: var(--rouge); color: #fff; border: none; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 0.92rem; padding: 14px 28px; border-radius: var(--r-sm); transition: background 0.3s ease; }
    .sms-form button:hover { background: var(--rouge-deep); }
    .sms small { display: block; margin-top: 14px; color: var(--marine-55); font-size: 0.78rem; }

    /* ==================== FOOTER ==================== */
    .footer { background: var(--marine); color: rgba(255,255,255,0.75); padding-top: clamp(60px, 7vw, 92px); }
    .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .footer .fcol h4 { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 18px; }
    .footer .brand-name { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; letter-spacing: 2px; color: #fff; display: flex; align-items: center; gap: 12px; }
    .footer .brand-name svg { width: 34px; height: 40px; }
    .footer address { font-style: normal; margin-top: 18px; line-height: 1.8; font-size: 0.92rem; }
    .footer a:hover { color: #fff; }
    .footer ul li { margin-bottom: 11px; font-size: 0.9rem; }
    .footer ul li a { transition: padding-left 0.25s var(--ease); }
    .footer ul li a:hover { padding-left: 8px; }
    .footer .urg strong { color: #fff; }
    .footer .urg p { font-size: 0.9rem; line-height: 1.9; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding: 26px 0; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
    .footer-bottom-links { display: flex; flex-wrap: wrap; gap: 20px; }

    /* ==================== REVEAL ==================== */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
    .reveal.in { opacity: 1; transform: none; }
    .reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; } .reveal.d5 { transition-delay: 0.40s; }

    /* ==================== DRAWER + SEARCH ==================== */
    .overlay { position: fixed; inset: 0; background: rgba(4,19,31,0.5); z-index: 199; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
    .overlay.open { opacity: 1; visibility: visible; }
    .drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 340px; max-width: 88vw; background: #fff; z-index: 200; transform: translateX(100%); transition: transform 0.4s var(--ease); display: flex; flex-direction: column; }
    .drawer.open { transform: translateX(0); }
    .drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--sable); }
    .drawer-head .logo-name { color: var(--marine); }
    .drawer-close { width: 44px; height: 44px; border: none; background: var(--pierre); border-radius: var(--r-sm); cursor: pointer; font-size: 1.5rem; color: var(--marine); }
    .drawer-body { flex: 1; overflow-y: auto; padding: 8px 0; }
    .dnav-item { border-bottom: 1px solid var(--marine-10); }
    .dnav-link { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; font-weight: 600; color: var(--marine); cursor: pointer; }
    .dnav-link .chev { transition: transform 0.3s ease; color: var(--marine-55); }
    .dnav-item.open .chev { transform: rotate(180deg); }
    .dsub { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); background: var(--pierre); }
    .dnav-item.open .dsub { max-height: 460px; }
    .dsub a { display: block; padding: 12px 22px 12px 34px; color: var(--marine-80); font-size: 0.9rem; font-weight: 500; border-top: 1px solid rgba(7,31,50,0.05); }
    .dsub a:hover { color: var(--rouge); }
    .drawer-foot { padding: 20px 22px; border-top: 1px solid var(--sable); background: var(--pierre); font-size: 0.85rem; line-height: 1.7; }
    .drawer-foot a { color: var(--rouge); font-weight: 600; }

    .search { position: fixed; inset: 0; background: #fff; z-index: 300; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: all 0.28s var(--ease); }
    .search.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .search-head { display: flex; align-items: center; gap: 14px; padding: 16px clamp(18px,4vw,44px); border-bottom: 1px solid var(--sable); }
    .search-field { flex: 1; display: flex; align-items: center; gap: 12px; background: var(--pierre); padding: 0 20px; height: 56px; border-radius: var(--r-md); }
    .search-field svg { opacity: 0.4; flex-shrink: 0; }
    .search-field input { flex: 1; border: none; background: none; outline: none; font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--marine); }
    .search-cancel { background: none; border: none; cursor: pointer; font-weight: 700; color: var(--rouge); font-size: 0.9rem; }
    .search-body { flex: 1; overflow-y: auto; padding: 36px clamp(18px,4vw,44px); max-width: 900px; }
    .search-body h3 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--marine-55); margin-bottom: 16px; }
    .search-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
    .search-tags a { padding: 10px 18px; background: var(--pierre); border-radius: var(--r-sm); font-weight: 500; font-size: 0.9rem; color: var(--marine); transition: all 0.25s ease; }
    .search-tags a:hover { background: var(--marine); color: #fff; }
    .search-links a { display: flex; align-items: center; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--marine-10); color: var(--marine); font-size: 0.98rem; }
    .search-links a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--rouge); }
    .search-links a:hover { color: var(--rouge); }

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 1080px) {
      .news { grid-template-columns: 1fr; gap: 40px; }
      .agenda-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 900px) {
      .nav-main, .icon-btn .lbl { display: none; }
      .burger { display: flex; }
      .heritage-grid, .sms-inner { grid-template-columns: 1fr; }
      .heritage-media { max-width: 420px; }
      .sms-inner { gap: 30px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .vivre-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
      .vtile.big { grid-column: span 2; grid-row: span 1; grid-auto-rows: 220px; }
    }
    @media (max-width: 760px) {
      .tray { grid-template-columns: repeat(3, 1fr); }
      .tray a:nth-child(n+4) { border-top: 1px solid var(--marine-10); }
      .tray a:nth-child(3n+1)::before { display: none; }
      .tray-wrap { margin-top: -54px; }
      .footer-top { grid-template-columns: 1fr; }
    }
    @media (max-width: 560px) {
      .vivre-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
      .vtile.big { grid-column: auto; }
    }
    @media (max-width: 480px) {
      .tray { grid-template-columns: repeat(2, 1fr); }
      .tray a::before { display: none !important; }
      .hero-cta { flex-direction: column; align-items: stretch; }
      .btn { justify-content: center; }
      .sms-form { flex-direction: column; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
      .reveal { opacity: 1; transform: none; } .hero-img { animation: none; }
    }
