/* ============================================================
   MYANE OPTIQUE — style.css
   Mobile-first · Breakpoints : 375px, 768px, 1280px, 1440px
   ============================================================ */

/* ─── FONT : MADE Cannes (local si dispo, fallback Cormorant) ─── */
@font-face {
  font-family: 'MADE Cannes';
  src:
    local('MADE Cannes'),
    local('MADECannes'),
    url('fonts/MADECannes.woff2') format('woff2'),
    url('fonts/MADECannes.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MADE Cannes';
  src:
    local('MADE Cannes Italic'),
    local('MADECannes-Italic'),
    url('fonts/MADECannes-Italic.woff2') format('woff2'),
    url('fonts/MADECannes-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}


/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --color-cream:  #FFFBF6;
  --color-green:  #138F6E;
  --color-yellow: #F8C337;
  --color-red:    #C32A2B;
  --color-dark:   #242424;
  --color-white:  #FFFFFF;

  /* Typographie */
  --font-title: 'MADE Cannes', 'Cormorant Garamond', serif;
  --font-body:  'Montserrat', sans-serif;

  /* Espacements */
  --section-pad-desktop: 120px;
  --section-pad-mobile:  80px;
  --container-max:       1200px;
  --container-pad:       24px;

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.7s ease;
}


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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Utilitaire : accessibilité visuelle uniquement */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}


/* ─── BOUTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base);
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #0e7a5e;
  border-color: #0e7a5e;
  box-shadow: 0 6px 20px rgba(19, 143, 110, 0.32);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}

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

/* Focus visible global */
:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}


/* ─── ÉYEBROW (label de section) ─────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 16px;
}

.eyebrow-light {
  color: rgba(255, 251, 246, 0.6);
}

/* ─── TITRES DE SECTION ──────────────────────────────────── */
.section-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.title-light {
  color: var(--color-cream);
}


/* ─── ANIMATION FADE-IN-UP ───────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
  transition-delay: var(--delay, 0s);
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-cream);
  border-bottom: 1px solid rgba(36, 36, 36, 0.08);
  transition: box-shadow var(--transition-base);
  height: 60px;
}

#header.scrolled {
  box-shadow: 0 2px 20px rgba(36, 36, 36, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo block : nom + sous-titre */
.logo-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
  line-height: 1;
}

.logo {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(36, 36, 36, 0.5);
  line-height: 1;
}

/* Navigation desktop */
.nav-desktop {
  display: none;
  gap: 36px;
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
  position: relative;
  transition: color var(--transition-base);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-green);
  transition: width var(--transition-base);
}

.nav-desktop a:hover {
  color: var(--color-green);
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* Hamburger mobile */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: -8px;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-dark);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--color-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-link {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 36px;
  color: var(--color-cream);
  transition: opacity var(--transition-base);
}

.mobile-nav-link:hover {
  opacity: 0.7;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--color-cream);
  padding: 8px;
  transition: opacity var(--transition-base);
}

.mobile-menu-close:hover {
  opacity: 0.7;
}


/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(36, 36, 36, 0.45);
}

.hero-content {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0 40px;
  text-align: left;
  max-width: 640px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--color-cream);
  margin-bottom: 24px;
  max-width: 600px;
}

.hero-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 251, 246, 0.8);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Indicateur de scroll */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-chevron {
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50%       { transform: translateY(8px); opacity: 1; }
}


/* ============================================================
   SECTION 2 — ACCROCHE ÉDITORIALE
   ============================================================ */
.section-accroche {
  background-color: var(--color-cream);
  padding: var(--section-pad-mobile) 0;
}

.accroche-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* Ligne décorative */
.line-deco {
  width: 48px;
  height: 2px;
  background-color: var(--color-green);
  margin-bottom: 24px;
}

.accroche-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.accroche-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(36, 36, 36, 0.75);
  line-height: 1.75;
  max-width: 460px;
}

/* ── Carrousel photos magasin ───────────────────────────────── */
.accroche-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background-color: var(--color-dark);
  aspect-ratio: 4 / 3;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Contrôles */
.carousel-controls {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 2;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 251, 246, 0.15);
  color: var(--color-cream);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 251, 246, 0.2);
  transition: background-color var(--transition-base);
  cursor: pointer;
}

.carousel-btn:hover {
  background-color: rgba(255, 251, 246, 0.3);
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 251, 246, 0.4);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base);
  padding: 0;
}

.carousel-dot.is-active {
  background-color: var(--color-cream);
  transform: scale(1.3);
}


/* ============================================================
   SECTION 3 — NOS SERVICES
   ============================================================ */
.section-services {
  background-color: var(--color-white);
  padding: var(--section-pad-mobile) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-title {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.service-card {
  background-color: var(--color-cream);
  padding: 48px 40px;
  border-left: 3px solid transparent;
  transition:
    border-color var(--transition-base),
    transform var(--transition-base),
    background-color var(--transition-base);
}

.service-card:nth-child(even) {
  background-color: var(--color-white);
}

.service-card:hover {
  border-left-color: var(--color-green);
  transform: translateY(-4px);
}

.service-icon {
  color: var(--color-green);
  margin-bottom: 24px;
}

.service-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.service-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(36, 36, 36, 0.7);
  line-height: 1.75;
}


/* ============================================================
   SECTION 4 — NOS MONTURES
   ============================================================ */
.section-montures {
  background-color: var(--color-cream);
  padding: var(--section-pad-mobile) 0;
}

.montures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.montures-text .section-title {
  color: var(--color-dark);
}

.montures-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(36, 36, 36, 0.7);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 380px;
}

/* Photo unique sélection */
.montures-photo-single {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 2 / 3;
}

.montures-photo-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Ancien grid — masqué */
.photos-grid,
.photo-item,
.photo-span-col {
  display: none;
}

/* ── Carrousel montures ──────────────────────────────────── */
.montures-carousel {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
}

.montures-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.montures-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.montures-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.montures-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.montures-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 251, 246, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.montures-dot.is-active {
  background-color: var(--color-cream);
  transform: scale(1.4);
}


/* ============================================================
   SECTION MARQUES — Bandeau déroulant
   ============================================================ */
.section-brands {
  background-color: var(--color-white);
  padding: var(--section-pad-mobile) 0;
  overflow: hidden;
  border-top: 1px solid rgba(36, 36, 36, 0.07);
  border-bottom: 1px solid rgba(36, 36, 36, 0.07);
}

.brands-header {
  text-align: center;
  margin-bottom: 40px;
}

.brands-header .section-eyebrow {
  margin-bottom: 0;
}

/* Conteneur du défilement */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  /* Fondu sur les bords */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* Piste qui contient les deux listes */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

/* Ralentir au survol */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .marquee-wrapper {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .marquee-list:last-child {
    display: none;
  }
  .marquee-wrapper {
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

/* Liste de marques */
.marquee-list {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(36, 36, 36, 0.5);
  white-space: nowrap;
  padding: 0 28px;
  transition: color var(--transition-base), letter-spacing var(--transition-base);
  cursor: default;
}

.marquee-item:hover {
  color: var(--color-dark);
  letter-spacing: 0.28em;
}

/* ── Wordmarks par marque ─────────────────────────────────────
   Chaque marque a sa propre signature typographique
─────────────────────────────────────────────────────────────── */

/* Céline : minimaliste, très espacé */
.brand-celine {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0.35em;
  font-size: clamp(14px, 1.5vw, 18px);
}

/* Ray-Ban : condensé, fort */
.brand-rayban {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(36, 36, 36, 0.65);
}

/* Prada : géométrique, neutre */
.brand-prada {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(36, 36, 36, 0.55);
}

/* Gucci : italique, serif */
.brand-gucci {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.04em;
  text-transform: none;
}

/* Chanel : ultra-espacé, iconic */
.brand-chanel {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.5em;
  font-size: clamp(11px, 1.2vw, 14px);
}

/* Dior : léger, classique */
.brand-dior {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0.45em;
  font-size: clamp(15px, 1.6vw, 20px);
}

/* Tom Ford : bold, noir */
.brand-tomford {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: clamp(12px, 1.3vw, 15px);
  color: rgba(36, 36, 36, 0.7);
}

/* Cartier : serif élégant */
.brand-cartier {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0.3em;
  font-size: clamp(15px, 1.6vw, 19px);
}

/* Miu Miu : tout minuscule, playful */
.brand-miumiu {
  font-family: var(--font-title);
  font-style: italic;
  text-transform: none;
  font-size: clamp(16px, 1.8vw, 21px);
  letter-spacing: 0.1em;
}

/* Balmain : condensé, fort */
.brand-balmain {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.28em;
  font-size: clamp(11px, 1.2vw, 14px);
}

/* YSL / Saint Laurent : espacé, luxueux */
.brand-ysl {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.38em;
  font-size: clamp(11px, 1.2vw, 14px);
}

/* Armani : italic léger */
.brand-armani {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.06em;
  text-transform: none;
}

/* Chloé : serif doux */
.brand-chloe {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 21px);
  text-transform: none;
  letter-spacing: 0.04em;
}

/* Jimmy Choo : gracieux */
.brand-jimmychoo {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(15px, 1.7vw, 20px);
  text-transform: none;
  letter-spacing: 0.06em;
}

/* Calvin Klein : très condensé */
.brand-ck {
  font-family: var(--font-title);
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: 0.06em;
  text-transform: none;
}

/* Tiffany : élégant, léger */
.brand-tiffany {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.22em;
  font-size: clamp(11px, 1.2vw, 14px);
}

.marquee-sep {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--color-green);
  opacity: 0.5;
  flex-shrink: 0;
  user-select: none;
}


/* ============================================================
   SECTION AVIS GOOGLE
   ============================================================ */
.section-avis {
  background-color: var(--color-cream);
  padding: var(--section-pad-mobile) 0;
}

.avis-global-note {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.avis-stars {
  display: flex;
  gap: 2px;
  color: var(--color-yellow);
  font-size: 20px;
  line-height: 1;
}

.avis-stars-sm {
  font-size: 14px;
}

.avis-source {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(36, 36, 36, 0.6);
}

.avis-source strong {
  color: var(--color-dark);
  font-weight: 600;
}

.avis-source a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition-base);
}

.avis-source a:hover {
  opacity: 0.75;
}

.avis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}

.avis-card {
  background-color: var(--color-white);
  border: 1px solid rgba(36, 36, 36, 0.07);
  border-radius: 2px;
  padding: 32px 28px;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.avis-card:hover {
  box-shadow: 0 8px 24px rgba(36, 36, 36, 0.07);
  transform: translateY(-3px);
}

.avis-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.avis-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-green);
  color: var(--color-cream);
  font-family: var(--font-title);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avis-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.avis-auteur {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1;
}

.avis-texte {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: rgba(36, 36, 36, 0.75);
  line-height: 1.65;
  quotes: "\00AB" "\00BB";
}

.avis-texte::before { content: open-quote; }
.avis-texte::after  { content: close-quote; }


/* ============================================================
   SECTION 5 — POURQUOI MYANE (fond vert)
   ============================================================ */
.section-pourquoi {
  background-color: var(--color-green);
  color: var(--color-cream);
  padding: var(--section-pad-mobile) 0;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  text-align: center;
  margin-bottom: 64px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 72px);
  line-height: 1;
  color: var(--color-cream);
  letter-spacing: 0;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 251, 246, 0.75);
  max-width: 200px;
  line-height: 1.4;
}

/* Séparateur */
.stats-separator {
  width: 60px;
  height: 1px;
  background-color: rgba(255, 251, 246, 0.25);
  margin: 0 auto 64px;
}

/* Témoignage */
.testimonial {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.testimonial-text {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.4;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.testimonial-attr {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 251, 246, 0.65);
  letter-spacing: 0.04em;
}


/* ============================================================
   SECTION 6 — RÉSERVATION (fond sombre)
   ============================================================ */
.section-reserver {
  background-color: var(--color-dark);
  padding: var(--section-pad-mobile) 0;
}

.reserver-content {
  text-align: center;
  margin-bottom: 56px;
}

.reserver-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 251, 246, 0.7);
  max-width: 440px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Formulaire */
.reserver-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
}

.form-group {
  flex: 1;
}

.reserver-form input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 251, 246, 0.35);
  padding: 16px 0;
  outline: none;
  transition: border-color var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.reserver-form input::placeholder {
  color: rgba(255, 251, 246, 0.45);
}

/* Couleur du calendar picker sombre */
.reserver-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.4);
  cursor: pointer;
}

.reserver-form input:focus {
  border-bottom-color: var(--color-green);
}

.btn-submit {
  margin-top: 40px;
  align-self: center;
}

/* Message de confirmation */
.form-confirmation {
  text-align: center;
  padding: 40px 0;
}

.confirmation-text {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--color-cream);
  line-height: 1.4;
}


/* ============================================================
   SECTION 7 — NOUS TROUVER
   ============================================================ */
.section-contact {
  background-color: var(--color-cream);
  padding: var(--section-pad-mobile) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-info .section-title {
  margin-bottom: 32px;
}

/* Adresse */
.contact-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(36, 36, 36, 0.8);
  line-height: 1.5;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-green);
}

.contact-item a {
  color: rgba(36, 36, 36, 0.8);
  transition: color var(--transition-base);
}

.contact-item a:hover {
  color: var(--color-green);
}

/* Horaires */
.horaires-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.horaires-table {
  width: 100%;
  border-collapse: collapse;
}

.horaires-table td {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(36, 36, 36, 0.75);
  padding: 8px 0;
  vertical-align: top;
}

.horaires-table td:first-child {
  padding-right: 24px;
  white-space: nowrap;
  min-width: 180px;
}

.horaires-table td.fermé {
  color: rgba(36, 36, 36, 0.4);
}

/* Réseaux sociaux */
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(36, 36, 36, 0.15);
  border-radius: 2px;
  color: rgba(36, 36, 36, 0.5);
  transition:
    color var(--transition-base),
    border-color var(--transition-base),
    background-color var(--transition-base);
}

.social-link:hover {
  color: var(--color-green);
  border-color: var(--color-green);
  background-color: rgba(19, 143, 110, 0.06);
}

/* Carte */
.contact-map {
  height: 360px;
  border-radius: 2px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) contrast(0.9);
  border: 0;
}


/* ============================================================
   FOOTER — 4 colonnes
   ============================================================ */
#footer {
  background-color: var(--color-dark);
}

/* ── Partie haute ─────────────────────────────────────────── */
.footer-top {
  padding: 80px 0 64px;
  border-top: 1px solid rgba(255, 251, 246, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* Colonne 1 : logo + légal */
.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--color-cream);
  line-height: 1;
  transition: opacity var(--transition-base);
}

.footer-logo:hover {
  opacity: 0.75;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 251, 246, 0.4);
  margin-top: 4px;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.footer-legal-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 251, 246, 0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}

.footer-legal-links a:hover {
  color: rgba(255, 251, 246, 0.8);
}

/* Colonnes 2 & 3 : listes de liens */
.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 24px;
}

.footer-col-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-list a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 251, 246, 0.55);
  transition: color var(--transition-base);
  line-height: 1;
}

.footer-col-list a:hover {
  color: var(--color-cream);
}

/* Colonne 4 : contact avec icônes */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 251, 246, 0.55);
  line-height: 1.5;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-green);
  opacity: 0.85;
}

.footer-contact-list a {
  color: rgba(255, 251, 246, 0.55);
  transition: color var(--transition-base);
}

.footer-contact-list a:hover {
  color: var(--color-cream);
}

/* ── Partie basse ─────────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(255, 251, 246, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-link {
  color: rgba(255, 251, 246, 0.4);
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
}

.footer-social-link:hover {
  color: var(--color-green);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 251, 246, 0.3);
}


/* ============================================================
   RESPONSIVE — MOBILE (hero bottom-left)
   ============================================================ */
@media (max-width: 768px) {
  .hero-content {
    bottom: 72px;
    padding: 0 24px;
  }

  .hero-img {
    object-position: 65% center;
  }
}


/* ============================================================
   RESPONSIVE — TABLET 768px
   ============================================================ */
@media (min-width: 768px) {

  /* Header */
  #header {
    height: 72px;
  }

  .logo {
    font-size: 20px;
  }

  /* Accroche */
  .accroche-grid {
    grid-template-columns: 55fr 45fr;
    gap: 64px;
    align-items: stretch;
  }

  /* Avis : 3 colonnes */
  .avis-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card:nth-child(even) {
    background-color: var(--color-cream);
  }

  .service-card:nth-child(2) {
    background-color: var(--color-white);
  }

  /* Montures */
  .montures-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .montures-carousel {
    aspect-ratio: 1 / 1;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .contact-map {
    height: 100%;
    min-height: 420px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px 48px;
  }
}


/* ============================================================
   RESPONSIVE — DESKTOP 1280px (footer 4 colonnes)
   ============================================================ */
@media (min-width: 1280px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
  }
}


/* ============================================================
   RESPONSIVE — DESKTOP 1280px
   ============================================================ */
@media (min-width: 1280px) {

  :root {
    --section-pad-mobile: var(--section-pad-desktop);
  }

  /* Header : afficher navigation desktop */
  .nav-desktop {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  /* Accroche — même padding que toutes les sections */

  /* Montures : photos plus hautes */
  .photo-tall {
    height: 440px;
  }

  .photo-short {
    height: 216px;
  }
}


/* ============================================================
   RESPONSIVE — LARGE 1440px
   ============================================================ */
@media (min-width: 1440px) {
  :root {
    --container-pad: 40px;
  }

  .hero-title {
    font-size: 72px;
  }
}
