/* ============================================================
   COULEUR D'AMBRE — Feuille de style principale
   Version : 1.0.0 — 2026-05-04
   Stack : CSS3 pur + variables CSS (pas de build requis)
   Déploiement cible : Hostinger mutualisé statique
   ============================================================ */

/* === VARIABLES CSS === */
:root {
  --ambre-brown:      #5E3A24;
  --ambre-gold:       #F7A415;
  --ambre-cream:      #FAF7F2;
  --ambre-light-gold: #FFD27A;
  --ambre-dark:       #2B1810;

  /* Typographies */
  --font-title: 'Fraunces', serif;
  --font-body:  'Inter', sans-serif;

  /* Espacements */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max:   1280px;
  --container-px:    clamp(1.5rem, 5vw, 4rem);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Ombres */
  --shadow-gold: 0 8px 32px rgba(247, 164, 21, 0.25);
  --shadow-dark: 0 8px 32px rgba(43, 24, 16, 0.4);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--ambre-dark);
  color: var(--ambre-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* Accessibilité : focus visible */
:focus-visible {
  outline: 2px solid var(--ambre-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Accessibilité : visible uniquement pour les lecteurs d'écran */
.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;
}

/* === GRAIN TEXTURE OVERLAY === */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* === SOLEIL CURSEUR === */
@media (hover: hover) and (pointer: fine) {
  .cursor-sun {
    position: fixed;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
    filter: blur(8px) saturate(1.5);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s var(--ease-smooth);
    will-change: transform;
  }

  .cursor-sun img {
    width: 100%;
    height: 100%;
    animation: rotateSun 8s linear infinite;
  }
}

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s var(--ease-smooth),
              backdrop-filter 0.3s var(--ease-smooth),
              box-shadow 0.3s var(--ease-smooth);
}

#navbar.scrolled {
  background-color: rgba(43, 24, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: opacity 0.2s var(--ease-smooth);
}

.nav-logo:hover img {
  opacity: 0.85;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.8);
  transition: color 0.2s var(--ease-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ambre-gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--ambre-gold);
}

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

.nav-social {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-social {
    display: flex;
  }
}

.nav-social-link {
  color: rgba(250, 247, 242, 0.7);
  transition: color 0.2s var(--ease-smooth), transform 0.2s var(--ease-smooth);
  display: flex;
  align-items: center;
}

.nav-social-link:hover {
  color: var(--ambre-gold);
  transform: translateY(-2px);
}

/* Burger (mobile) */
.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.2s var(--ease-smooth);
}

@media (min-width: 1024px) {
  .burger-btn {
    display: none;
  }
}

.burger-btn:hover {
  background-color: rgba(247, 164, 21, 0.1);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ambre-cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth), background-color 0.2s;
  transform-origin: center;
}

.burger-btn.is-open {
  opacity: 0;
  pointer-events: none;
}

/* === MENU MOBILE FULLSCREEN === */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ambre-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-smooth), visibility 0.35s;
}

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

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ambre-cream);
  padding: 0.5rem;
  border-radius: 6px;
  transition: color 0.2s, background-color 0.2s;
}

.mobile-menu-close:hover {
  color: var(--ambre-gold);
  background-color: rgba(247, 164, 21, 0.1);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--ambre-cream);
  transition: color 0.2s var(--ease-smooth);
}

.mobile-nav-link:hover {
  color: var(--ambre-gold);
}

.mobile-social {
  display: flex;
  gap: 1.5rem;
}

/* === HERO === */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--ambre-dark);
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

/* Fallback si l'image ne se charge pas (placeholder SVG servi en .jpg) */
.hero-bg-photo img[src$=".jpg"] {
  background: linear-gradient(135deg, var(--ambre-brown) 0%, var(--ambre-dark) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 100% 80% at 50% 40%,
    rgba(43, 24, 16, 0.4) 0%,
    rgba(43, 24, 16, 0.75) 50%,
    rgba(43, 24, 16, 0.95) 100%
  );
}

/* Soleil héro */
.hero-sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 2;
  width: min(700px, 90vw);
  opacity: 0.12;
  will-change: transform;
}

.hero-sun img {
  width: 100%;
  height: 100%;
  animation: rotateSun 60s linear infinite, pulseSun 4s ease-in-out infinite;
}

/* Particules */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--ambre-gold);
  animation: floatParticle var(--duration, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: var(--opacity, 0.4);
}

/* Contenu héro */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: calc(72px + 3rem) var(--container-px) 6rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Logo dans le hero */
.hero-logo {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.hero-logo img {
  height: clamp(44px, 7vw, 64px);
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(247, 164, 21, 0.5);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ambre-gold);
  margin-bottom: 1.5rem;
  background: rgba(247, 164, 21, 0.08);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--ambre-light-gold) 0%, var(--ambre-gold) 50%, #E8920A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: rgba(250, 247, 242, 0.85);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.hero-location {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--ambre-gold);
  margin-bottom: 3rem;
}

/* === COUNTDOWN === */
.countdown-wrapper {
  margin-bottom: 3rem;
}

/* Date d'ouverture proéminente */
.countdown-date-label {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ambre-gold);
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.countdown-date-label sup {
  font-size: 0.55em;
  vertical-align: super;
}

.countdown-label-top {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
  margin-bottom: 0.85rem;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1rem);
  flex-wrap: wrap;
}

.countdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 164, 21, 0.2);
  border-radius: 0.875rem;
  padding: 0.75rem 1rem;
  min-width: clamp(58px, 13vw, 82px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 164, 21, 0.4), transparent);
}

.countdown-card:hover {
  border-color: rgba(247, 164, 21, 0.5);
  box-shadow: var(--shadow-gold);
}

.countdown-number {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--ambre-gold);
  line-height: 1;
  transition: transform 0.3s var(--ease-smooth);
  display: block;
  min-width: 2ch;
  text-align: center;
}

.countdown-number.flipping {
  animation: flip 0.4s var(--ease-smooth);
}

.countdown-unit {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin-top: 0.5rem;
}

.countdown-separator {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: rgba(247, 164, 21, 0.5);
  line-height: 1;
  animation: pulseBlink 2s ease-in-out infinite;
  align-self: flex-start;
  margin-top: clamp(0.5rem, 1.5vw, 0.75rem);
}

/* CTA Héro */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ambre-gold);
  color: var(--ambre-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  transition: transform 0.25s var(--ease-spring),
              box-shadow 0.25s var(--ease-smooth),
              background-color 0.2s;
}

.cta-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(247, 164, 21, 0.5), 0 8px 24px rgba(0,0,0,0.3);
  background-color: var(--ambre-light-gold);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(247, 164, 21, 0.6);
  color: var(--ambre-cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  transition: background-color 0.25s var(--ease-smooth),
              border-color 0.25s,
              color 0.25s,
              transform 0.25s var(--ease-spring);
}

.cta-secondary:hover {
  background-color: rgba(247, 164, 21, 0.15);
  border-color: var(--ambre-gold);
  color: var(--ambre-gold);
  transform: scale(1.03);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-chevron {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(247, 164, 21, 0.6);
  border-bottom: 2px solid rgba(247, 164, 21, 0.6);
  transform: rotate(45deg);
  animation: bounceDown 2s ease-in-out infinite;
}

/* === ANIMATIONS DE CHARGEMENT === */
.animate-on-load {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.animate-on-load.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SCROLL REVEAL === */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SOLEILS DÉCORATIFS === */
.deco-sun {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  will-change: transform;
}

.deco-sun img {
  animation: rotateSun 25s linear infinite;
}

.deco-sun--1 {
  right: -2rem;
  top: -3rem;
}

.deco-sun--2 {
  left: -1rem;
  top: 50%;
}

.deco-sun--3 {
  right: 5%;
  top: 10%;
}

.deco-sun--4 {
  left: 5%;
  top: 15%;
}

/* Positionnement relatif sur les sections parentes */
#projet,
#features,
#horaires,
#reseaux {
  position: relative;
}

/* === SECTIONS COMMUNES === */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-padding) var(--container-px);
}

.section-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ambre-gold);
  margin-bottom: 0.75rem;
}

.section-kicker--light {
  color: var(--ambre-light-gold);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ambre-brown);
  margin-bottom: 1.5rem;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(94, 58, 36, 0.75);
  line-height: 1.7;
}

/* === SECTION PROJET === */
#projet {
  background-color: var(--ambre-cream);
  overflow: visible;
}

.projet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .projet-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.projet-paragraph {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(43, 24, 16, 0.8);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.projet-paragraph strong {
  color: var(--ambre-brown);
  font-weight: 600;
}

.projet-image-wrapper {
  position: relative;
}

.projet-image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(94, 58, 36, 0.2);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ambre-brown) 0%, var(--ambre-gold) 100%);
}

.projet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.6s var(--ease-smooth);
}

.projet-image:hover img {
  transform: scale(1.03);
}

.projet-badge {
  position: absolute;
  bottom: -1rem;
  right: 1.5rem;
  background: var(--ambre-gold);
  color: var(--ambre-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(247, 164, 21, 0.4);
  white-space: nowrap;
}

/* === SECTION FEATURES === */
#features {
  background-color: var(--ambre-cream);
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(247, 164, 21, 0.15);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  transition: transform 0.3s var(--ease-smooth),
              box-shadow 0.3s var(--ease-smooth),
              border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(247, 164, 21, 0.4);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(247, 164, 21, 0.15), rgba(247, 164, 21, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--ambre-gold);
  transition: background 0.3s var(--ease-smooth);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(247, 164, 21, 0.25), rgba(247, 164, 21, 0.1));
}

.feature-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ambre-brown);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(43, 24, 16, 0.65);
  line-height: 1.7;
}

/* === HERO HORAIRES MENTION === */
.hero-hours {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.65);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-hours strong {
  color: var(--ambre-light-gold);
  font-weight: 600;
}

.hero-hours-dot {
  color: var(--ambre-gold);
  font-size: 0.5rem;
  animation: pulseBlink 2s ease-in-out infinite;
}

/* === BADGE ERGOLINE === */
.ergoline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(247, 164, 21, 0.12), rgba(247, 164, 21, 0.06));
  border: 1px solid rgba(247, 164, 21, 0.3);
  color: var(--ambre-brown);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
}

/* === SECTION TARIFS === */
#tarifs {
  background-color: var(--ambre-dark);
  overflow: hidden;
}

#tarifs .section-title {
  color: var(--ambre-cream);
}

#tarifs .section-kicker {
  color: var(--ambre-light-gold);
}

#tarifs .section-subtitle {
  color: rgba(250, 247, 242, 0.5);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tarifs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tarif-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 164, 21, 0.15);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), border-color 0.3s;
  position: relative;
}

.tarif-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(247, 164, 21, 0.35);
}

.tarif-card--featured {
  border-color: rgba(247, 164, 21, 0.5);
  background: rgba(247, 164, 21, 0.07);
}

.tarif-card--featured:hover {
  border-color: var(--ambre-gold);
}

.tarif-popular {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ambre-gold);
  color: var(--ambre-dark);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-bottom-left-radius: 0.75rem;
}

.tarif-header {
  padding: 1.75rem 1.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-bottom: 1px solid rgba(247, 164, 21, 0.1);
}

.tarif-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tarif-header--classique .tarif-icon  { background: rgba(250, 247, 242, 0.08); color: rgba(250, 247, 242, 0.6); }
.tarif-header--performance .tarif-icon { background: rgba(247, 164, 21, 0.2); color: var(--ambre-gold); }
.tarif-header--turbo .tarif-icon       { background: rgba(255, 210, 122, 0.15); color: var(--ambre-light-gold); }

.tarif-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ambre-cream);
  line-height: 1.2;
}

.tarif-list {
  list-style: none;
  padding: 0.75rem 0 0.5rem;
}

.tarif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.75rem;
  border-bottom: 1px solid rgba(247, 164, 21, 0.07);
  transition: background 0.2s;
}

.tarif-row:hover {
  background: rgba(247, 164, 21, 0.05);
}

.tarif-row--last {
  border-bottom: none;
  padding-bottom: 1.25rem;
}

.tarif-duration {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.7);
  font-weight: 500;
}

.tarif-price {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ambre-gold);
}

.tarif-card--featured .tarif-price {
  color: var(--ambre-light-gold);
}

/* === SECTION PRÊT À PORTER === */
#pret-a-porter {
  background-color: var(--ambre-cream);
  overflow: hidden;
}

.pap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .pap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  /* Image à droite sur desktop */
  .pap-image-wrapper { order: 2; }
  .pap-text         { order: 1; }
}

.pap-image-wrapper {
  position: relative;
}

.pap-image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(94, 58, 36, 0.18);
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--ambre-cream), #EDE0D0);
}

.pap-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.pap-image:hover img {
  transform: scale(1.03);
}

.pap-badge {
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  background: var(--ambre-brown);
  color: var(--ambre-cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(94, 58, 36, 0.3);
  white-space: nowrap;
}

.pap-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.pap-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(247, 164, 21, 0.1);
  border: 1px solid rgba(247, 164, 21, 0.25);
  color: var(--ambre-brown);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  transition: background 0.2s, border-color 0.2s;
}

.pap-tag:hover {
  background: rgba(247, 164, 21, 0.2);
  border-color: var(--ambre-gold);
}

/* === SECTION HORAIRES === */
#horaires {
  background-color: var(--ambre-dark);
  overflow: hidden;
}

.horaires-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .horaires-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.horaires-col,
.localisation-col {
  padding: var(--section-padding) var(--container-px);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.schedule-table td {
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.85);
  border-bottom: 1px solid rgba(247, 164, 21, 0.1);
}

.schedule-table td:first-child {
  font-weight: 500;
  color: var(--ambre-cream);
}

.schedule-table td:last-child {
  text-align: right;
  color: var(--ambre-light-gold);
  font-weight: 500;
}

.schedule-closed td {
  opacity: 0.45;
}

.schedule-closed td:last-child em {
  font-style: italic;
}

.horaires-mention {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ambre-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Localisation */
.localisation-address {
  margin-bottom: 1.5rem;
}

.localisation-main {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ambre-cream);
  margin-bottom: 0.35rem;
}

.localisation-city {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ambre-gold);
  margin-bottom: 0.75rem;
}

.localisation-street {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.75);
  margin-bottom: 0.2rem;
}

.localisation-nearby {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.55);
  margin-top: 0.5rem;
}

.localisation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(247, 164, 21, 0.15);
  border: 1px solid rgba(247, 164, 21, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ambre-gold);
  margin-bottom: 1.5rem;
}

/* Carte Google Maps intégrée */
.map-embed-wrapper {
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(247, 164, 21, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  line-height: 0;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.cta-map {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(247, 164, 21, 0.4);
  color: var(--ambre-gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  transition: background-color 0.2s, color 0.2s, transform 0.2s var(--ease-spring);
}

.cta-map:hover {
  background-color: rgba(247, 164, 21, 0.1);
  color: var(--ambre-light-gold);
  transform: translateX(4px);
}

/* === SECTION RÉSEAUX === */
#reseaux {
  background: linear-gradient(160deg, var(--ambre-brown) 0%, #3A1E10 50%, var(--ambre-dark) 100%);
  overflow: hidden;
}

#reseaux .section-title {
  color: var(--ambre-cream);
}

#reseaux .section-kicker {
  color: var(--ambre-light-gold);
}

#reseaux .section-subtitle {
  color: rgba(250, 247, 242, 0.65);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.social-card {
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring),
              box-shadow 0.35s var(--ease-smooth);
  text-decoration: none;
}

.social-card:hover {
  transform: translateY(-6px) rotateY(3deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.social-card-inner {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.3s var(--ease-smooth);
}

.social-card:hover .social-card-inner {
  background: rgba(255, 255, 255, 0.12);
}

.social-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}

.social-card:hover .social-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
}

.social-card--facebook .social-icon-wrapper {
  background: rgba(24, 119, 242, 0.2);
  color: #4A9FF5;
}

.social-card--instagram .social-icon-wrapper {
  background: rgba(225, 48, 108, 0.2);
  color: #E8A0C2;
}

.social-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ambre-cream);
  margin-bottom: 0.25rem;
}

.social-card-handle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 0.75rem;
}

.social-card-cta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ambre-gold);
  letter-spacing: 0.05em;
}

/* === SECTION CITATION === */
#citation {
  background-color: var(--ambre-cream);
  overflow: hidden;
}

.citation-container {
  text-align: center;
  max-width: 680px;
}

.citation-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(247, 164, 21, 0.2);
  border-bottom: 1px solid rgba(247, 164, 21, 0.2);
}

.citation-ornament {
  font-size: 1rem;
  color: var(--ambre-gold);
  opacity: 0.7;
  letter-spacing: 0.5em;
}

.citation-text {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--ambre-brown);
  line-height: 1.65;
  quotes: none;
  margin: 0;
}

.citation-author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(94, 58, 36, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* === FOOTER === */
#footer {
  background-color: var(--ambre-dark);
  border-top: 1px solid rgba(247, 164, 21, 0.1);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem var(--container-px) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer-col--brand {
  max-width: 340px;
}

.footer-col--brand img {
  margin-bottom: 1rem;
  height: 44px;
  width: auto;
}

.footer-description {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ambre-gold);
  margin-bottom: 1.25rem;
}

.footer-col--links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.55);
  transition: color 0.2s var(--ease-smooth);
}

.footer-link:hover {
  color: var(--ambre-gold);
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.55);
  transition: color 0.2s var(--ease-smooth), transform 0.2s var(--ease-smooth);
}

.footer-social-link:hover {
  color: var(--ambre-gold);
  transform: translateX(4px);
}

.footer-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 164, 21, 0.25), transparent);
  margin-bottom: 1.5rem;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.3);
  text-align: center;
  letter-spacing: 0.03em;
}

/* === KEYFRAMES ANIMATIONS === */

/* Rotation soleil */
@keyframes rotateSun {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Pulse soleil héro */
@keyframes pulseSun {
  0%, 100% { opacity: 0.12; }
  50%       { opacity: 0.18; }
}

/* Float particules */
@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: var(--opacity, 0.4);
  }
  25% {
    transform: translateY(-30px) translateX(15px);
    opacity: calc(var(--opacity, 0.4) * 1.3);
  }
  50% {
    transform: translateY(-15px) translateX(-10px);
    opacity: var(--opacity, 0.4);
  }
  75% {
    transform: translateY(-40px) translateX(5px);
    opacity: calc(var(--opacity, 0.4) * 0.7);
  }
}

/* Flip compte à rebours */
@keyframes flip {
  0%   { transform: rotateX(0deg);   opacity: 1; }
  50%  { transform: rotateX(90deg);  opacity: 0; }
  51%  { transform: rotateX(-90deg); opacity: 0; }
  100% { transform: rotateX(0deg);   opacity: 1; }
}

/* Bounce scroll indicator */
@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* Blink séparateurs */
@keyframes pulseBlink {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* Shimmer (utilisé sur éléments dorés) */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* === RESPONSIVE — MOBILE FIRST === */

/* 640px · Small */
@media (min-width: 640px) {
  .hero-content {
    padding-top: calc(72px + 3rem);
  }
}

/* 768px — Medium */
@media (min-width: 768px) {
  .countdown-card {
    min-width: 100px;
  }
}

/* 1024px · Large */
@media (min-width: 1024px) {
  .hero-content {
    padding-top: calc(72px + 4rem);
  }
}

/* 1280px — XL */
@media (min-width: 1280px) {
  :root {
    --section-padding: 8rem;
  }
}

/* Préférence reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-sun img,
  .deco-sun img,
  .cursor-sun img {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
