@charset "UTF-8";
/* =====================================================================
   Cie Moakosso — feuille de style unique
   Aucune dépendance externe. Bleu de référence : #0000ff.
   ===================================================================== */

/* ------------------------------------------------------------ polices */
@font-face {
  font-family: 'Sen';
  src: url('/assets/fonts/sen-regular.woff2') format('woff2'),
       url('/assets/fonts/sen-regular.woff') format('woff');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------ variables */
:root {
  --blue:        #0000ff;
  --white:       #ffffff;
  --black:       #000000;
  --font:        'Sen', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --fs-base:     18px;
  --fs-h1:       50px;
  --fs-h1-m:     30px;
  --fs-h2:       30px;
  --fs-h2-m:     25px;
  --fs-h3:       24px;
  --fs-h4:       30px;
  --fs-h5:       20px;

  --container:   1310px;
  --gutter:      clamp(16px, 4vw, 50px);
  --header-h:    100px;

  --bg:          var(--blue);
  --fg:          var(--white);
  --accent:      var(--white);
}

/* ------------------------------------------------------------ base */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--fg);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

h1, h2, h3, h4, h5, h6 { font-weight: 400; margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
hr.rule { border: 0; border-top: 1px solid currentColor; opacity: .35; margin: 2rem 0; }

.visually-hidden, .skip:not(:focus) {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip:focus {
  position: fixed; z-index: 999; top: 8px; left: 8px; width: auto; height: auto;
  padding: 10px 16px; background: #fff; color: #0000ff; clip: auto;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ------------------------------------------------------------ visibilité */
/* points de rupture repris de l'ancien thème : desktop >1024, tablette 768-1024,
   mobile 480-767, très petit écran <480 */
@media (min-width: 1025px)                        { .hide-desktop { display: none !important; } }
@media (min-width: 768px) and (max-width: 1024px) { .hide-medium  { display: none !important; } }
@media (min-width: 480px) and (max-width: 767px)  { .hide-small   { display: none !important; } }
@media (max-width: 479px)                         { .hide-mini    { display: none !important; } }
@media (max-width: 767px)                         { .hide-mobile  { display: none !important; } }

/* ====================================================================
   EN-TÊTE
   ==================================================================== */
.header {
  position: absolute; inset: 0 0 auto 0; z-index: 100;
  min-height: var(--header-h);
  display: flex; align-items: center;
  color: var(--white);
}
.header__inner {
  width: 100%; max-width: var(--container); margin-inline: auto;
  padding: 10px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: block; flex: 0 0 auto; }
.logo__img { width: clamp(96px, 9vw, 120px); height: auto; }

.nav__list { display: flex; align-items: center; gap: clamp(6px, 1.6vw, 22px); list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  display: inline-block; padding: 9px 10px;
  font-size: clamp(15px, 1.25vw, 19px); line-height: 1.2;
  border: 1px solid transparent; transition: background .25s, color .25s, border-color .25s;
}
.nav__link:hover, .nav__item:focus-within > .nav__link { border-color: currentColor; }
.nav__item.is-active > .nav__link { background: var(--white); color: var(--blue); border-color: var(--white); }

.nav__toggle { display: none; }
.nav__sub, .nav__sub2 { list-style: none; margin: 0; padding: 0; }
.nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--blue); border: 1px solid var(--white);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav__item.has-sub:hover > .nav__sub,
.nav__item.has-sub:focus-within > .nav__sub,
.nav__item.has-sub.is-open > .nav__sub { opacity: 1; visibility: visible; transform: none; }
.nav__sub a { display: block; padding: 9px 14px; font-size: 16px; }
.nav__sub a:hover { background: var(--white); color: var(--blue); }
.nav__sub2 { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.35); margin: 0 0 6px 14px; }
.nav__sub2 a { font-size: 15px; opacity: .9; padding: 5px 10px; }

.burger { display: none; width: 44px; height: 44px; padding: 10px; flex-direction: column; justify-content: space-between; }
.burger span { display: block; height: 2px; background: currentColor; transition: transform .25s, opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 1024px) {
  .burger { display: flex; position: relative; z-index: 3; }
  .nav {
    position: fixed; inset: 0 0 0 auto; z-index: 2; width: min(360px, 88vw);
    background: var(--blue); border-left: 1px solid rgba(255,255,255,.25);
    padding: calc(var(--header-h) + 12px) 24px 32px;
    transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__item { display: flex; flex-wrap: wrap; align-items: center; }
  .nav__link { flex: 1; padding: 12px 8px; font-size: 20px; }
  .nav__toggle { display: block; width: 44px; height: 44px; font-size: 24px; line-height: 1; }
  .nav__sub {
    position: static; width: 100%; border: 0; opacity: 1; visibility: visible; transform: none;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav__item.is-open > .nav__sub { max-height: 60vh; }
  .nav__sub a { padding: 10px 18px; opacity: .9; }
}

/* ====================================================================
   SECTIONS
   ==================================================================== */
.section {
  position: relative; isolation: isolate;
  padding-block: clamp(40px, 6vw, 90px);
  background: var(--section-bg, var(--bg));
  color: var(--fg);
  overflow: hidden;
}
.section.scheme-blue  { --bg: var(--blue);  --fg: var(--white); }
.section.scheme-light { --bg: var(--white); --fg: var(--black); }
.section.scheme-dark  { --bg: var(--black); --fg: var(--white); }

.section.is-full { min-height: 100svh; display: flex; align-items: center; padding-block: var(--header-h); }
.section.is-full > .section__inner { width: 100%; }
/* l'en-tête est en surimpression : la première section réserve sa hauteur */
.section.is-first:not(.is-full) { padding-top: calc(var(--header-h) + clamp(24px, 3vw, 50px)); }

.section__bg { position: absolute; inset: 0; z-index: -2; }
.section__bg > img, .section__bg > video { width: 100%; height: 100%; object-fit: cover; }
.section__overlay { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.section__inner { position: relative; }
.section__inner--center { text-align: center; }
.section__inner--full { width: 100%; }
.section:has(> .section__inner--full) { padding-block: 0; }
/* une section de contenu accompagnée d'un média occupe une bonne part de l'écran */
.section.has-media:not(.is-full) { min-height: 55vh; display: flex; align-items: center; }
.section.has-media:not(.is-full) > .section__inner { width: 100%; }

/* Traitement duotone bleu : niveaux de gris + fusion « screen » sur le bleu.
   Le fond bleu est porté par .section__bg pour que la fusion s'applique dessus. */
.section.is-duotone { background-color: var(--blue); }
.section.is-duotone .section__bg { background: var(--blue); isolation: isolate; }
.section.is-duotone .section__bg > img,
.section.is-duotone .section__bg > video {
  filter: grayscale(1) contrast(105%);
  mix-blend-mode: screen;
}

/* ------------------------------------------------------------ grille */
.row {
  display: flex; flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
  align-items: flex-start;
}
.col { flex: 0 1 100%; min-width: 0; }
.col--spacer { min-height: 1px; }
.col--1   { flex-basis: 100%; }
.col--1-2 { flex-basis: calc(50% - clamp(10px, 1.5vw, 24px)); }
.col--1-3 { flex-basis: calc(33.333% - clamp(14px, 2vw, 32px)); }
.col--2-3 { flex-basis: calc(66.666% - clamp(7px, 1vw, 16px)); }
.col--1-4 { flex-basis: calc(25% - clamp(15px, 2.25vw, 36px)); }
.col--3-4 { flex-basis: calc(75% - clamp(5px, .75vw, 12px)); }
.col--1-5 { flex-basis: calc(20% - clamp(16px, 2.4vw, 39px)); }
.col--2-5 { flex-basis: calc(40% - clamp(12px, 1.8vw, 29px)); }
.col--3-5 { flex-basis: calc(60% - clamp(8px, 1.2vw, 20px)); }
.col--4-5 { flex-basis: calc(80% - clamp(4px, .6vw, 10px)); }
.col--1-6 { flex-basis: calc(16.666% - clamp(17px, 2.5vw, 40px)); }
.col--link { display: block; }

@media (max-width: 900px) {
  .col--1-2, .col--1-3, .col--2-3, .col--1-4, .col--3-4,
  .col--1-5, .col--2-5, .col--3-5, .col--4-5, .col--1-6 { flex-basis: 100%; }
  .col--spacer { display: none; }
}

/* ------------------------------------------------------------ titres et textes */
.heading { font-size: var(--h-size, var(--fs-h2)); }
h1.heading { font-size: var(--h-size, var(--fs-h1)); }
h3.heading { font-size: var(--h-size, var(--fs-h3)); }
h4.heading { font-size: var(--h-size, var(--fs-h4)); }
h5.heading { font-size: var(--h-size, var(--fs-h5)); }
.heading--center { text-align: center; }
.heading a:hover { text-decoration: underline; text-underline-offset: .18em; }
.heading b, .heading strong { font-weight: 400; background: var(--fg); color: var(--bg); padding: 0 .18em; }

@media (max-width: 767px) {
  h1.heading { font-size: var(--h-size, var(--fs-h1-m)); }
  .heading   { font-size: var(--h-size, var(--fs-h2-m)); }
}

.prose { font-size: var(--t-size, inherit); }
.prose > :last-child { margin-bottom: 0; }
.prose a { text-decoration: underline; text-underline-offset: .18em; text-decoration-thickness: 1px; }
.prose a:hover { opacity: .75; }
.prose img { margin-block: 1em; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1em; }
.prose blockquote { margin: 1.5em 0; padding-left: 1em; border-left: 2px solid currentColor; opacity: .9; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { padding: .5em .75em; border-bottom: 1px solid currentColor; text-align: left; }

.figure { margin: 0 0 15px; }
.figure__img { max-width: min(100%, var(--fig-max, 100%)); }
.figure--center { text-align: center; }
.figure--center img { margin-inline: auto; }
.figure--right img { margin-left: auto; margin-right: 0; }
.figure figcaption { font-size: 13px; opacity: .8; padding-top: .5em; }

/* ------------------------------------------------------------ boutons */
.btnrow { display: flex; flex-wrap: wrap; gap: 5px 10px; margin: 1.2em 0; }
.btnrow--center { justify-content: center; }
.btnrow--right  { justify-content: flex-end; }
.btnrow--left   { justify-content: flex-start; }

.btn {
  display: inline-flex; align-items: center; gap: .4em;
  padding: 12px 18px;
  font-size: 17px; letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid currentColor; border-radius: 0;
  transition: background .25s ease, color .25s ease, opacity .25s ease;
}
.btn:hover { background: var(--fg); color: var(--bg); }
.btn--dashed { border-style: dashed; border-inline-color: transparent; padding-inline: 22px; }
.btn--dashed:hover { background: transparent; color: inherit; opacity: .7; }
.btn--icon { border: 0; padding: 6px; font-size: 26px; }
.btn__chev { font-style: normal; font-size: 1.15em; line-height: 1; }

.scrolldown { display: block; width: max-content; margin: 1.5rem auto 0; opacity: .9; animation: bob 2.4s ease-in-out infinite; }
.scrolldown:hover { opacity: 1; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ====================================================================
   GRILLES DE CARTES (actus, people, projets)
   ==================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 6px 8px; justify-content: center; margin: 0 0 22px; }
.filters__btn {
  padding: 6px 12px; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid currentColor; transition: background .2s, color .2s;
}
.filters__btn:hover { opacity: .75; }
.filters__btn.is-active { background: var(--fg); color: var(--bg); }

.cards { display: grid; gap: 8px; grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr)); }
.cards--2 { --cols: 2; } .cards--3 { --cols: 3; } .cards--4 { --cols: 4; }
.cards--5 { --cols: 5; } .cards--6 { --cols: 6; }

.card { position: relative; display: block; overflow: hidden; background: var(--blue); }
.card__media { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--blue); }
.card__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(105%); mix-blend-mode: screen;
  transition: transform .5s ease, filter .4s ease;
}
.scheme-light .card__img { mix-blend-mode: normal; filter: grayscale(1) contrast(105%); }
.card:hover .card__img { filter: grayscale(0); mix-blend-mode: normal; transform: scale(1.03); }

.card__body {
  position: absolute; inset: 0;
  display: grid; place-items: center; padding: 18px; text-align: center;
  color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,.55);
}
.card__title { display: block; font-size: clamp(17px, 1.5vw, 26px); line-height: 1.25; }
.card__meta  { display: block; font-size: 12px; line-height: 1.5; text-transform: uppercase; opacity: .92; }

/* variante « bandeau » : nom + fonction alignés en bas (fiches people) */
.card--band .card__body {
  inset: auto 0 0 0; display: block; place-items: start; text-align: left;
  padding: 12px 14px 14px; text-shadow: none;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.45) 60%, rgba(0,0,0,0));
}
.card--band .card__title { font-size: 18px; }
.cards--on-hover .card__body { opacity: 0; transition: opacity .3s; }
.cards--on-hover .card:hover .card__body,
.cards--on-hover .card:focus-visible .card__body { opacity: 1; }

@media (max-width: 1100px) { .cards--5, .cards--6 { --cols: 3; } }
@media (max-width: 900px)  { .cards { --cols: 3 !important; } }
@media (max-width: 700px)  { .cards { --cols: 2 !important; } }

/* ====================================================================
   CARROUSEL D'ÉVÉNEMENTS
   ==================================================================== */
.carousel { position: relative; }
.carousel__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 25%);
  gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; scrollbar-width: thin;
}
.carousel__track > * { scroll-snap-align: start; }
@media (max-width: 1000px) { .carousel__track { grid-auto-columns: minmax(220px, 45%); } }
@media (max-width: 600px)  { .carousel__track { grid-auto-columns: 82%; } }

.carousel__nav {
  position: absolute; top: 38%; z-index: 2;
  width: 44px; height: 44px; font-size: 34px; line-height: 1;
  background: rgba(0,0,0,.35); color: #fff;
}
.carousel__nav:hover { background: rgba(0,0,0,.6); }
.carousel__nav--prev { left: -8px; } .carousel__nav--next { right: -8px; }
.carousel__nav[disabled] { opacity: 0; pointer-events: none; }

.evcard__link { display: grid; gap: 2px; }
.evcard__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--blue); margin-bottom: 12px; }
.evcard__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(105%); mix-blend-mode: screen; transition: filter .35s, mix-blend-mode .35s;
}
.evcard__media { isolation: isolate; }
.evcard__link:hover .evcard__img { filter: none; mix-blend-mode: normal; }
.evcard__date  { font-size: 17px; opacity: .75; }
.evcard__time  { font-size: 13px; opacity: .75; }
.evcard__title { font-size: 22px; font-weight: 700; line-height: 1.25; letter-spacing: -.02em; color: var(--blue); margin-top: 4px; }
.scheme-blue .evcard__title { color: #fff; }
.evcard__place, .evcard__addr { font-size: 16px; opacity: .85; }
.evcard__link:hover .evcard__title { text-decoration: underline; text-underline-offset: .15em; }

.empty { opacity: .8; }

/* ====================================================================
   GALERIE + VISIONNEUSE
   ==================================================================== */
.gallery { position: relative; margin: 1.5em 0; }
.gallery__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; scrollbar-width: thin;
}
.gallery__item { margin: 0; scroll-snap-align: center; }
.gallery__zoom { display: block; width: 100%; padding: 0; }
.gallery__img { width: 100%; height: auto; }
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; font-size: 32px; line-height: 1;
  background: rgba(0,0,0,.4); color: #fff;
}
.gallery__nav--prev { left: 6px; } .gallery__nav--next { right: 6px; }
.gallery__nav:hover { background: rgba(0,0,0,.7); }

.video video { width: 100%; height: auto; background: #000; }
.embed__link { text-decoration: underline; }

.lightbox {
  position: fixed; inset: 0; z-index: 999;
  display: grid; place-items: center; padding: 4vmin;
  background: rgba(0,0,0,.92);
}
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 96vw; max-height: 92vh; width: auto; object-fit: contain; }
.lightbox__close { position: absolute; top: 12px; right: 18px; font-size: 42px; line-height: 1; color: #fff; }

/* ====================================================================
   FRISE CHRONOLOGIQUE
   ==================================================================== */
.timeline { list-style: none; margin: 1.5em 0; padding: 0 0 0 26px; border-left: 1px solid currentColor; }
.timeline__item { position: relative; padding: 0 0 2em; }
.timeline__item::before {
  content: ''; position: absolute; left: -32px; top: .45em;
  width: 11px; height: 11px; border-radius: 50%; background: currentColor;
}
.timeline__date  { display: block; font-size: 14px; opacity: .8; }
.timeline__title { font-size: 22px; margin: .1em 0 .4em; }

.subnav ul { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0 0 1.5em; padding: 0; }
.subnav a { display: inline-block; padding: 5px 10px; border: 1px solid currentColor; text-transform: uppercase; font-size: 14px; }
.subnav a:hover { background: var(--fg); color: var(--bg); }

/* ====================================================================
   PAGES DE DÉTAIL
   ==================================================================== */
.peoplepage__photo { margin: 0 0 1.5em; box-shadow: 0 0 34px rgba(0,0,255,.55); }
.peoplepage__name  { font-size: clamp(34px, 4.2vw, 56px); margin-bottom: .25em; }
.peoplepage__role  { letter-spacing: .04em; margin-bottom: 1.4em; }
.peoplepage__links a { text-decoration: underline; margin-right: 1em; }
.peoplepage__projects { margin-top: 2.5em; }

.actupage__meta   { padding-block: clamp(24px, 3vw, 44px); }
.actupage__date   { opacity: .75; }
.taglist { display: flex; flex-wrap: wrap; gap: 6px 10px; list-style: none; margin: 0 0 1em; padding: 0; font-size: 14px; text-transform: uppercase; }
.taglist a { border-bottom: 1px solid currentColor; }
.backlink a { text-decoration: underline; text-underline-offset: .2em; }

.eventpage__date  { font-size: 20px; letter-spacing: .05em; margin-bottom: .2em; }
.eventpage__flag  { display: inline-block; margin-top: 1em; padding: 4px 12px; border: 1px solid currentColor; font-size: 14px; text-transform: uppercase; }
.eventmeta dl     { margin: 0; }
.eventmeta dt     { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; margin-top: 1.4em; }
.eventmeta dd     { margin: .2em 0 0; }

.resultlist { list-style: none; margin: 0 0 2em; padding: 0; }
.resultlist li { display: flex; flex-wrap: wrap; gap: .4em 1em; padding: .6em 0; border-bottom: 1px solid rgba(0,0,0,.15); }
.resultlist a  { text-decoration: underline; }
.resultlist span { opacity: .7; font-size: 15px; }

.searchform { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 1.5em; }
.searchform input { flex: 1 1 320px; max-width: 480px; padding: 12px 14px; border: 1px solid currentColor; background: transparent; color: inherit; font: inherit; }

/* ------------------------------------------------------------ formulaire */
.form { max-width: 620px; }
.form__row { display: grid; gap: 6px; margin-bottom: 1.1em; }
.form__row label { font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.form input, .form textarea, .form select {
  width: 100%; padding: 12px 14px; font: inherit; color: inherit;
  background: transparent; border: 1px solid currentColor; border-radius: 0;
}
.form textarea { resize: vertical; }
.form__hp { position: absolute; left: -9999px; }
.notice { padding: 14px 16px; border: 1px solid currentColor; margin-bottom: 1.4em; }
.notice--ok    { border-color: #0a0; }
.notice--error { border-color: #c00; color: #c00; list-style: none; }
.notice--error li { margin-left: 0; }

/* ====================================================================
   PIED DE PAGE
   ==================================================================== */
.footer { background: var(--white); color: var(--blue); padding-top: clamp(36px, 5vw, 64px); }
.footer__inner {
  width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; flex-wrap: wrap; gap: 32px clamp(24px, 5vw, 70px); align-items: flex-start;
}
.footer__col { flex: 1 1 180px; }
.footer__col--logo img { width: clamp(120px, 12vw, 170px); height: auto; }
.footer__col--contact a:hover { text-decoration: underline; }
.footer__col--nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; justify-items: stretch; max-width: 220px; }
.footer__col--nav .btn { justify-content: center; width: 100%; font-size: 16px; }
.footer__col--social { display: flex; gap: 14px; }
.footer__col--social a:hover { opacity: .7; }

.socket { margin-top: clamp(28px, 4vw, 56px); padding: 14px var(--gutter); background: var(--white); color: var(--blue); }
.socket p { max-width: var(--container); margin: 0 auto; font-size: 13px; }
.socket a { text-decoration: underline; }

/* ------------------------------------------------------------ impression */
@media print {
  .header, .footer__col--social, .carousel__nav, .gallery__nav, .filters, .scrolldown { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 12px; }
  .section__bg, .section__overlay { display: none; }
}
