h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #2f2f2f;
    margin-bottom: 1rem;
  }

  .wp-singular p {
    margin-bottom: 1.5rem;
  }

.site-nav-desktop {
    display: none;
}

.site-header {
    position: -webkit-sticky;
    position: sticky;
    position: relative;
    top: 0;
    z-index: 95;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease;
    background: rgba(253, 249, 238, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 28px rgba(56, 55, 51, 0.14);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
}

.site-header.is-scrolled::before {
    opacity: 1;
}

.site-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    transform: none;
}

.site-header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.site-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.5rem 0.9rem;
    color: #52525b;
    font-size: 0.93rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.1rem;
    width: 1.9rem;
    height: 2px;
    transform: translateX(-50%) scaleX(0.35);
    transform-origin: center;
    border-radius: 999px;
    background: #df6462;
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
    color: #df6462;
    background: rgba(223, 100, 98, 0.08);
}

.site-nav-link.is-active {
    color: #2f2f2f;
    font-weight: 600;
}

.site-nav-link.is-active::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.site-nav-link:focus-visible {
    outline: 2px solid rgba(223, 100, 98, 0.42);
    outline-offset: 2px;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    flex: 0 0 auto;
    padding: 3px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.lang-switcher-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    padding: 0 0.55rem;
    border-radius: 9999px;
    color: #3f3f46;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-switcher-link:hover {
    background: rgba(0, 0, 0, 0.06);
}

.lang-switcher-link.is-active {
    background: #de625f;
    color: #fff;
    cursor: default;
}

.mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: #3f3f46;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease, background-color 0.2s ease;
}

.mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.32s;
}

.mobile-menu-panel.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(31, 31, 31, 0.58);
    backdrop-filter: blur(2px);
    border: 0;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.mobile-menu-panel.is-open .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu-drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(90vw, 420px);
    padding: 1.3rem 1.2rem;
    background: #f6f1e9;
    border-left: 1px solid rgba(56, 55, 51, 0.08);
    box-shadow: -12px 0 42px rgba(0, 0, 0, 0.24);
    opacity: 0.85;
    transform: translateX(calc(100% + 1rem)) scale(0.98);
    transform-origin: right center;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
    overflow-y: auto;
}

.mobile-menu-panel.is-open .mobile-menu-drawer {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.mobile-menu-close {
    border: 0;
    border-radius: 9999px;
    padding: 0.5rem 0.8rem;
    background: #df6462;
    color: #fff;
    font-size: 0.82rem;
    line-height: 1;
}

.mobile-menu-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-list li {
    opacity: 0;
    transform: translateY(0.45rem);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.mobile-menu-panel.is-open .mobile-menu-list li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-panel.is-open .mobile-menu-list li:nth-child(1) {
    transition-delay: 0.08s;
}

.mobile-menu-panel.is-open .mobile-menu-list li:nth-child(2) {
    transition-delay: 0.11s;
}

.mobile-menu-panel.is-open .mobile-menu-list li:nth-child(3) {
    transition-delay: 0.14s;
}

.mobile-menu-panel.is-open .mobile-menu-list li:nth-child(4) {
    transition-delay: 0.17s;
}

.mobile-menu-panel.is-open .mobile-menu-list li:nth-child(5) {
    transition-delay: 0.2s;
}

.mobile-menu-panel.is-open .mobile-menu-list li:nth-child(6) {
    transition-delay: 0.23s;
}

.mobile-menu-list a {
    display: block;
    border-radius: 9999px;
    padding: 0.78rem 0.95rem;
    font-size: 1rem;
    color: #3f3f46;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu-panel,
    .mobile-menu-backdrop,
    .mobile-menu-drawer,
    .mobile-menu-list li {
        transition: none;
    }
}

.actualite-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(223, 100, 98, 0.28);
    background: rgba(223, 100, 98, 0.1);
    padding: 0.5rem 1rem;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #b63c3a;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.actualite-back-link:hover {
    border-color: #df6462;
    background: rgba(223, 100, 98, 0.18);
}

.oh-page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 2.2rem;
    background: linear-gradient(135deg, #f6efe6 0%, #f0e7dc 55%, #e8ddd0 100%);
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
}

.oh-page-hero-molecule-left {
    pointer-events: none;
    position: absolute;
    left: -2rem;
    bottom: -3rem;
    z-index: 0;
    width: 320px;
    opacity: 0.3;
}

.oh-page-hero-molecule-right {
    pointer-events: none;
    position: absolute;
    right: -2rem;
    top: -2rem;
    z-index: 0;
    width: 340px;
    opacity: 0.3;
}

.oh-page-hero-content {
    position: relative;
    z-index: 10;
}

.oh-page-hero-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.55rem;
    color: #383733;
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    line-height: 1;
}

.oh-page-hero-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: clamp(140px, 26vw, 280px);
    height: 8px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #de625f;
}

@media (min-width: 1024px) {
    .site-header {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .site-header-actions {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        gap: 0.85rem;
    }

    .mobile-menu-toggle {
        position: static;
        width: 56px;
        height: 56px;
        gap: 6px;
        border-radius: 18px;
        transform: none;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .site-header-logo {
        display: inline-flex;
        align-items: center;
        min-width: 190px;
    }

    .site-header-logo img {
        height: 5.6rem;
    }

    .oh-page-hero-molecule-left {
        width: 400px;
    }
}
