/* ═══════════════════════════════════════════
   LA PERGOLA — styles.css
   Restaurant & Night Club · Île de Ré
═══════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────── */
:root {
  --red:      #E63946;
  --red-dark: #c0202d;
  --yellow:   #FFB81C;
  --navy:     #003366;
  --navy-mid: #0a2647;
  --black:    #0a0a0a;
  --white:    #ffffff;
  --off-white:#f8f6f2;
  --gray-100: #f0ede8;
  --gray-400: #9a9490;
  --gray-700: #3d3a36;

  --font-sans:  'Poppins', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1200px;
  --gap: clamp(1.5rem, 5vw, 4rem);
  --section-pad: clamp(4rem, 10vw, 8rem);

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;

  --header-h: 72px;
  --shadow-card: 0 8px 40px rgba(0,0,0,.12);
  --shadow-heavy: 0 20px 60px rgba(0,0,0,.25);
}

/* ─── Reset & Base ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

ul { list-style: none; }

/* ─── Utilities ──────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.section {
  padding-block: var(--section-pad);
}

.mt-6 { margin-top: 2rem; }
.max-w-prose { max-width: 52ch; }

/* ─── Typography ─────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-eyebrow.light { color: rgba(255,255,255,.6); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--red);
}
.section-title.light { color: var(--white); }

.section-body {
  font-size: clamp(.95rem, 2vw, 1.05rem);
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 2rem;
}
.section-body.light { color: rgba(255,255,255,.8); }

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,57,70,.35);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── Header / Nav ───────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.header.scrolled {
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 2px;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-sm);
  transition: color .2s;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-sm);
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--red-dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.2) 0%,
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.7));
  margin: auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(.6); }
}

/* ─── Présentation ───────────────────────── */
.presentation {
  background: var(--white);
  padding-block: 60px;
}

.pres-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

/* Image gauche */
.pres-image { position: relative; }

.pres-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-heavy);
}
.pres-image-frame img {
  width: 100%;
  height: 100%;
  transition: transform .6s var(--ease-out);
}
.pres-image-frame:hover img { transform: scale(1.04); }

/* Bande jaune décorative */
.pres-accent-bar {
  width: 56px;
  height: 8px;
  background: var(--yellow);
  margin-bottom: 1.5rem;
}

/* Titre */
.pres-title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--red);
  margin-bottom: .75rem;
  line-height: 1;
}

/* Sous-titre italique */
.pres-subtitle {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-400);
  margin-bottom: 2rem;
  letter-spacing: .02em;
}

/* Corps de texte */
.pres-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pres-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--black);
}
.pres-italic {
  font-style: italic;
  color: var(--gray-700);
  font-size: 1rem !important;
  padding-left: 1rem;
  border-left: 3px solid var(--yellow);
}

@media (max-width: 768px) {
  .pres-layout {
    grid-template-columns: 1fr;
  }
  .pres-image-frame {
    aspect-ratio: 4/3;
  }
}

/* ─── Bouton grand format ────────────────── */
.btn-lg {
  padding: 1.1rem 2.75rem;
  font-size: .9rem;
  letter-spacing: .12em;
}
.pres-cta { margin-top: 2.5rem; }

/* ─── Vidéo ──────────────────────────────── */
.video-section {
  position: relative;
  width: 100%;
  line-height: 0;
  background: var(--black);
}
.video-player {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
  background: var(--black);
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  pointer-events: none;
}
.video-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,.6);
}
.video-play-icon { margin-bottom: 1.25rem; display: inline-block; }
.video-placeholder-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.video-placeholder-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.video-placeholder-sub code {
  color: var(--yellow);
  font-size: .78rem;
}
/* Cacher le placeholder quand la vidéo est chargée */
.video-section.has-video .video-placeholder { display: none; }

/* ─── Vidéo pleine largeur ───────────────── */
.video-fullwidth {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

/* ─── Vidéo blur portrait ────────────────── */
.video-blur-section {
  background: #1a0a00;
  line-height: 0;
}
.vbs-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vbs-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(28px) brightness(.75) saturate(1.6);
  transform: scale(1.1);
}
.vbs-blur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(200,70,20,.45) 0%,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0) 70%,
    rgba(200,70,20,.45) 100%);
  z-index: 1;
}
.vbs-main {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .vbs-wrap { height: 380px; }
  .vbs-main { width: 100%; height: auto; max-height: 380px; }
}

/* ─── Restaurant ─────────────────────────── */
.restaurant {
  background: var(--off-white);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.split-text {
  padding-right: clamp(0px, 3vw, 2rem);
}

.section-hours {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: .04em;
  margin-bottom: 2rem;
}
.hours-icon { font-style: normal; font-size: 1.1rem; }

.split-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.split-image { position: relative; }

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-heavy);
}
.image-frame img {
  width: 100%;
  height: 100%;
  transition: transform .6s var(--ease-out);
}
.image-frame:hover img { transform: scale(1.04); }

.image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
}

/* ─── Night Club — split layout ─────────── */
.nightclub-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}

/* Image gauche */
.nc-image {
  position: relative;
  overflow: hidden;
}
.nc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s var(--ease-out);
}
.nc-image:hover img { transform: scale(1.04); }

/* Panneau texte droite */
.nc-text {
  background: var(--white);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.nc-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--red);
  margin-bottom: 0;
}
.nc-title em {
  font-style: italic;
  color: var(--red);
  opacity: .75;
}

.nc-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--black);
}

.nc-hours {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .04em;
}

.nc-social-label {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: -.5rem;
}

.nc-social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.nc-social-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: color .2s, text-decoration .2s;
}
.nc-social-link:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.nc-vip-block {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nc-vip-label {
  font-size: .9rem;
  font-weight: 500;
  color: var(--black);
}

@media (max-width: 768px) {
  .nightclub-split {
    grid-template-columns: 1fr;
  }
  .nc-image {
    aspect-ratio: 16/9;
    min-height: 260px;
  }
}

/* ─── Privatisations ─────────────────────── */
.privatisations {
  background: var(--white);
}
.privatisations .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.event-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .9rem;
}

.priv-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .75rem;
}
.priv-img-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: transform .4s var(--ease-out);
}
.priv-img-grid img:hover { transform: scale(1.03); }
.priv-img-1 { grid-column: span 2; aspect-ratio: 16/9; }
.priv-img-2 { margin-left: 0; }

/* ─── Privatisations nouvelle section ───── */
.priv-new {
  background: #f9f9f9;
  padding: 0;
}
.priv-new-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 600px;
}
.priv-new-img {
  overflow: hidden;
}
.priv-new-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: transform .6s var(--ease-out);
}
.priv-new-img:hover img { transform: scale(1.03); }

.priv-new-text {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.priv-new-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}
.priv-new-title {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1.15;
  margin: 0;
}
.priv-new-sub {
  font-size: 1rem;
  font-style: italic;
  color: var(--black);
  margin: 0;
}
.priv-new-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.priv-new-list li {
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  padding-left: 1.1rem;
  position: relative;
}
.priv-new-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}
.priv-new-body {
  font-size: .95rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
.priv-new-specs {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .82rem;
  color: #555;
  border-left: 3px solid var(--yellow);
  padding-left: .9rem;
}
.priv-new-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  padding: 15px 40px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, color .3s;
  align-self: flex-start;
}
.priv-new-btn:hover {
  background: var(--yellow);
  color: var(--black);
}
.priv-new-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: .5rem;
}
.priv-new-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: transform .4s var(--ease-out);
}
.priv-new-gallery img:hover { transform: scale(1.04); }

@media (max-width: 900px) {
  .priv-new-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .priv-new-img { height: 320px; }
  .priv-new-text { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .priv-new-gallery { grid-template-columns: 1fr 1fr; }
  .priv-new-gallery img:last-child { display: none; }
}

/* ─── Galerie ────────────────────────────── */
.galerie {
  background: var(--black);
}
.galerie .section-eyebrow { color: rgba(255,255,255,.4); }
.galerie .section-title { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: .75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 16/9;
}
.gallery-item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform .55s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(230,57,70,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-within .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ─── Infos ──────────────────────────────── */
.infos {
  background: var(--navy);
}

.infos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background .25s, transform .25s var(--ease-out);
}
.info-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}

.info-icon { font-size: 2rem; margin-bottom: 1rem; }
.info-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.info-hours {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .25rem;
}
.info-hours-time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}
.info-period {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
}
.info-address {
  display: block;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.info-address:hover { color: var(--white); }
.address-link {
  display: block;
  color: var(--red);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  margin-top: .5rem;
}
.info-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
  transition: color .2s;
}
.info-phone:hover { color: var(--red); }

/* ─── Contact ────────────────────────────── */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.form-input {
  padding: .85rem 1rem;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  background: var(--white);
  color: var(--black);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,.12);
}
.form-input::placeholder { color: var(--gray-400); }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9490' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-feedback { font-size: .85rem; text-align: center; min-height: 1.5rem; }
.form-feedback.success { color: #2d8a55; }
.form-feedback.error { color: var(--red); }

/* Map */
.map-container {
  height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.social-block {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.social-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.social-links { display: flex; gap: 1rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all .2s;
}
.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ─── Footer nouveau style Blue Cargo ────── */
.footer-new {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

/* Logo */
.fn-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

/* Titre ACCÈS & Contact */
.fn-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  line-height: 1;
}
.fn-title-red {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--red);
  text-transform: uppercase;
}
.fn-title-yellow {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--yellow);
  letter-spacing: .02em;
}

/* Adresse */
.fn-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
}
.fn-place {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
}
.fn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--black);
}
.fn-link {
  text-decoration: none;
  color: var(--black);
  transition: color .2s;
}
.fn-link:hover {
  color: var(--red);
  text-decoration: underline;
}
.fn-link svg { flex-shrink: 0; color: var(--red); }

/* Nav */
.fn-nav {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.fn-nav a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  transition: color .2s;
}
.fn-nav a:hover { color: var(--red); }
.fn-sep { color: var(--gray-400); font-size: .8rem; }

/* Réseaux sociaux */
.fn-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.fn-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0,0,0,.12);
  color: var(--black);
  transition: all .2s;
}
.fn-social-link:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* Copyright */
.fn-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--gray-400);
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 1.5rem;
  width: 100%;
}
.fn-bottom a {
  color: var(--gray-400);
  transition: color .2s;
}
.fn-bottom a:hover { color: var(--red); }

/* ─── Cookie Banner ──────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(600px, calc(100% - 3rem));
  background: var(--black);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  transition: opacity .4s, transform .4s var(--ease-out);
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(1rem);
}
.cookie-content { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; width: 100%; }
.cookie-content p {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  flex: 1;
  min-width: 200px;
}
.cookie-link { color: var(--red); text-decoration: underline; }
.cookie-buttons { display: flex; gap: .75rem; flex-shrink: 0; }
.btn-cookie-accept, .btn-cookie-refuse {
  padding: .5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.btn-cookie-accept { background: var(--red); color: var(--white); }
.btn-cookie-accept:hover { background: var(--red-dark); }
.btn-cookie-refuse { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.btn-cookie-refuse:hover { background: rgba(255,255,255,.14); }

/* ─── Scroll Animations ──────────────────── */
.fade-up, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.fade-up    { transform: translateY(24px); }
.reveal-up  { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }

.fade-up.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .infos-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) {
    grid-column: span 2; aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: .25rem;
    transform: translateY(-110%);
    transition: transform .35s var(--ease-out);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-link {
    font-size: .9rem;
    padding: .9rem 1.25rem;
    border-radius: var(--radius-sm);
  }
  .nav-cta { text-align: center; margin-top: .5rem; }

  /* Layouts */
  .split-layout,
  .privatisations .container,
  .contact-grid { grid-template-columns: 1fr; }
  .split-text { padding-right: 0; }
  .priv-img-2 { margin-left: 0; }
  .privatisations-images { display: none; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) {
    grid-column: span 2;
  }

  /* Infos */
  .infos-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .infos-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 1; }
  .split-actions { flex-direction: column; }
  .social-links { flex-direction: column; }
}

/* ─── Avis Slider ────────────────────────── */
.avis-slider-section {
  background: #F9F9F9;
  padding: 60px 40px;
}

.avis-slider-container {
  max-width: 1400px;
  margin: 0 auto;
}

.avis-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.avis-slider-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  color: var(--red, #E63946);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: .06em;
  margin: 0 0 .5rem;
}

.avis-slider-subtitle {
  font-size: .9rem;
  color: #333;
}

.avis-slider-subtitle a {
  color: #34E0A1;
  font-weight: 600;
  text-decoration: none;
}
.avis-slider-subtitle a:hover { text-decoration: underline; }

/* Carousel layout */
.avis-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avis-viewport {
  flex: 1;
  overflow: hidden;
}

.avis-track {
  display: flex;
  will-change: transform;
}

/* Cards */
.avis-card {
  background: #fff;
  border: 2px solid #FFB81C;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: box-shadow .25s ease;
}

.avis-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.avis-stars {
  color: #FFB81C;
  font-size: 18px;
  letter-spacing: 4px;
}

.avis-text {
  font-size: .95rem;
  line-height: 1.65;
  color: #333;
  flex: 1;
  font-style: italic;
}

.avis-author {
  font-weight: 700;
  font-size: .88rem;
  color: #111;
}

.avis-meta {
  font-size: .78rem;
  color: #777;
}

.avis-ta-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  color: #34E0A1;
  font-weight: 600;
  margin-top: .25rem;
}

/* Arrows */
.avis-arrow {
  background: #fff;
  border: 1px solid #ddd;
  color: #555;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.avis-arrow:hover { background: var(--red, #E63946); color: #fff; border-color: var(--red, #E63946); }

/* Dots */
.avis-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.avis-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.avis-dot.active { background: var(--red, #E63946); transform: scale(1.25); }

/* CTA link */
.avis-ta-cta-wrap {
  text-align: center;
  margin-top: 2rem;
}

.avis-ta-cta {
  color: var(--red, #E63946);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}
.avis-ta-cta:hover { color: #FFB81C; }

@media (max-width: 768px) {
  .avis-slider-section { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .avis-arrow { width: 32px; height: 32px; font-size: 1.2rem; }
}

/* ─── Focus styles ───────────────────────── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ─── Reduced motion ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
