/* ─────────────────────────────────────────
   Jean-Paul Le Loc'h — Photographe
   Style principal
   ───────────────────────────────────────── */

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

:root {
  --black:   #0a0a0a;
  --charcoal:#1a1a1a;
  --mid:     #2e2e2e;
  --silver:  #8a8a8a;
  --mist:    #c8c8c0;
  --cream:   #f2efe8;
  --white:   #fafaf8;
  --gold:    #b8965a;
  --gold-lt: #d4b07a;
  --radius:  0px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: .02em;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--mid); }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--gold); z-index: 300; width: 0;
  transition: width .1s;
}

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,.95), transparent);
  transition: background .4s, padding .3s;
}
header.scrolled {
  background: rgba(10,10,10,.97);
  border-bottom: 1px solid rgba(184,150,90,.15);
  padding: 12px 48px;
}
.logo-img img { height: 46px; transition: opacity .3s; }
.logo-img img:hover { opacity: .75; }

nav { display: flex; gap: 32px; align-items: center; }
nav a {
  color: var(--mist); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; transition: color .3s;
}
nav a:hover, nav a.active { color: var(--gold-lt); }
.nav-cta {
  border: 1px solid var(--gold) !important; padding: 7px 18px;
  color: var(--gold) !important; transition: background .3s, color .3s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-cta.active { background: var(--gold); color: var(--black) !important; }

.lang-switcher { display: flex; gap: 8px; align-items: center; }
.lang-btn { font-size: 10px; letter-spacing: .1em; color: var(--silver); cursor: pointer; }
.lang-btn.active { color: var(--gold); }
.lang-sep { color: var(--mid); font-size: 10px; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--mist); transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── SECTIONS ── */
section, .section-wrap { padding: 100px 48px; }

.section-eyebrow {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 300;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-lt); }
.section-body { color: var(--silver); line-height: 1.9; max-width: 560px; font-size: 14px; }

/* ── HERO (index) ── */
.hero {
  position: relative; height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1.8s ease-in-out, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.88) 0%, rgba(10,10,10,.25) 55%, rgba(10,10,10,.1) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 48px 80px; max-width: 680px; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 80px); font-weight: 300;
  line-height: 1.05; color: var(--white); margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub { font-size: 13px; color: var(--mist); line-height: 1.8; margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 20px; align-items: center; }
.hero-dots {
  position: absolute; bottom: 80px; right: 48px;
  display: flex; flex-direction: column; gap: 8px; z-index: 3;
}
.dot { width: 2px; height: 20px; background: rgba(255,255,255,.2); cursor: pointer; transition: background .3s, height .3s; }
.dot.active { background: var(--gold); height: 32px; }
.hero-label {
  position: absolute; bottom: 88px; right: 80px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--silver); writing-mode: vertical-rl; z-index: 3; transition: opacity .5s;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 13px 32px; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500;
  display: inline-block; transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-ghost {
  color: var(--mist); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; transition: color .3s;
}
.btn-ghost::after { content: '→'; font-size: 14px; transition: transform .3s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--black);
  padding: 14px 40px; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500; transition: background .3s;
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline {
  display: inline-block; border: 1px solid var(--gold);
  color: var(--gold); padding: 12px 28px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ── GALLERIES GRID ── */
.galleries { background: var(--charcoal); }
.galleries-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; }
.galleries-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background: var(--mid); }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-item:nth-child(3) { grid-column: span 3; aspect-ratio: 4/3; }
.gallery-item:nth-child(4) { grid-column: span 3; aspect-ratio: 4/3; }
.gallery-item:nth-child(5) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-item:nth-child(6) { grid-column: span 5; aspect-ratio: 5/4; }
.gallery-item:nth-child(7) { grid-column: span 4; aspect-ratio: 5/4; }
.gallery-item:nth-child(8) { grid-column: span 3; aspect-ratio: 5/4; }
.gallery-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.gallery-item:hover .gallery-bg { transform: scale(1.08); }
.gallery-cover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.82) 0%, rgba(10,10,10,.05) 55%);
  opacity: .65; transition: opacity .4s;
}
.gallery-item:hover .gallery-cover { opacity: .9; }
.gallery-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 16px; transform: translateY(6px); transition: transform .4s;
}
.gallery-item:hover .gallery-info { transform: translateY(0); }
.gallery-cat { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.gallery-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 300; color: var(--white); }
.gallery-count { font-size: 10px; color: var(--silver); margin-top: 3px; opacity: 0; transition: opacity .4s .1s; }
.gallery-item:hover .gallery-count { opacity: 1; }
.gallery-arrow {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px; opacity: 0;
  transition: opacity .3s, border-color .3s;
}
.gallery-item:hover .gallery-arrow { opacity: 1; border-color: var(--gold); }

/* ── SPECTACLES STRIP ── */
.spectacles-band { background: var(--black); }
.spectacles-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; height: 220px; }
.spec-item { position: relative; overflow: hidden; }
.spec-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; transition: transform .6s ease; }
.spec-item:hover .spec-bg { transform: scale(1.08); }
.spec-overlay { position: absolute; inset: 0; background: rgba(10,10,10,.2); transition: background .4s; }
.spec-item:hover .spec-overlay { background: rgba(10,10,10,0); }

/* ── VOYAGES SECTION ── */
.voyages-hero {
  position: relative; height: 60vh; min-height: 400px;
  display: flex; align-items: flex-end; overflow: hidden;
  padding-top: 90px; /* réserve l'espace du header fixe */
}
.voyages-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.voyages-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.3) 60%, rgba(10,10,10,.1) 100%);
}
.voyages-hero-content { position: relative; z-index: 2; padding: 0 48px 60px; max-width: 700px; }
.voyages-hero-content .section-title { font-size: clamp(36px,5vw,64px); margin-bottom: 16px; }
.voyages-hero-content p { color: var(--mist); font-size: 14px; line-height: 1.8; max-width: 560px; }
.voyages-content { background: var(--black); padding: 80px 48px; }
.voyages-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 64px; }
.voyages-text p { color: var(--silver); line-height: 1.9; font-size: 14px; margin-bottom: 20px; }
.voyages-quote {
  margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(184,150,90,.2);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 20px; color: var(--mist); line-height: 1.5;
}
.voyages-quote span { display: block; font-size: 11px; font-style: normal; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }
.voyages-pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { background: rgba(255,255,255,.03); border: 1px solid rgba(184,150,90,.12); padding: 24px 28px; border-left: 3px solid var(--gold); }
.pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--white); margin-bottom: 8px; }
.pillar-body { font-size: 13px; color: var(--silver); line-height: 1.8; }
.voyages-strip { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3px; height: 280px; }
.strip-item { position: relative; overflow: hidden; background: var(--mid); }
.strip-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s ease; }
.strip-item:hover .strip-bg { transform: scale(1.06); }
.strip-overlay { position: absolute; inset: 0; background: rgba(10,10,10,.15); transition: background .4s; }
.strip-item:hover .strip-overlay { background: rgba(10,10,10,0); }
.voyages-cta { margin-top: 48px; text-align: center; }

/* ── ABOUT ── */
.about { background: var(--charcoal); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.about-visual { position: relative; min-height: 580px; overflow: hidden; }
.about-visual-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.about-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 55%, var(--charcoal) 100%); }
.about-quote {
  position: absolute; bottom: 48px; left: 40px; right: 40px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 21px; font-weight: 300; color: var(--white); line-height: 1.4;
}
.about-quote::before { content: '"   '; display: block; font-size: 56px; color: var(--gold); line-height: .6; margin-bottom: 16px; }
.about-text { padding: 80px 64px 80px 56px; display: flex; flex-direction: column; justify-content: center; }
.about-bio { color: var(--silver); line-height: 1.9; margin-bottom: 18px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(184,150,90,.2); }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--silver); margin-top: 4px; }

/* ── CONTACT ── */
.contact-band {
  background: var(--black); padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; border-top: 1px solid rgba(184,150,90,.15);
}
.contact-links { display: flex; flex-direction: column; }
.contact-link {
  display: flex; align-items: center; gap: 16px;
  color: var(--silver); font-size: 13px;
  transition: color .3s; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-link:hover { color: var(--gold-lt); }
.contact-link-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,150,90,.3);
  display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}
.contact-right { background: var(--charcoal); padding: 48px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--silver); margin-bottom: 8px; }
.form-input {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 10px 0; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color .3s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--mid); }
textarea.form-input { resize: none; height: 80px; }
.form-submit {
  background: var(--gold); color: var(--black); border: none;
  padding: 14px 36px; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500; cursor: pointer;
  transition: background .3s; font-family: 'Inter', sans-serif; margin-top: 8px;
}
.form-submit:hover { background: var(--gold-lt); }
.form-success { color: var(--gold); font-size: 13px; margin-top: 16px; display: none; }
.form-error { color: #e07070; font-size: 12px; margin-top: 4px; }

/* ── GALERIE PAGE ── */
.page-hero {
  position: relative; height: 50vh; min-height: 340px;
  display: flex; align-items: flex-end; overflow: hidden; margin-top: 0;
  padding-top: 90px; /* réserve l'espace du header fixe */
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.9) 0%, rgba(10,10,10,.2) 60%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 48px 48px; }
.page-hero-content .section-eyebrow { margin-bottom: 12px; }
.page-hero-content .section-title { font-size: clamp(36px, 5vw, 64px); margin-bottom: 0; }

.breadcrumb { padding: 20px 48px; background: var(--charcoal); display: flex; gap: 12px; align-items: center; }
.breadcrumb a { font-size: 11px; letter-spacing: .1em; color: var(--silver); text-transform: uppercase; transition: color .3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--mid); font-size: 10px; }
.breadcrumb .current { font-size: 11px; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }

/* ── GALERIE : grille photo + barre commande ── */
.gallery-page { background: var(--black); padding: 60px 48px; }
.gallery-desc { color: var(--silver); line-height: 1.9; max-width: 640px; margin-bottom: 32px; font-size: 14px; }

/* Note d'information WhiteWall */

/* Photo grid galerie */
.gallery-page { background: var(--black); padding: 60px 48px; }
.gallery-desc { color: var(--silver); line-height: 1.9; max-width: 640px; margin-bottom: 48px; font-size: 14px; }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 3px; }
.photo-grid-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/2; background: var(--mid);
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.photo-grid-item:hover img { transform: scale(1.05); }
.photo-grid-overlay {
  position: absolute; inset: 0; background: rgba(10,10,10,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s; color: var(--white);
  pointer-events: none; /* ne bloque pas le tap sur mobile */
}
.photo-grid-item:hover .photo-grid-overlay { background: rgba(10,10,10,.3); }
.photo-grid-overlay svg { opacity: 0; transition: opacity .3s; }
.photo-grid-item:hover .photo-grid-overlay svg { opacity: 1; }

/* ── Écrans tactiles : icône zoom toujours visible (pas de hover) ── */
@media (hover: none) {
  .photo-grid-overlay {
    background: linear-gradient(to top, rgba(10,10,10,.35), rgba(10,10,10,0) 45%);
  }
  .photo-grid-overlay svg {
    opacity: .85;
    position: absolute;
    bottom: 12px; right: 12px;
    width: 22px; height: 22px;
  }
}


/* Galeries overview */
.galeries-overview { background: var(--black); padding: 80px 48px; }
.galeries-overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
.gallery-overview-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 16/9; background: var(--mid); display: block;
}
.gallery-overview-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s ease; }
.gallery-overview-item:hover .gallery-overview-bg { transform: scale(1.06); }
.gallery-overview-cover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.85) 0%, rgba(10,10,10,.1) 60%);
  opacity: .8; transition: opacity .4s;
}
.gallery-overview-item:hover .gallery-overview-cover { opacity: .95; }
.gallery-overview-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 24px; }
.gallery-overview-cat { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.gallery-overview-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.gallery-overview-desc { font-size: 12px; color: var(--mist); line-height: 1.7; max-width: 420px; opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s; }
.gallery-overview-item:hover .gallery-overview-desc { opacity: 1; transform: translateY(0); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,10,10,.97);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: fixed; top: 24px; right: 32px;
  color: var(--mist); font-size: 28px; cursor: pointer;
  background: rgba(10,10,10,.5); border: none; transition: color .3s; line-height: 1;
  padding: 8px; min-width: 44px; min-height: 44px; /* zone de tap suffisante */
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(10,10,10,.5); border: 1px solid rgba(255,255,255,.15);
  color: var(--mist); font-size: 20px; width: 56px; height: 56px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, color .3s;
  -webkit-tap-highlight-color: transparent; /* supprime le flash gris sur Android */
  touch-action: manipulation;
}
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: .2em; color: var(--silver); }

/* ── PAGE HERO STANDARD ── */
.inner-hero {
  padding-top: 120px; padding-bottom: 60px;
  padding-left: 48px; padding-right: 48px;
  border-bottom: 1px solid rgba(184,150,90,.12);
}

/* ── VOYAGES PAGE ── */
.voyages-full-content { background: var(--black); padding: 80px 48px; }
.voyages-full-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.voyages-full-text p { color: var(--silver); line-height: 1.9; margin-bottom: 20px; }

/* ── A PROPOS PAGE ── */
.about-page { background: var(--black); }
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.about-page-image { position: relative; overflow: hidden; min-height: 500px; }
.about-page-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-page-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--black) 100%); }
.about-page-text { padding: 80px 64px 80px 56px; display: flex; flex-direction: column; justify-content: center; background: var(--black); }
.about-page-text p { color: var(--silver); line-height: 1.9; margin-bottom: 20px; font-size: 14px; }
.about-statement { background: var(--charcoal); padding: 80px 48px; }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.statement-text p { color: var(--silver); line-height: 1.9; margin-bottom: 20px; }
.statement-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 26px; color: var(--mist); line-height: 1.5; margin-bottom: 40px;
}
.statement-quote::before { content: '"'; display: block; font-size: 60px; color: var(--gold); line-height: .6; margin-bottom: 20px; }

/* ── MENTIONS LÉGALES ── */
.legal-content { background: var(--black); padding: 80px 48px; max-width: 860px; }
.legal-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--white); margin-bottom: 16px; margin-top: 48px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--silver); line-height: 1.9; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal); padding: 36px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-logo img { height: 34px; }
.footer-copy { font-size: 10px; color: var(--mid); margin-top: 4px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 11px; letter-spacing: .1em; color: var(--silver); transition: color .3s; }
.footer-links a:hover { color: var(--mist); }
.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); transition: border-color .3s, color .3s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

/* ── ALERT / NOTICE ── */
.alert { padding: 16px 20px; margin-bottom: 24px; font-size: 13px; line-height: 1.6; }
.alert-success { background: rgba(184,150,90,.1); border-left: 3px solid var(--gold); color: var(--gold-lt); }
.alert-error { background: rgba(200,80,80,.1); border-left: 3px solid #c85050; color: #e09090; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .galleries-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(n) { grid-column: span 3; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3) { aspect-ratio: 4/3; }
  .voyages-inner, .voyages-full-inner, .statement-grid, .galeries-overview-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 300px; }
  .about-visual-overlay { background: linear-gradient(to bottom, transparent 50%, var(--charcoal) 100%); }
  .about-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  header { padding: 14px 20px; }
  header.scrolled { padding: 10px 20px; }
  nav { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: rgba(10,10,10,.98); padding: 80px 32px 32px; gap: 24px; z-index: 99; transform: translateX(100%); transition: transform .3s; }
  nav.open { display: flex; transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 101; }
  section, .section-wrap { padding: 60px 20px; }
  .hero-content { padding: 0 20px 60px; }
  .hero-dots, .hero-label { display: none; }
  .spectacles-strip { grid-template-columns: repeat(3, 1fr); height: auto; }
  .spec-item { aspect-ratio: 1; }
  .voyages-hero { padding-top: 96px; align-items: flex-start; min-height: 300px; height: auto; }
  .voyages-hero-content { padding: 24px 20px 40px; }
  .voyages-content { padding: 60px 20px; }
  .page-hero { padding-top: 96px; align-items: flex-start; height: auto; min-height: 260px; }
  .page-hero-content { padding: 24px 20px 32px; }
  .voyages-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .strip-item { aspect-ratio: 4/3; }
  .contact-band { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  footer { flex-direction: column; gap: 16px; padding: 28px 20px; text-align: center; }
  .galleries-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .gallery-item:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; grid-row: span 1; }
  .inner-hero { padding: 100px 20px 40px; }
  .gallery-page, .galeries-overview, .about-page-text, .about-statement, .legal-content { padding: 48px 20px; }
  .about-page-text { padding: 48px 20px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .galeries-overview-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: 16px 20px; }
  .voyages-full-content { padding: 48px 20px; }
}

/* ── FOOTER CONTACT (remplace réseaux sociaux) ── */
.footer-contact { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-contact-link { font-size: 12px; letter-spacing: .04em; color: var(--silver); transition: color .3s; }
.footer-contact-link:hover { color: var(--gold); }
@media (max-width: 768px) {
  .footer-contact { text-align: center; }
}

/* ═══════════════════════════════════════════
   BANNIÈRE DE CONSENTEMENT COOKIES
   ═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--charcoal); border-top: 1px solid rgba(184,150,90,.3);
  padding: 24px 48px; transform: translateY(100%);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  box-shadow: 0 -8px 40px rgba(0,0,0,.5);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cookie-banner-title {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400;
  color: var(--white); margin-bottom: 6px;
}
.cookie-banner-text p { font-size: 13px; color: var(--silver); line-height: 1.7; max-width: 700px; }
.cookie-banner-text a { color: var(--gold); text-decoration: underline; }
.cookie-banner-text a:hover { color: var(--gold-lt); }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 12px 24px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; font-weight: 500; cursor: pointer;
  border: 1px solid transparent; transition: background .3s, border-color .3s, color .3s;
  white-space: nowrap;
}
.cookie-btn-accept { background: var(--gold); color: var(--black); border-color: var(--gold); }
.cookie-btn-accept:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.cookie-btn-refuse { background: transparent; color: var(--mist); border-color: rgba(255,255,255,.2); }
.cookie-btn-refuse:hover { border-color: var(--silver); color: var(--white); }

@media (max-width: 768px) {
  .cookie-banner { padding: 20px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 20px; }
  .cookie-banner-actions { flex-direction: column-reverse; }
  .cookie-btn { width: 100%; }
}

/* ═══════════════════════════════════════════
   BLOC PARTENAIRE AGENCE (page voyages)
   ═══════════════════════════════════════════ */
.partner-block {
  margin-top: 80px; padding-top: 56px;
  border-top: 1px solid rgba(184,150,90,.2);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.partner-intro {
  color: var(--silver); line-height: 1.9; font-size: 14px;
  margin-top: 16px; margin-bottom: 32px;
}
.partner-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(184,150,90,.15);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
}
.partner-name {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400;
  color: var(--white); margin-bottom: 16px;
}
.partner-legal { list-style: none; padding: 0; margin: 0 0 20px; }
.partner-legal li {
  font-size: 12.5px; color: var(--silver); line-height: 1.8;
  padding-left: 16px; position: relative;
}
.partner-legal li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 5px; height: 1px; background: var(--gold);
}
.partner-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 13px; letter-spacing: .04em;
  transition: color .3s;
}
.partner-link:hover { color: var(--gold-lt); }
.partner-link svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .partner-block { margin-top: 56px; padding-top: 40px; }
  .partner-card { padding: 22px 20px; }
}

/* ═══════════════════════════════════════════
   ÉCRANS PEU HAUTS (tablettes en mode paysage)
   Évite que le titre du hero passe sous le logo
   ═══════════════════════════════════════════ */
@media (max-height: 700px) and (min-width: 769px) {
  .voyages-hero,
  .page-hero {
    height: auto;
    min-height: 0;
    padding-top: 110px;   /* espace pour le header fixe */
    padding-bottom: 40px;
    align-items: flex-start;
  }
  .hero {
    min-height: 480px;    /* le hero d'accueil garde une hauteur mini correcte */
  }
}
