/*
Theme Name: Illy Shoot
Theme URI: https://illyshoot.com
Author: Illy Shoot
Description: Thème bloc sur mesure — photographe de surf à Kuta Lombok. Maquette HTML convertie en blocs natifs, 100 % éditable dans Gutenberg.
Version: 1.0.2609272313
Requires at least: 6.6
Tested up to: 7.1
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: illyshoot
Tags: block-theme, full-site-editing, photography, one-column
*/
/* Illy Shoot — feuille unique, partagée par la maquette et le thème WordPress.
   Registre relevé sur la référence : 2 sans-serif (Anton / Archivo), aucun accent,
   blanc froid, bandes pleine largeur, angles droits, alignements mixtes,
   écart d'échelle extrême.

   Structure : balisage des blocs natifs (core/group, core/paragraph, core/heading,
   core/image…). Les classes des composants sont posées sur les blocs via className.
   Le CSS des blocs étant imprimé APRÈS cette feuille, toute règle qui contredit
   un style de bloc est écrite plus spécifique (figure.x img, etc.). */

:root {
  --blanc: #ffffff;
  --noir: #000000;
  --anthracite: #7c7e80;
  --gris-clair: #bbbdbf;
  --gris-texte: #8a8a8a;
  --filet: #efefef;

  --display: "Anton", "Arial Narrow", sans-serif;
  --texte: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --marge: 80px;

  --fleche-droite: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='1.4'%3E%3Cpath d='M2 8h12M9.5 3.5L14 8l-4.5 4.5'/%3E%3C/svg%3E");
  --fleche-gauche: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='1.4'%3E%3Cpath d='M14 8H2M6.5 3.5L2 8l4.5 4.5'/%3E%3C/svg%3E");
  --fleche-diagonale: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='1.4'%3E%3Cpath d='M4 12L12 4M5.5 4H12v6.5'/%3E%3C/svg%3E");
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--blanc);
  color: var(--noir);
  font: 400 13px/1.55 var(--texte);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }

/* Espacement automatique de Gutenberg : coupé à la source dans theme.json
   (blockGap 0px) ; filet de sécurité ici, À SPÉCIFICITÉ NULLE uniquement. */
:where(.wp-block-group) > :where(*) { margin-block: 0; }
figure.wp-block-image { margin: 0; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.enveloppe { padding-left: var(--marge); padding-right: var(--marge); }

.titre {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  hyphens: none;
  text-wrap: balance;
}

.etiquette {
  font: 500 10px/1.2 var(--texte);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Icônes : masques CSS (aucun SVG dans le contenu) */
.lien-fleche a::after,
.entete-cta a::after,
.service::after,
.fleches button::before {
  content: "";
  flex: none;
  display: block;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: var(--fleche-droite) center / contain no-repeat;
  mask: var(--fleche-droite) center / contain no-repeat;
}
.lien-fleche.diagonale a::after,
.entete-cta a::after {
  -webkit-mask-image: var(--fleche-diagonale);
  mask-image: var(--fleche-diagonale);
}
.fleches .fleche-g::before {
  -webkit-mask-image: var(--fleche-gauche);
  mask-image: var(--fleche-gauche);
}

/* ---------- En-tête ---------- */

.entete {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 34px;
  color: var(--blanc);
}
.admin-bar .entete { top: 32px; }

.logo {
  font: 800 12px/1 var(--texte);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* core/navigation rend un conteneur flex de 10 px de haut : même boîte dans la maquette */
.wp-block-navigation.nav, .wp-block-navigation.pied-nav { font-size: 10px; line-height: 1; gap: 0; }
.nav .wp-block-navigation__container { display: flex; gap: 34px; }
.nav .wp-block-navigation-item__content,
.entete-cta a {
  font: 500 10px/1 var(--texte);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav .wp-block-navigation-item__content:hover,
.entete-cta a:hover { opacity: .65; }
.nav .nav-contact, .menu-bouton { display: none; }

.nav [aria-current="page"],
.pied-nav [aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }

.entete-cta { justify-self: end; }
.entete-cta a { display: inline-flex; align-items: center; gap: 8px; }
.entete-cta a::after { width: 11px; height: 11px; }

/* Navigation WordPress (core/navigation) : bouton et panneau mobiles */
.wp-block-navigation.nav .wp-block-navigation__responsive-container-open,
.wp-block-navigation.nav .wp-block-navigation__responsive-container-close {
  font: 500 11px/1 var(--texte);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blanc);
}
.wp-block-navigation.nav .wp-block-navigation__responsive-container.is-menu-open {
  background-color: var(--noir) !important;
  color: var(--blanc) !important;
  padding: 24px 20px;
}
.wp-block-navigation.nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
  gap: 6px;
  align-items: flex-start;
}
.wp-block-navigation.nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  font: 400 52px/1.05 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}
.wp-block-navigation.nav .is-menu-open .nav-contact { display: flex; }

/* ---------- Héros ---------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 780px;
  max-height: 960px;
  background: var(--anthracite);
  color: var(--blanc);
  overflow: hidden;
}

.hero-diapos { position: absolute; inset: 0; }
figure.hero-diapo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
figure.hero-diapo.est-active,
.hero-diapos:not(.est-pret) > figure.hero-diapo:first-child { opacity: 1; }
figure.hero-diapo img { width: 100%; height: 100%; object-fit: cover; }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,22,24,.55) 0%, rgba(20,22,24,.3) 20%, rgba(0,0,0,0) 38%, rgba(0,0,0,0) 58%, rgba(20,22,24,.32) 100%),
    linear-gradient(0deg, rgba(20,22,24,.35) 0%, rgba(0,0,0,0) 30%);
  pointer-events: none;
}

.hero-liste {
  position: absolute;
  z-index: 2;
  left: var(--marge);
  top: 186px;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.13;
  text-transform: uppercase;
  color: var(--gris-clair);
}
.hero-liste a { transition: color .2s; }
.hero-liste a:hover { color: var(--blanc); }

.hero-liste .vedette {
  position: relative;
  isolation: isolate;
  width: 158px;
  height: 198px;
  margin: 24px 0 22px 4px;
  display: flex;
  align-items: center;
  color: var(--blanc);
}
.vedette figure.wp-block-image { position: absolute; inset: 0; z-index: -1; }
.vedette figure.wp-block-image img { width: 100%; height: 100%; object-fit: cover; }
.vedette p { padding-left: 30px; }
.vedette p a::after { content: ""; position: absolute; inset: 0; }

.hero-titre {
  position: absolute;
  z-index: 2;
  right: var(--marge);
  top: 180px;
  font-size: min(97px, 6.75vw);
  line-height: 1.02;
  text-align: right;
  text-wrap: nowrap;
}

.hero-legende {
  position: absolute;
  z-index: 2;
  right: var(--marge);
  bottom: 40px;
  width: 330px;
  text-align: right;
  font: 500 10px/1.45 var(--texte);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Commandes du diaporama : créées par app.js (ce ne sont pas du contenu) */
.hero-commandes {
  position: absolute;
  z-index: 2;
  left: var(--marge);
  bottom: 38px;
}
.hero-tirets { display: flex; gap: 6px; margin-bottom: 20px; }
.hero-tirets button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.38);
  cursor: pointer;
}
.hero-tirets button.est-actif { background: var(--blanc); }

.fleches { display: flex; gap: 22px; }
.fleches button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  display: flex;
}
.fleches button:hover { opacity: .6; }

/* ---------- À propos / introduction centrée ---------- */

.apropos { padding-top: 128px; text-align: center; }
.apropos .titre {
  max-width: 960px;
  margin: 18px auto 0;
  font-size: 44px;
  line-height: 1.2;
}
.apropos .chapeau {
  max-width: 470px;
  margin: 26px auto 0;
  font-size: 13px;
}

.rangee {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-top: 70px;
}
.rangee figure.wp-block-image { overflow: hidden; }
.rangee figure.wp-block-image img { width: 100%; height: 100%; object-fit: cover; }
.rangee > figure:nth-child(1) { flex: 243; height: 234px; margin-top: 72px; }
.rangee > figure:nth-child(2) { flex: 220; height: 306px; }
.rangee > figure:nth-child(3) { flex: 296; height: 392px; }
.rangee > figure:nth-child(4) { flex: 214; height: 306px; }
.rangee > figure:nth-child(5) { flex: 237; height: 234px; margin-top: 72px; }

/* ---------- Pourquoi (grille asymétrique : étiquette · texte · liste) ---------- */

.pourquoi {
  display: grid;
  grid-template-columns: 20.5% 24.5% 1fr;
  padding-top: 224px;
}
.pourquoi-texte { font-size: 13px; line-height: 1.6; }
.pourquoi-liste { padding-left: 13.5%; }
.pourquoi-item + .pourquoi-item { margin-top: 64px; }
.pourquoi .titre { font-size: min(56px, 3.89vw); }
.pourquoi .titre a:hover { opacity: .6; }
.pourquoi-item p {
  width: 170px;
  margin-top: 12px;
  color: var(--gris-texte);
  font-size: 10px;
  line-height: 1.45;
}

/* ---------- Spots (carrousel qui déborde à droite) ---------- */

.spots { padding-top: 200px; overflow: hidden; }

.piste {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-left: var(--marge);
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.carte { flex: none; position: relative; }
.carte-num {
  text-align: right;
  font: 700 10px/1 var(--texte);
  margin-bottom: 12px;
}
.carte figure.wp-block-image { overflow: hidden; }
.carte figure.wp-block-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.carte:hover figure.wp-block-image img { transform: scale(1.04); }
.carte .titre { margin-top: 12px; font-size: 15px; }
.carte .titre a::after { content: ""; position: absolute; inset: 0; }
.carte-lieu { margin-top: 5px; font-size: 9px; color: var(--gris-texte); letter-spacing: .02em; }

.carte:nth-child(1) { width: 480px; } .carte:nth-child(1) figure { height: 553px; }
.carte:nth-child(2) { width: 349px; } .carte:nth-child(2) figure { height: 372px; }
.carte:nth-child(3) { width: 411px; } .carte:nth-child(3) figure { height: 431px; }
.carte:nth-child(4) { width: 360px; } .carte:nth-child(4) figure { height: 586px; }
.carte:nth-child(5) { width: 420px; } .carte:nth-child(5) figure { height: 470px; }

.spots-pied, .galerie-pied {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 108px;
}
.spots-pied .titre, .galerie-pied .titre { font-size: min(218px, 15.14vw); line-height: .8; }
.spots-pied .fleches { margin-bottom: 14px; }

/* ---------- Services (lignes-liens) ---------- */

.services { padding-top: 230px; }
.services-liste { margin-top: 44px; }
.service {
  position: relative;
  display: grid;
  grid-template-columns: 207px 1fr auto;
  align-items: center;
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--filet);
}
.service:last-child { border-bottom: 0; }
.service::after { transition: transform .25s; }
.service:hover::after { transform: translateX(6px); }
.service.diagonale::after { -webkit-mask-image: var(--fleche-diagonale); mask-image: var(--fleche-diagonale); }
.service .num { font-size: 10px; align-self: start; padding-top: 16px; }
.service .titre { font-size: 40px; }
.service .titre a::after { content: ""; position: absolute; inset: 0; }
.service-texte p { margin-top: 8px; font-size: 10px; color: var(--gris-texte); }

/* ---------- Bandeau photo : appel à l'action et tête des pages internes ---------- */

.bandeau {
  position: relative;
  height: 733px;
  background: var(--noir);
  color: var(--blanc);
  overflow: hidden;
}
figure.bandeau-fond { position: absolute; inset: 0; }
figure.bandeau-fond img { width: 100%; height: 100%; object-fit: cover; }
.bandeau::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 45%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.bandeau-texte {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 70px;
  display: flex;
  align-items: flex-end;
  gap: 34px;
}
.bandeau-texte .etiquette { margin-bottom: 22px; }
.bandeau-texte .titre { font-size: min(196px, 13.62vw); line-height: .78; }
.bandeau-legende {
  margin-left: auto;
  width: 300px;
  text-align: right;
  font: 500 10px/1.45 var(--texte);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-bottom: 2px;
}

.appel { margin-top: 250px; }
.appel figure.bandeau-fond img { object-position: 50% 58%; }

.tete-page { height: 780px; max-height: 100vh; min-height: 620px; }
.tete-page .titre { font-size: min(180px, 12.5vw); line-height: .8; }

.lien-fleche { display: flex; margin-left: auto; padding-bottom: 4px; }
.lien-fleche a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font: 500 10px/1 var(--texte);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lien-fleche a:hover { opacity: .7; }

/* ---------- Spots détaillés (Surf) et rubriques (Football & Event) ---------- */

.spot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 20px;
  align-items: end;
  padding-top: 200px;
  scroll-margin-top: 40px;
}
.spot.inverse .spot-photo { order: -1; }
.spot.inverse .spot-texte { padding-left: 13.5%; }
figure.spot-photo { overflow: hidden; height: 640px; }
figure.spot-photo img { width: 100%; height: 100%; object-fit: cover; }
.spot-texte .titre { margin-top: 26px; font-size: min(150px, 10.42vw); line-height: .84; }
.spot-desc { max-width: 380px; margin-top: 30px; font-size: 13px; line-height: 1.6; }
.spot-texte .lien-fleche { margin: 34px 0 0; }

.spot.hauteur-2 figure.spot-photo { height: 560px; }
.spot.hauteur-3 figure.spot-photo { height: 700px; }
.spot.hauteur-4 figure.spot-photo { height: 600px; }

/* Trio : trois photos alignées en haut, hauteurs décalées, comme la collection */
.trio {
  display: grid;
  grid-template-columns: 480fr 349fr 411fr;
  gap: 20px;
  align-items: start;
  padding-top: 20px;
}
.trio figure.wp-block-image { overflow: hidden; }
.trio figure.wp-block-image img { width: 100%; height: 100%; object-fit: cover; }
.trio > figure:nth-child(1) { height: 553px; }
.trio > figure:nth-child(2) { height: 372px; }
.trio > figure:nth-child(3) { height: 431px; }

/* ---------- Galerie ---------- */

.galerie {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  align-items: start;
  padding-top: 200px;
}
.galerie figure.wp-block-image { overflow: hidden; }
.galerie figure.wp-block-image img { width: 100%; height: 100%; object-fit: cover; }
.galerie > figure:nth-child(3n+1) { height: 560px; }
.galerie > figure:nth-child(3n+2) { height: 380px; margin-top: 120px; }
.galerie > figure:nth-child(3n) { height: 460px; margin-top: 40px; }

/* ---------- Bloc centré de fin (Contact) ---------- */

.lieu { padding-top: 230px; padding-bottom: 200px; text-align: center; }
.lieu .titre { max-width: 960px; margin: 18px auto 0; font-size: 44px; line-height: 1.2; }
.lieu .chapeau { max-width: 470px; margin: 26px auto 0; }

/* ---------- Gabarits sans photo en tête (articles, 404) ---------- */

.tete-simple { height: 160px; background: var(--noir); }
.texte-simple { padding-top: 120px; padding-bottom: 200px; }
.texte-simple .titre { margin: 18px 0 30px; font-size: 97px; }
.texte-simple .wp-block-post-title.titre { margin-top: 40px; font-size: 56px; }
.texte-simple p { max-width: 560px; }
.texte-simple p a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Pied de page ---------- */

.pied {
  background: var(--noir);
  color: var(--blanc);
  display: grid;
  grid-template-columns: 395px 345px 1fr;
  grid-template-rows: auto 1fr auto;
  min-height: 640px;
  padding-top: 52px;
  padding-bottom: 66px;
}
.pied-logo {
  grid-column: 1;
  grid-row: 1;
  font: 900 70px/.93 var(--texte);
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.pied-nav { grid-column: 3; grid-row: 1; padding-top: 10px; }
.pied-nav .wp-block-navigation__container { display: flex; gap: 30px; }
.pied-nav .wp-block-navigation-item__content { font: 600 10px/1 var(--texte); }
.pied-nav .wp-block-navigation-item__content:hover, .pied-infos a:hover { opacity: .65; }
.pied-infos {
  grid-column: 3;
  grid-row: 3;
  font-size: 11px;
  line-height: 1.6;
}
.pied-infos h3 { font: 600 11px/1 var(--texte); margin-bottom: 10px; }
.pied-infos > .wp-block-group + .wp-block-group { margin-top: 44px; }
.pied-lieu { color: var(--gris-clair); }

ul.wp-block-social-links.reseaux {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, 30px);
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: 16px;
}
ul.wp-block-social-links.reseaux > li.wp-social-link.wp-block-social-link {
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: none;
}
ul.wp-block-social-links.reseaux > li.wp-social-link.wp-block-social-link:hover { transform: none; opacity: .75; }
ul.wp-block-social-links.reseaux .wp-social-link a.wp-block-social-link-anchor { padding: 0; display: grid; place-items: center; }
ul.wp-block-social-links.reseaux .wp-social-link svg { width: 14px; height: 14px; }

.copyright {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  font-size: 11px;
  line-height: 1.5;
  color: var(--gris-clair);
}

/* ---------- Mobile ---------- */

@media (max-width: 782px) {
  .admin-bar .entete { top: 46px; }
}

@media (max-width: 900px) {
  :root { --marge: 20px; }

  .entete { grid-template-columns: 1fr auto; padding-top: 24px; }
  .entete-cta { display: none; }

  /* Menu de la maquette locale (le site utilise le panneau de core/navigation) */
  .menu-bouton {
    display: block;
    position: relative;
    z-index: 2;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: 500 11px/1 var(--texte);
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .maquette .nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--marge);
    background: var(--noir);
  }
  .maquette .nav .wp-block-navigation__container { flex-direction: column; gap: 6px; }
  .maquette .nav .wp-block-navigation-item__content { display: block; font: 400 52px/1.05 var(--display); letter-spacing: 0; }
  .maquette .nav .nav-contact { display: block; }
  .menu-ouvert .nav { display: flex; }
  .menu-ouvert .logo { position: relative; z-index: 2; }

  .hero { min-height: 700px; max-height: 860px; }
  .hero-liste { top: auto; bottom: 92px; font-size: 22px; }
  .hero-liste .vedette { width: 88px; height: 110px; margin: 10px 0; }
  .vedette p { padding-left: 14px; }
  .hero-titre { top: 92px; left: var(--marge); font-size: 50px; }
  .hero-legende { display: none; }

  .apropos { padding-top: 88px; }
  .apropos .titre { font-size: 30px; }
  .rangee { gap: 8px; margin-top: 48px; }
  .rangee > figure:nth-child(1), .rangee > figure:nth-child(5) { display: none; }
  .rangee > figure:nth-child(2), .rangee > figure:nth-child(4) { height: 180px; }
  .rangee > figure:nth-child(3) { height: 240px; }

  .pourquoi { grid-template-columns: 1fr; padding-top: 110px; gap: 20px; }
  .pourquoi-liste { padding-left: 0; margin-top: 30px; }
  .pourquoi-item + .pourquoi-item { margin-top: 40px; }
  .pourquoi .titre { font-size: 40px; }

  .spots { padding-top: 110px; }
  .piste { overflow-x: auto; scroll-snap-type: x mandatory; padding-right: var(--marge); transform: none !important; }
  .carte { scroll-snap-align: start; }
  .carte:nth-child(n) { width: 72vw; }
  .carte:nth-child(n) figure { height: 88vw; }
  .spots-pied { margin-top: 48px; }
  .spots-pied .titre { font-size: 22vw; }
  .spots-pied .fleches { display: none; }

  .services { padding-top: 110px; }
  .service { grid-template-columns: 48px 1fr auto; }
  .service .titre { font-size: 26px; }
  .service .num { padding-top: 8px; }

  .bandeau { height: 560px; }
  .appel { margin-top: 110px; }
  .bandeau-texte { flex-direction: column; align-items: flex-start; gap: 22px; bottom: 44px; }
  .bandeau-texte .titre { font-size: 15.6vw; }
  .bandeau-legende { margin-left: 0; width: auto; max-width: 260px; text-align: left; }
  .lien-fleche { margin-left: 0; }
  .tete-page { height: 640px; }
  .tete-page .titre { font-size: 19vw; }

  .spot { grid-template-columns: 1fr; padding-top: 110px; row-gap: 26px; }
  .spot figure.spot-photo, .spot.hauteur-2 figure.spot-photo, .spot.hauteur-3 figure.spot-photo, .spot.hauteur-4 figure.spot-photo { order: -1; height: 115vw; }
  .spot.inverse .spot-texte { padding-left: 0; }
  .spot-texte .titre { font-size: 22vw; margin-top: 18px; }

  .trio { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trio > figure:nth-child(1) { height: 70vw; }
  .trio > figure:nth-child(2) { height: 50vw; }
  .trio > figure:nth-child(3) { grid-column: 1 / -1; height: 60vw; }

  .galerie { grid-template-columns: 1fr 1fr; gap: 8px; padding-top: 110px; }
  .galerie > figure:nth-child(n) { height: 60vw; margin-top: 0; }
  .galerie > figure:nth-child(3n+2) { height: 44vw; }
  .galerie-pied { flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 48px; }
  .galerie-pied .titre { font-size: 22vw; }

  .lieu { padding-top: 110px; padding-bottom: 110px; }
  .lieu .titre { font-size: 30px; }

  .pied { grid-template-columns: 1fr; grid-template-rows: none; gap: 44px; min-height: 0; }
  .pied-logo, .pied-nav, .pied-infos, ul.wp-block-social-links.reseaux, .copyright { grid-column: 1; grid-row: auto; }
  .pied-nav .wp-block-navigation__container { flex-wrap: wrap; gap: 18px 26px; }
}
