/* =====================================================================
   Brigitte Sion — surcouche du thème Volos
   Palette issue de ses vêtements : marine profond + bleu ciel
   ===================================================================== */

:root {
    --navy-950: #0c1628;
    --navy-900: #101c33;
    --navy-800: #142440;
    --navy-700: #16263f;
    --navy-600: #1e3452;
    --navy-line: #2b3f5e;

    --sky-400: #8fc1e8;   /* bleu de la chemise */
    --sky-500: #6ea9db;
    --sky-600: #3d7db8;
    --sky-050: #eef5fc;
    --sky-100: #e7eff8;
    --sky-200: #d3e3f3;

    --text-dim: #9db3cd;
    --text-light: #eef5fc;

    /* Poppins, la police du thème Volos, pour tout le site.
       --serif est conservé comme nom de variable pour les titres afin de ne pas
       disperser les modifications ; les deux pointent sur la même famille. */
    --serif: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    --sans: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Typographie ---------- */

body {
    font-family: var(--sans);
    font-size: 15.5px;
    line-height: 29px;
    letter-spacing: 0;
}

h1, h2, h3, h4, h5, .entry-title, .service-title, .site-des {
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: -.01em;
    text-wrap: balance;
}

h1.entry-title {
    font-size: 84px;
    line-height: .98;
    font-weight: 700;
    letter-spacing: -.035em;
    color: var(--navy-800);
}

h2.section-title {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.025em;
    margin-bottom: 14px;
    color: var(--text-light);
}

.section-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sky-400);
    margin-bottom: 18px;
    display: block;
}

.section-title-rule {
    width: 68px;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-400), rgba(143,193,232,0));
    margin-bottom: 34px;
}

.section-info {
    font-size: 18px;
    line-height: 31px;
    color: var(--sky-050);
    font-weight: 400;
    /* Répartit les lignes au lieu de couper après un mot court */
    text-wrap: balance;
}

/* Chapô : la même police, en plus grand et en plus clair */
.lead {
    font-size: 20px;
    line-height: 34px;
    font-weight: 300;
    color: var(--sky-050);
    text-wrap: pretty;
}

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

a { transition: color .25s ease, border-color .25s ease; }

/* ---------- Sections : rythme visuel ---------- */

.section {
    background-color: var(--navy-950);
    padding-top: 130px;
    padding-bottom: 20px;
}

.section.section-alt {
    background:
        radial-gradient(1100px 520px at 82% 0%, rgba(143,193,232,.10), transparent 62%),
        linear-gradient(180deg, #101c33 0%, #0c1628 100%);
}

.section.section-deep {
    background:
        radial-gradient(900px 480px at 10% 8%, rgba(61,125,184,.16), transparent 60%),
        var(--navy-950);
}

.section:not(.full-width-section)::before {
    content: "";
    position: absolute;
    top: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg, rgba(143,193,232,.32), rgba(143,193,232,.04) 60%, transparent);
}

/* ---------- Colonne de gauche ---------- */

.content-left {
    background:
        linear-gradient(180deg, #12203a 0%, #0d1830 100%);
    border-right: 1px solid rgba(143,193,232,.14);
}

.content-left-wrapper { padding-left: 52px; padding-right: 22px; }

/* Entre 1361 et 1599 px, le thème rétrécit la colonne à 320 px. À 15 px,
   la ligne de formation la plus longue n'y tenait plus : on lui rend 32 px. */
@media only screen and (min-width: 1361px) and (max-width: 1599px) {
    .content-left { width: 352px; }
    .content-right {
        margin-left: 352px;
        width: calc(100% - 352px);
    }
}

/* La colonne respire sur toute la hauteur au lieu d'être tassée en haut */
@media only screen and (min-width: 1361px) {
    .content-left { overflow-y: auto; }

    .content-left-wrapper > header {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 100vh;
        padding-top: 78px;
        padding-bottom: 62px;
        gap: 48px;
    }

    /* Identité en haut, navigation au milieu, informations en bas :
       le contenu occupe toute la hauteur au lieu d'être tassé. */
    .sidebar-identity,
    .menu-holder,
    .my-info-wrapper { flex: 0 0 auto; margin: 0; }

    .my-info-wrapper .my-info:last-of-type { margin-bottom: 0; }
}

.sidebar-name {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--text-light);
    margin: 0 0 6px;
}

.sidebar-role {
    font-size: 11.5px;
    line-height: 20px;
    letter-spacing: .01em;
    color: var(--sky-400);
    margin-bottom: 0;
}

.my-info-wrapper { padding-top: 42px; }
.my-info { margin-bottom: 30px; }

.my-info-title {
    font-size: 10.5px;
    letter-spacing: 3.4px;
    font-weight: 600;
    color: var(--sky-400);
    margin-bottom: 6px !important;
    text-transform: uppercase;
}

.my-info-content {
    color: var(--text-light);
    font-size: 15px;
    line-height: 25px;
}

.my-info-content a { color: var(--text-light); }
.my-info-content a:hover { color: var(--sky-400); }

.degrees { list-style: none; margin: 0; padding: 0; }
.degrees li {
    font-size: 15px;
    line-height: 25px;
    color: var(--text-light);
    padding-left: 15px;
    margin-bottom: 4px;
    position: relative;
}

.degrees li:last-child { margin-bottom: 0; }
.degrees li::before {
    content: "";
    position: absolute;
    left: 0; top: 11px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--sky-500);
}

/* Sélecteur de langue */

.lang-switch {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(143,193,232,.18);
    font-size: 12px;
    letter-spacing: 2.4px;
    font-weight: 600;
}

.lang-switch a {
    color: var(--text-dim);
    text-decoration: none;
}

.lang-switch a:hover { color: var(--sky-400); }

.lang-switch a.is-current {
    color: var(--sky-400);
    border-bottom: 2px solid var(--sky-400);
    padding-bottom: 3px;
}

.lang-switch .sep {
    color: rgba(157,179,205,.45);
    margin: 0 10px;
}

/* Numéros de section et indicateur de défilement retirés :
   codes du portfolio créatif, hors de propos dans le monde des musées. */
.big-num,
.current-big-num,
.icon-scroll,
.top-pagination { display: none !important; }

/* ---------- Navigation visible sur grand écran ----------
   Le thème masque le menu derrière un bouton. Sur un site de cinq rubriques
   destiné à des institutions, la navigation reste apparente. */

@media only screen and (min-width: 1361px) {
    .toggle-holder { display: none; }

    .menu-holder {
        position: static;
        transform: none !important;
        background: transparent;
        width: auto;
        height: auto;
        min-height: 0;
        padding: 0;
    }

    .menu-wrapper { padding-top: 0; padding-bottom: 8px; }

    .main-menu.sm-clean { display: block; }

    .sm-clean a,
    .sm-clean a:hover,
    .sm-clean a:focus,
    .sm-clean a:active {
        color: var(--text-light);
        font-family: var(--sans);
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: 2.6px;
        text-transform: uppercase;
        line-height: 22px;
        padding: 9px 0;
        background: transparent;
    }

    .sm-clean a:hover,
    .sm-clean a.current,
    .sm-clean li.current > a { color: var(--sky-400); }

    /* Soulignement fin en remplacement du bloc de couleur du thème */
    .sm-clean a:after {
        height: 2px;
        bottom: 4px;
        left: 0;
        background-color: var(--sky-400);
        z-index: 0;
    }

    .sm-clean a.current:after,
    .sm-clean a:hover:after,
    .sm-clean a.highlighted:after,
    .sm-clean li.current > a:after { width: 100%; }

    .my-info-wrapper { padding-top: 0; }
}

/* Sur mobile le thème réduit la colonne à une barre : le menu déroulant reste
   la bonne réponse, on lui rend seulement une typographie cohérente. */
@media only screen and (max-width: 1360px) {
    .sm-clean a,
    .sm-clean a:hover,
    .sm-clean a:focus,
    .sm-clean a:active {
        font-family: var(--sans);
        font-weight: 600;
        font-size: 24px;
        letter-spacing: -.01em;
        color: var(--navy-900);
    }
    .sm-clean a:after { background-color: rgba(255,255,255,.6); }

    /* Le thème masque tout le bloc d'informations sous 1360 px.
       On n'en garde que le sélecteur de langue, épinglé en haut à droite. */
    .my-info-wrapper { display: block !important; padding-top: 0; }
    .my-info-wrapper > *:not(.lang-switch) { display: none; }
    .sidebar-identity { display: none; }

    .lang-switch {
        position: fixed;
        top: 26px;
        right: 30px;
        margin: 0;
        padding: 0;
        border-top: 0;
        z-index: 4;
    }
    .lang-switch a.is-current { padding-bottom: 2px; }
}

@media only screen and (max-width: 1020px) {
    .lang-switch { top: 17px; right: 20px; }

    /* La barre supérieure est en position fixe : sans ce décalage elle
       recouvrait les 55 premiers pixels du portrait, c'est-à-dire le peu
       de marge qu'il y a au-dessus de la tête. */
    .home-right-part { margin-top: 55px; }
}

/* ---------- Accueil ---------- */

.full-width-section .section-wrapper {
    background:
        radial-gradient(760px 520px at 8% 82%, rgba(143,193,232,.34), transparent 62%),
        linear-gradient(160deg, #f5f9fd 0%, #dfeaf6 100%);
}

.home-left-part { flex: 0 0 460px; }

.home-right-part {
    background-image: url(images/brigitte-sion.jpg);
    background-position: center 12%;
    position: relative;
}

.home-right-part::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(223,234,246,.85) 0%, rgba(223,234,246,0) 26%);
}

.site-des {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 4.5px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--sky-600);
    margin-bottom: 16px;
}

.site-info {
    font-size: 21px;
    line-height: 34px;
    font-weight: 300;
    color: #24405f;
    margin-top: 26px;
    max-width: 460px;
}

/* Les trois lignes voulues par Brigitte ne tiennent pas sur un téléphone :
   au-delà de 1024 px on impose ses coupures, en dessous le texte s'adapte. */
.site-info br { display: none; }

@media only screen and (min-width: 1025px) {
    .site-info br { display: inline; }
    .site-info { max-width: none; }
}

.home-rule {
    width: 84px; height: 3px;
    background: var(--sky-600);
    margin: 26px 0 0;
}

.social-links { margin-top: 7vh; }

.social-links a {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #24405f;
    border-bottom: 1px solid rgba(36,64,95,.28);
    padding-bottom: 4px;
    margin-right: 26px;
}

.social-links a:hover { color: var(--sky-600); border-color: var(--sky-600); }

/* ---------- Pôles d'expertise ---------- */

.poles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 0;
}

.pole {
    background: linear-gradient(165deg, #16263f 0%, #111e35 100%);
    border: 1px solid rgba(143,193,232,.16);
    border-radius: 3px;
    padding: 40px 34px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.pole::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-400), var(--sky-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.pole:hover {
    transform: translateY(-6px);
    border-color: rgba(143,193,232,.42);
    box-shadow: 0 24px 48px -28px rgba(0,0,0,.85);
}

.pole:hover::before { transform: scaleX(1); }

.pole-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(143,193,232,.12);
    border: 1px solid rgba(143,193,232,.3);
    color: var(--sky-400);
    font-size: 21px;
    margin-bottom: 26px;
}

.pole-title {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -.02em;
    color: var(--sky-400);
    margin-bottom: 18px;
    font-weight: 600;
}

.pole ul { list-style: none; margin: 0; padding: 0; }

.pole ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 25px;
    color: var(--text-dim);
}

.pole ul li:last-child { margin-bottom: 0; }

.pole ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 11px;
    width: 8px; height: 1px;
    background: var(--sky-500);
}

.pole ul li strong { color: var(--sky-050); font-weight: 600; }

.pole ul li a { color: var(--text-dim); border-bottom: 1px solid rgba(143,193,232,.3); }
.pole ul li a:hover { color: var(--sky-400); border-color: var(--sky-400); }

/* ---------- Chiffres ---------- */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    border-top: 1px solid rgba(143,193,232,.18);
    border-bottom: 1px solid rgba(143,193,232,.18);
}

.stat {
    padding: 40px 26px;
    text-align: center;
    border-right: 1px solid rgba(143,193,232,.12);
}

.stat:last-child { border-right: 0; }

.stat-num {
    font-family: var(--serif);
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
    color: var(--sky-400);
    letter-spacing: -.035em;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 11.5px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 14px;
    font-weight: 500;
}

/* ---------- Livres ---------- */

.book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px 36px;
    margin-top: 52px;
}

.book {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Le libellé de rôle se cale en bas : les cartes d'une même ligne s'alignent */
.book-role { margin-top: auto; padding-top: 10px; }

.book-cover {
    display: block;
    cursor: default;
    position: relative;
    background: #0a1425;
    border: 1px solid rgba(143,193,232,.10);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.book-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.94);
    transition: transform .6s ease;
}

.book-cover::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(12,22,40,0) 55%, rgba(12,22,40,.55) 100%);
    opacity: 0;
    transition: opacity .35s ease;
}

.book:hover .book-cover {
    transform: translateY(-6px);
    border-color: rgba(143,193,232,.5);
    box-shadow: 0 26px 44px -26px rgba(0,0,0,.9);
}

.book:hover .book-cover img { transform: scale(1.04); }
.book:hover .book-cover::after { opacity: 1; }

.book-title {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -.01em;
    color: var(--sky-050);
    margin: 18px 0 4px;
    font-weight: 600;
}

.book-meta {
    font-size: 12.5px;
    line-height: 20px;
    color: var(--text-dim);
}

.book-role {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sky-500);
}

/* ---------- Revue de presse ---------- */

.press-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    margin-top: 50px;
    align-items: start;
}

.press-list { list-style: none; margin: 0; padding: 0; }

.press-item {
    border-top: 1px solid rgba(143,193,232,.16);
    padding: 26px 0;
}

.press-item:last-child { border-bottom: 1px solid rgba(143,193,232,.16); }

.press-item a {
    display: block;
    color: var(--sky-050);
    font-family: var(--serif);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: -.015em;
}

.press-item a:hover { color: var(--sky-400); }

.press-source {
    font-size: 11px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 10px;
    display: block;
}

.press-item .arrow {
    display: inline-block;
    margin-left: 8px;
    font-size: 15px;
    transform: translateX(0);
    transition: transform .3s ease;
    color: var(--sky-500);
}

.press-item a:hover .arrow { transform: translateX(6px); }

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(143,193,232,.24);
    background: #0a1425;
}

/* Emplacement vidéo tant que l'URL d'intégration n'est pas fournie */
.video-frame.is-empty {
    background:
        radial-gradient(520px 300px at 50% 45%, rgba(61,125,184,.22), transparent 70%),
        #0f1c31;
    border-style: dashed;
    border-color: rgba(143,193,232,.3);
}

.video-frame.is-empty::after {
    content: attr(data-placeholder);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 12%;
    font-size: 12px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    line-height: 22px;
    color: rgba(143,193,232,.75);
}

.video-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

.video-caption {
    font-size: 13px;
    line-height: 22px;
    color: var(--text-dim);
    margin-top: 14px;
}

/* ---------- Contact ---------- */

/* Sans le second paragraphe, la mise en deux colonnes laissait un vide :
   la section se lit maintenant en une seule colonne, l'adresse en point d'orgue. */
.contact-block {
    margin-top: 46px;
    max-width: 780px;
}

.contact-intro {
    font-size: 20px;
    line-height: 34px;
    font-weight: 300;
    color: var(--sky-050);
    text-wrap: pretty;
    margin-bottom: 40px;
}

.contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--sky-400);
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(143,193,232,.28);
    word-break: break-word;
}

.contact-mail i {
    font-size: .62em;
    color: var(--sky-600);
    transition: color .25s ease;
}

.contact-mail:hover {
    color: var(--sky-050);
    border-color: var(--sky-400);
}

.contact-mail:hover i { color: var(--sky-400); }

.social-row { margin-top: 44px; }

.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid rgba(143,193,232,.3);
    border-radius: 50%;
    color: var(--sky-400);
    margin-right: 12px;
    font-size: 16px;
    transition: all .3s ease;
}

.social-row a:hover {
    background: var(--sky-400);
    color: var(--navy-950);
    border-color: var(--sky-400);
}

.site-footer {
    margin-top: 90px;
    padding-top: 26px;
    border-top: 1px solid rgba(143,193,232,.14);
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(157,179,205,.7);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer a { color: rgba(157,179,205,.7); }
.site-footer a:hover { color: var(--sky-400); }

/* ---------- Menu ---------- */

nav#header-main-menu ul.main-menu > li > a {
    font-size: 13px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

/* ---------- Apparition au défilement ---------- */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}

.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media only screen and (max-width: 1400px) {
    h1.entry-title { font-size: 68px; }
    h2.section-title { font-size: 34px; }
}

@media only screen and (max-width: 1150px) {
    .poles { grid-template-columns: 1fr; gap: 22px; }
    .book-grid { grid-template-columns: repeat(2, 1fr); }
    .press-layout { grid-template-columns: 1fr; gap: 42px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(143,193,232,.12); }
}

@media only screen and (max-width: 1024px) {
    .content-left-wrapper { padding-left: 40px; padding-right: 30px; }
    .full-width-section .section-wrapper {
        flex-direction: column;
        height: auto;
        padding: 120px 0 0 !important;
    }
    .home-left-part {
        flex: 1 1 auto;
        margin-right: 0;
        padding: 0 8% 60px;
        order: 2;
    }
    .home-right-part {
        order: 1;
        width: 100%;
        flex: 0 0 auto;
        height: 56vh;
        min-height: 340px;
        background-image: url(images/brigitte-sion-mobile.jpg);
        background-position: center top;
    }
    .home-right-part::after { display: none; }
    h1.entry-title { font-size: 52px; }
    .site-info { font-size: 19px; line-height: 31px; max-width: none; }
    .social-links { margin-top: 34px; }
    .section { padding-top: 90px; }
    h2.section-title { font-size: 30px; }
}

/* Le thème masque le portrait sous 767 px. Sur un site de personne,
   il fait partie du propos : on le rétablit. */
@media only screen and (max-width: 767px) {
    .full-width-section .section-wrapper {
        height: auto;
        padding: 0 !important;
        flex-direction: column;
    }
    .home-right-part {
        display: block;
        order: 1;
        width: 100%;
        flex: 0 0 auto;
        height: 52vh;
        min-height: 300px;
        /* Portrait carré ancré en haut. « cover » rogne selon la forme de
           l'écran ; en partant du haut, ce qui disparaît est toujours le bas
           de la veste, jamais le sommet du crâne — quel que soit le téléphone. */
        background-image: url(images/brigitte-sion-mobile.jpg);
        background-position: center top;
    }
    .home-left-part {
        order: 2;
        flex: 0 0 auto;
        padding: 46px 7% 64px;
        margin: 0;
    }
    h1.entry-title { font-size: 42px; line-height: 1.02; }
    .site-des { font-size: 10.5px; }
}

@media only screen and (max-width: 680px) {
    .book-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
    .stats { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid rgba(143,193,232,.12); }
    .stat:last-child { border-bottom: 0; }
    h1.entry-title { font-size: 38px; }
    .lead { font-size: 18px; line-height: 30px; }
    .pole { padding: 32px 26px; }
    .contact-mail { font-size: 21px; gap: 12px; }
    .contact-intro { font-size: 18px; line-height: 30px; }
    .press-item a { font-size: 18px; line-height: 27px; }
    .site-footer { flex-direction: column; }
}
