/* === Marie-Do Ferré — site shared styles === */

:root {
  --vert-eau: #d3e3dc;
  --vert-eau-soft: #e6efeb;
  --vert-eau-deep: #7fa499;
  --vert-foret: #6d978b;
  --vert-foret-deep: #4a6e64;
  --ink: #2a3a36;
  --ink-soft: #5a6c67;
  --paper: #fbfaf6;
  --paper-warm: #f5f1e8;
  --line: rgba(47, 77, 68, 0.14);
  /* Or accentué — plus visible et chaleureux */
  --gold: #c9a14a;
  --gold-soft: #e6c478;
  --gold-deep: #8a6a23;
  --gold-line: linear-gradient(90deg, transparent, #c9a14a 18%, #e6c478 50%, #c9a14a 82%, transparent);
  --shadow-soft: 0 18px 40px -24px rgba(47, 77, 68, 0.35);
  --parallax: 90;
  --font-display: "Italiana", "Cormorant Garamond", serif;
  --font-serif: "Cormorant Garamond", "Garamond", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  /* Empêche tout débordement horizontal accidentel sur n'importe quelle page */
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

/* ───── Header (non-sticky : scrolle avec la page) ───── */
.site-header {
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
}
/* Ligne 2 : nav centrée, séparateur or */
.nav-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding: 12px 0 6px;
}
/* CTA dans le menu mobile uniquement (caché desktop) */
.header-cta--menu { display: none; }
/* Brand centré, beaucoup plus gros */
.brand {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 54px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--vert-foret);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  position: relative;
}
/* Logo dans le header : fond blanc effacé grâce au blend mode */
.brand__logo {
  width: 190px;
  height: 190px;
  object-fit: contain;
  mix-blend-mode: multiply;
  flex-shrink: 0;
  transition: transform .4s ease;
}
.brand:hover .brand__logo { transform: rotate(-4deg) scale(1.05); }
.brand__text {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}
.brand__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  transition: width .4s ease;
}
.brand:hover .brand__text::after { width: 100%; }
.brand small {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 36px;
  letter-spacing: 5.5px;
  font-style: italic;
  color: var(--gold-deep);
  margin-top: 14px;
  text-transform: none;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__item {
  position: relative;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  transition: color .3s ease;
}
.nav__item:hover, .nav__item.is-active { color: var(--vert-foret); }
.nav__item::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transition: right .35s cubic-bezier(.2,.8,.2,1);
}
.nav__item:hover::after, .nav__item.is-active::after { right: 0; }

/* dropdown : le wrapper se comporte comme un nav__item pour rester aligné */
.nav__has-sub {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav__has-sub > .nav__item { display: inline-flex; align-items: center; }
/* bridge the gap so cursor can reach the dropdown without losing hover */
.nav__has-sub::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav__sub {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 260px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 14px 0;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: var(--shadow-soft);
  z-index: 60;
}
.nav__has-sub:hover .nav__sub,
.nav__has-sub:focus-within .nav__sub { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav__sub a {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  transition: background .2s, padding .25s ease, color .2s;
}
.nav__sub a:hover { background: var(--vert-eau-soft); padding-left: 32px; color: var(--vert-foret); }

/* Bouton +/− du sous-menu mobile : caché par défaut sur desktop */
.nav__sub-toggle { display: none; }

/* CTA dans le header */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--vert-foret);
  border: 1.5px solid var(--gold);
  white-space: nowrap;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.header-cta:hover {
  background: var(--gold);
  color: var(--vert-foret);
  border-color: var(--gold-deep);
}
.header-cta .arrow {
  transition: transform .35s ease;
}
.header-cta:hover .arrow { transform: translateX(4px); }

/* ───── Page chrome ───── */
.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}
.page--wide { max-width: 1180px; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--vert-foret);
  margin: 0 0 24px;
  text-wrap: balance;
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 46px);
  letter-spacing: 1.5px;
  line-height: 1.15;
  color: var(--vert-foret);
  margin: 56px 0 20px;
  text-wrap: balance;
}

h3, .h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0;
  color: var(--vert-foret);
  margin: 36px 0 14px;
}

p { margin: 0 0 1em; }
p.lede {
  font-size: 24px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 64ch;
  margin-bottom: 40px;
}
p.lede--single {
  max-width: none;
  font-size: 20px;
}

.rule {
  width: 100px;
  height: 2px;
  background: var(--gold-line);
  margin: 0 0 36px;
  border: none;
}
.rule--center { margin-left: auto; margin-right: auto; }

ul.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
ul.bullets li {
  position: relative;
  padding: 6px 0 6px 32px;
}
ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 2px;
  background: var(--gold);
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--vert-foret);
  border: 1.5px solid var(--gold);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .4s ease, border-color .4s ease;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vert-foret);
  transform: translateY(101%);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.btn:hover { color: var(--gold-soft); border-color: var(--vert-foret); }
.btn:hover::before { transform: translateY(0); }
.btn .arrow {
  display: inline-block;
  transition: transform .4s ease;
}
.btn:hover .arrow { transform: translateX(6px); }

.btn--filled {
  background: var(--vert-foret);
  color: var(--paper);
}
.btn--filled::before { background: var(--paper); }
.btn--filled:hover { color: var(--vert-foret); }

/* ───── Photo placeholder ───── */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--vert-eau);
}
.photo__inner {
  position: absolute;
  inset: -10%;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.18) 0 2px,
      transparent 2px 22px),
    linear-gradient(180deg, var(--vert-eau-deep) 0%, var(--vert-eau) 60%, #c2d6cc 100%);
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.photo:hover .photo__inner { transform: scale(1.04); }
.photo__caption {
  display: none;
}
.photo--portrait { aspect-ratio: 3/4; }
.photo--landscape { aspect-ratio: 4/3; }
.photo--wide { aspect-ratio: 16/9; }

/* parallax frame */
.parallax {
  position: relative;
  overflow: hidden;
}
.parallax > .photo__inner {
  inset: -20%;
  transform: translate3d(0, var(--py, 0px), 0);
  transition: none;
}

/* ───── Tiles ───── */
.tile {
  display: block;
  padding: 36px 32px 32px;
  border-top: 1px solid var(--line);
  transition: background .4s ease, transform .4s ease, padding .4s ease;
  position: relative;
}
.tile::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 0;
  height: 2px;
  background: var(--gold-line);
  transition: width .6s cubic-bezier(.2,.8,.2,1);
}
.tile:hover::before { width: 100%; }
.tile + .tile { border-top: 1px solid var(--line); }
.tile:hover {
  background: var(--vert-eau-soft);
  padding-left: 44px;
}
.tile:hover .tile__title { color: var(--vert-foret); }
.tile__num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.tile__title {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1.2px;
  margin: 0 0 8px;
  color: var(--ink);
  transition: color .3s ease;
}
.tile__sub {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}
.tile__arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold);
  transition: transform .4s ease, color .4s ease;
}
.tile:hover .tile__arrow { transform: translate(8px, -50%); color: var(--gold-deep); }

/* ───── Bandeau citation (page accueil) ───── */
.title-bandeau {
  text-align: center;
  padding: 110px 40px 100px;
  max-width: 920px;
  margin: 0 auto;
  background: var(--paper);
  position: relative;
}

/* ───── Citation manifesto (réutilisable) ───── */
.manifesto__quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: var(--vert-foret);
  text-wrap: balance;
  margin: 0 auto 30px;
  max-width: 30ch;
}
.manifesto__author {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1.5px solid var(--gold);
}

/* ───── Hero banner photo (page accueil) ───── */
.hero-banner {
  position: relative;
  height: 56vh;
  min-height: 400px;
  overflow: hidden;
  background: #1f3a32;
}
.hero-banner__photo {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-banner__photo .photo__inner {
  position: absolute;
  inset: -14%;
  background:
    url('photos/accueil-hero.jpg') center / cover no-repeat,
    linear-gradient(170deg, #b8d2c7 0%, #93b6aa 45%, #6b8f86 100%);
  transform: translate3d(0, var(--py, 0px), 0);
}
.hero-banner__photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 38, 33, 0.10) 0%,
    rgba(20, 38, 33, 0.30) 55%,
    rgba(20, 38, 33, 0.75) 100%
  );
  z-index: 1;
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: var(--paper);
  gap: 26px;
  text-align: center;
  padding: 0 24px 70px;
}
.hero-banner__roles {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.hero-banner__roles .dot {
  color: var(--gold-soft);
  margin: 0 16px;
}
.hero-banner__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(36px, 4.4vw, 56px);
  color: var(--gold-soft);
  margin: 0;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}

/* ───── Footer ───── */
.site-footer {
  background: var(--vert-foret);
  color: var(--paper-warm);
  padding: 56px 40px 28px;
  margin-top: 80px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--gold-line);
}
.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 2px;
  margin: 0 0 18px;
  color: var(--gold-soft);
}
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
}
.site-footer a {
  color: var(--paper-warm);
  display: block;
  padding: 4px 0;
  font-size: 19px;
  font-style: italic;
  transition: color .3s, padding-left .3s ease;
}
.site-footer a:hover { color: var(--gold-soft); padding-left: 8px; }

/* Footer brand (logo + nom) */
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.footer-brand__logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--paper);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.35);
}

/* LinkedIn (icone + texte alignés) */
.footer-linkedin {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
.footer-linkedin svg {
  flex-shrink: 0;
  color: var(--gold-soft);
  transition: color .3s;
}
.footer-linkedin:hover svg { color: var(--paper); }

/* Plan du site — titre doré, contenu discret */
.site-footer__sitemap h4 {
  color: var(--gold-soft);
  font-size: 24px;
  letter-spacing: 2px;
}
.site-footer__sitemap a {
  font-style: normal;
  font-size: 16px;
  color: rgba(245, 241, 232, 0.75);
  letter-spacing: 0.4px;
  padding: 4px 0;
}
.site-footer__sitemap a:hover {
  color: var(--gold-soft);
  padding-left: 4px;
}
/* liens légaux : soulignés */
.site-footer__sitemap a[href="mentions-legales.html"],
.site-footer__sitemap a[href="cgu.html"] {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245, 241, 232, 0.35);
  text-decoration-thickness: 1px;
}
.site-footer__sitemap a[href="mentions-legales.html"]:hover,
.site-footer__sitemap a[href="cgu.html"]:hover {
  text-decoration-color: var(--gold-soft);
}
.site-footer__bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 161, 74, 0.3);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.75);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.site-footer__legal a {
  display: inline-block;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245, 241, 232, 0.35);
  text-decoration-thickness: 1px;
  transition: color .3s ease, text-decoration-color .3s ease;
}
.site-footer__legal a:hover {
  color: var(--gold-soft);
  text-decoration-color: var(--gold-soft);
  padding-left: 0;
}

/* ───── Reveal on scroll ───── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ───── Bouton hamburger (mobile) ───── */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 110;   /* au-dessus du menu déployé */
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--vert-foret);
  margin: 6px auto;
  transition: transform .35s ease, opacity .25s ease, background .25s ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ───── Responsive ───── */
@media (max-width: 1080px) {
  .nav { gap: 24px; }
  .nav__item { font-size: 13px; letter-spacing: 2px; }
}

@media (max-width: 980px) {
  /* IMPORTANT : sur mobile on désactive backdrop-filter du header.
     Sinon il crée un "containing block" qui enferme le menu mobile
     (position:fixed) dans la zone du header au lieu du viewport. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--paper);
  }
  /* Header compact : brand centré + hamburger absolute à droite */
  .site-header__inner {
    padding: 14px 22px;
    gap: 10px;
  }
  .brand { font-size: 28px; gap: 22px; letter-spacing: 4px; flex-direction: row; }
  .brand__logo { width: 100px; height: 100px; }
  .brand small { font-size: 20px; margin-top: 7px; letter-spacing: 3px; }

  /* Hamburger en absolute à droite (le brand reste centré) */
  .nav-toggle {
    display: block;
    position: absolute;
    top: 12px;
    right: 16px;
  }

  /* Menu plein écran (overlay) — compact pour tenir sans scroll */
  .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    grid-column: auto;
    grid-row: auto;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 72px 20px 24px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    margin-top: 0;
    border-top: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .35s ease, transform .35s ease;
    z-index: 100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-wrap.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .nav__item {
    font-size: 17px;
    letter-spacing: 2.6px;
    padding: 4px 0;
  }
  .nav__item::after { display: none; }
  .nav__item.is-active { color: var(--vert-foret); }
  /* Dropdown mobile : sous-menu replié par défaut, bouton chevron pour déplier */
  .nav__has-sub {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }
  .nav__has-sub::after { display: none; }
  /* Bouton + / − à droite du parent */
  .nav__sub-toggle {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold-deep);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, color .25s;
  }
  .nav__sub-toggle:hover,
  .nav__has-sub.is-sub-open .nav__sub-toggle {
    background: var(--gold);
    color: var(--paper);
  }
  .nav__sub {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: 0;
    width: 100%;
    text-align: center;
    /* Caché par défaut */
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0;
    margin: 0;
  }
  /* Affiché quand le parent est marqué is-sub-open */
  .nav__has-sub.is-sub-open .nav__sub {
    display: flex;
    padding: 8px 0 4px;
    margin: 4px 0 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .nav__sub a {
    display: block;
    font-size: 14px;
    padding: 5px 16px;
    font-style: italic;
    color: var(--ink-soft);
  }
  /* CTA visible dans l'overlay mobile */
  .header-cta--menu {
    display: inline-flex;
    margin-top: 12px;
    padding: 11px 24px;
    font-size: 12px;
  }
}

@media (max-width: 880px) {
  .page { padding: 50px 22px 80px; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__bottom { flex-direction: column; gap: 12px; }
  .title-bandeau { padding: 60px 22px 40px; }
  .hero-banner { height: 240px; }
}

@media (max-width: 480px) {
  .brand { font-size: 22px; letter-spacing: 3px; }
  .brand__logo { width: 80px; height: 80px; }
  .brand small { font-size: 17px; letter-spacing: 2.4px; }
  .nav__item { font-size: 16px; }
}
