/* =============================================
   LES CITROUILLARDS : Feuille de styles v3
   Polices : Lilita One (titres) + Inter (corps)
   ============================================= */

/* === VARIABLES === */
:root {
  --orange: #E8751A;
  --orange-light: #F5A35C;
  --orange-pale: #FDEBD0;
  --cream: #FFF8EE;
  --cream-dark: #F0DEC4;
  --green: #4A6B2A;
  --green-dark: #2A3D18;
  --brown: #7B4F2E;
  --brown-dark: #2E1508;
  --gold: #F5B930;
  --text-dark: #1A0E05;
  --text-medium: #6B4B35;
  --text-light: #9B7B60;
  --white: #FFFFFF;

  --font-display: 'Lilita One', 'Arial Rounded MT Bold', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-full: 100px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.16);

  --transition: 0.28s ease;
  --max-width: 1200px;
}

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

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

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

/* Grain léger sur tout le site (au-dessus du contenu, sous la lightbox) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
/* <picture> transparent en mise en page : l'<img> se comporte comme enfant direct
   du conteneur (préserve les règles img { height: 100% } de .g-item / .prod-visual). */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHIE === */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.01em;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.65rem); }

/* === UTILITAIRES === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--cream-dark);
}

.section--dark {
  background: var(--brown-dark);
  color: var(--white);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-tag {
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 0.75rem;
}

.section-header--center .section-desc {
  margin: 0.75rem auto 0;
}

/* === BOUTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn:active { transform: scale(0.97); }

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.btn-secondary {
  background: var(--white);
  color: var(--orange);
  border-color: var(--orange);
}

.btn-secondary:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--brown-dark);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background: #e0a520;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.btn-outline-white {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn-dark {
  background: var(--brown-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* === HEADER & NAV === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  padding: 1.25rem 0;
}

.header.transparent {
  background: linear-gradient(180deg, rgba(20,8,2,0.5), transparent);
}

.header.scrolled {
  background: var(--brown-dark);
  padding: 0.7rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

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

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  font-size: 0.85rem;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--brown-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.25rem;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.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;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/citrouilles.jpg'); /* fallback navigateurs anciens */
  background-image: image-set(
    url('../assets/citrouilles.webp') type('image/webp'),
    url('../assets/citrouilles.jpg') type('image/jpeg')
  );
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

/* Voile renforcé : le texte reste lisible sur mobile comme sur desktop */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 25% 85%, rgba(20, 8, 2, 0.68) 0%, rgba(20, 8, 2, 0.28) 55%, rgba(20, 8, 2, 0.1) 100%),
    linear-gradient(180deg, rgba(20, 8, 2, 0.5) 0%, rgba(20, 8, 2, 0.22) 32%, rgba(20, 8, 2, 0.55) 75%, rgba(20, 8, 2, 0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 7rem 0 4.5rem;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3rem;
}

.hero-text {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 0.98;
  text-shadow: 0 3px 24px rgba(20, 8, 2, 0.55);
}

.hero-title-line1 {
  display: block;
  font-size: clamp(2.9rem, 8vw, 7rem);
  color: var(--white);
}

.hero-title-line2 {
  display: block;
  font-size: clamp(2.4rem, 6.8vw, 6rem);
  color: var(--gold);
}

.hero-title-line3 {
  display: block;
  font-size: clamp(1.4rem, 3.6vw, 2.8rem);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  margin-top: 0.35rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(20, 8, 2, 0.5);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.hero-info-pill {
  background: rgba(30, 12, 4, 0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 210px;
}

.hero-info-pill i {
  color: var(--gold);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.hero-info-pill-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.1rem;
}

.hero-info-pill-text span {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Feuilles d'automne qui tombent dans le héros */
.hero-leaf {
  position: absolute;
  top: -50px;
  z-index: 2;
  width: 26px;
  height: 26px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 C5 8 3 14 12 23 C21 14 19 8 12 1 Z' fill='%23E8751A'/%3E%3Cline x1='12' y1='6' x2='12' y2='20' stroke='%23C85E10' stroke-width='1.4'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0;
  animation: leaf-fall 11s linear infinite;
}

.hero-leaf:nth-child(2n) {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 C5 8 3 14 12 23 C21 14 19 8 12 1 Z' fill='%23F5B930'/%3E%3Cline x1='12' y1='6' x2='12' y2='20' stroke='%23C88E10' stroke-width='1.4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hero-leaf:nth-child(1) { left: 8%;  animation-duration: 12s; animation-delay: 0s;   width: 22px; }
.hero-leaf:nth-child(2) { left: 22%; animation-duration: 14s; animation-delay: 3.5s; width: 28px; }
.hero-leaf:nth-child(3) { left: 38%; animation-duration: 10s; animation-delay: 6s;   width: 20px; }
.hero-leaf:nth-child(4) { left: 55%; animation-duration: 13s; animation-delay: 1.5s; width: 26px; }
.hero-leaf:nth-child(5) { left: 70%; animation-duration: 11s; animation-delay: 8s;   width: 22px; }
.hero-leaf:nth-child(6) { left: 84%; animation-duration: 15s; animation-delay: 4.5s; width: 30px; }
.hero-leaf:nth-child(7) { left: 93%; animation-duration: 12s; animation-delay: 10s;  width: 20px; }
.hero-leaf:nth-child(8) { left: 47%; animation-duration: 16s; animation-delay: 12s;  width: 24px; }

@keyframes leaf-fall {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  6%   { opacity: 0.85; }
  25%  { transform: translateY(28vh) translateX(-30px) rotate(120deg); }
  50%  { transform: translateY(55vh) translateX(26px) rotate(250deg); }
  75%  { transform: translateY(82vh) translateX(-22px) rotate(380deg); opacity: 0.8; }
  100% { transform: translateY(112vh) translateX(10px) rotate(480deg); opacity: 0; }
}

/* === BARRE D'INFOS RAPIDES (sous le héros) === */
.quickinfo {
  background: var(--gold);
  position: relative;
  z-index: 3;
}

.quickinfo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.quickinfo-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  color: var(--brown-dark);
  border-right: 1px dashed rgba(46, 21, 8, 0.22);
  transition: background var(--transition);
}

.quickinfo-item:last-child { border-right: none; }

a.quickinfo-item:hover { background: rgba(255, 255, 255, 0.28); }

.quickinfo-item > i {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
}

.quickinfo-item strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.62;
}

.quickinfo-item span {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
}

/* === CTA STICKY MOBILE === */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  background: var(--brown-dark);
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.3);
}

.mobile-cta .btn {
  flex: 1;
  justify-content: center;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}

/* === TICKER === */
.ticker {
  background: var(--green-dark);
  overflow: hidden;
  padding: 0.85rem 0;
  user-select: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 3rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* === SECTION VIDÉO === */
.video-section {
  background: var(--brown-dark);
  padding: 6.5rem 0 5rem;
}

.video-embed {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.video-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.video-embed:hover img {
  transform: scale(1.03);
  opacity: 1;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  padding-left: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.video-embed:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
  color: var(--brown-dark);
}

.video-embed:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed.loaded { cursor: default; }

/* === BANDE PARALLAX + STATS === */
.parallax-band {
  position: relative;
  background-image:
    linear-gradient(rgba(30, 10, 0, 0.66), rgba(30, 10, 0, 0.66)),
    url('../assets/citrouilles.jpg'); /* fallback navigateurs anciens */
  background-image:
    linear-gradient(rgba(30, 10, 0, 0.66), rgba(30, 10, 0, 0.66)),
    image-set(
      url('../assets/citrouilles.webp') type('image/webp'),
      url('../assets/citrouilles.jpg') type('image/jpeg')
    );
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5.5rem 0;
}

.stats-bar {
  background: var(--brown-dark);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.14);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--gold);
  display: block;
}

.stat-plus {
  font-size: 0.6em;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

/* === DIVIDER ORGANIQUE === */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* === SECTION EXPÉRIENCE === */
.experience-section {
  background: var(--cream);
  padding: 7rem 0;
  overflow: hidden;
}

.experience-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 5rem;
  align-items: center;
}

.experience-image-wrap {
  position: relative;
}

.experience-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.experience-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

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

.exp-floating-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--brown-dark);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  line-height: 1.25;
  transform: rotate(-3deg);
}

.exp-floating-badge strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}

.exp-floating-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.experience-content h2 {
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}

.experience-content > p {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.exp-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.exp-feature {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--cream-dark);
  transition: background var(--transition), transform var(--transition);
}

.exp-feature:hover {
  background: var(--orange-pale);
  transform: translateX(4px);
}

.exp-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.exp-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.exp-feature-text p {
  font-size: 0.86rem;
  color: var(--text-medium);
}

/* === ACTIVITÉS === */
.activities-section {
  background: var(--cream-dark);
  padding: 7rem 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.act-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.act-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}

.act-card:hover .act-icon-wrap {
  animation: wiggle 0.5s ease;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  60% { transform: rotate(7deg); }
}

.act-number {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: block;
}

.act-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.act-card--orange .act-icon-wrap { background: var(--orange-pale); color: var(--orange); }
.act-card--green .act-icon-wrap  { background: #D6EBC2; color: var(--green); }
.act-card--brown .act-icon-wrap  { background: #F0E0D0; color: var(--brown); }
.act-card--gold .act-icon-wrap   { background: #FFF0C0; color: #C98A00; }

.act-card h3 {
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.act-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.act-tag-included {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-top: 1rem;
}

/* === PRODUITS SECTION === */
.products-section {
  background: var(--cream);
  padding: 7rem 0;
}

.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.prod-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.prod-visual {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Photos de produits détourées sur fond blanc : on les montre en entier */
.prod-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.45s ease;
}

.prod-card:hover .prod-visual img,
.product-card-full:hover .prod-visual img {
  transform: rotate(-2deg) scale(1.08);
}

.prod-body {
  padding: 1.35rem;
}

.prod-body h3 {
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin-bottom: 0.35rem;
}

.prod-body p {
  font-size: 0.87rem;
  color: var(--text-medium);
  line-height: 1.55;
}

/* === AVIS / TÉMOIGNAGES === */
.reviews-section {
  background: var(--cream-dark);
  padding: 7rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--orange-pale);
}

.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  display: flex;
  gap: 0.2rem;
}

.review-card blockquote {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.65;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.92rem;
}

.review-author div span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.reviews-badge i { color: var(--gold); }

/* === GALERIE APERÇU === */
.gallery-section {
  background: var(--brown-dark);
  padding: 7rem 0;
}

.gallery-section .section-tag {
  background: rgba(245,185,48,0.15);
  color: var(--gold);
}

.gallery-section h2 {
  color: var(--white);
}

.gallery-grid-preview {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 0.75rem;
  margin-top: 3rem;
}

.g-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
  background: var(--cream);
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.g-item:hover img {
  transform: scale(1.07);
}

.g-item--tall {
  grid-row: 1 / 3;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,8,2,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s;
}

.g-item:hover .g-overlay {
  background: rgba(20,8,2,0.4);
  opacity: 1;
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* === FAQ === */
.faq-section {
  background: var(--cream);
  padding: 7rem 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.faq-intro h2 {
  margin-bottom: 1rem;
}

.faq-intro p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--orange);
}

.faq-question {
  padding: 1.15rem 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text-dark);
  gap: 1rem;
  user-select: none;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--orange); }

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-question-icon {
  color: var(--orange);
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 1.35rem 1.15rem;
  color: var(--text-medium);
  font-size: 0.93rem;
  line-height: 1.7;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}

/* === CTA FINAL === */
.cta-section {
  background: var(--orange);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='25'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
}

.cta-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* === PAGE HÉROS INTERNE === */
.page-hero {
  background: linear-gradient(160deg, var(--brown-dark) 0%, #5C2E12 60%, var(--brown) 100%);
  color: var(--white);
  padding: 9rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='25'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero > .container { position: relative; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 580px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  justify-content: center;
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); font-weight: 700; }

/* === FOOTER === */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.3fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 50px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.75rem;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: 0.7rem; color: var(--orange); }

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--gold); }

/* === PAGE PRODUITS === */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card-full .prod-visual { height: 200px; }
.product-card-full .product-body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}

.product-body p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.55;
}

.product-recipe { margin-top: auto; padding-top: 0.75rem; }

.recipe-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
  transition: color var(--transition);
  width: 100%;
}

.recipe-toggle:hover { color: var(--brown); }

.recipe-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.recipe-content.open { max-height: 2400px; }

.recipe-content h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin: 1rem 0 0.4rem;
}

.recipe-content ul {
  list-style: disc;
  margin: 0 0 0 1.2rem;
  color: var(--text-medium);
  font-size: 0.85rem;
  line-height: 1.6;
}

.recipe-content ol {
  list-style: decimal;
  margin: 0 0 0 1.2rem;
  color: var(--text-medium);
  font-size: 0.87rem;
  line-height: 1.65;
}

.recipe-content ol li { margin-bottom: 0.4rem; }

.recipe-meta {
  margin-top: 0.9rem;
  padding: 0.6rem 0.8rem;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown);
}

.recipe-meta i { color: var(--orange); margin-right: 0.35rem; }

/* Badge produit vedette */
.prod-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transform: rotate(2deg);
}

/* === PAGE ACTIVITÉS === */
.activity-big-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  margin-bottom: 2rem;
}

.activity-big-card:nth-child(even) { direction: rtl; }
.activity-big-card:nth-child(even) > * { direction: ltr; }

.activity-big-img {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.activity-big-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activity-big-card:hover .activity-big-img img {
  transform: scale(1.05);
}

.activity-big-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.activity-big-content h3 {
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
}

.activity-big-content p {
  color: var(--text-medium);
  font-size: 0.97rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.activity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

/* === PAGE GALERIE === */
.gallery-masonry {
  columns: 3;
  column-gap: 0.9rem;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 0.9rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--cream-dark);
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.gallery-masonry-item:hover img { transform: scale(1.04); }

.gallery-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: var(--cream);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }

/* === PAGE CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-detail i {
  color: var(--orange);
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-detail a:hover { color: var(--orange); }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1rem;
  font-size: 0.9rem;
}

.hours-day { color: var(--text-medium); }
.hours-time { font-weight: 700; color: var(--text-dark); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* Bloc « Nous trouver » : coordonnées à gauche, carte à droite */
.contact-find {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-find .contact-info-card,
.contact-find .contact-map { margin-bottom: 0; }

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

/* Rangée de cartes égales (horaires, kiosque, frais) */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.contact-cards .contact-info-card { margin-bottom: 0; height: 100%; }

/* Carte mise en évidence : le kiosque gratuit */
.contact-info-card--free {
  background: linear-gradient(150deg, #F3F9EB 0%, #E7F2D9 100%);
  box-shadow: var(--shadow-md);
}

.contact-info-card--free h3 { color: var(--green); }

/* Tableau des frais */
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.fee-row:last-of-type { border-bottom: none; }

.fee-row-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.93rem;
}

.fee-row-label i { width: 16px; text-align: center; color: var(--orange); }
.fee-row--free .fee-row-label i { color: var(--green); }

.fee-row-value { font-weight: 800; color: var(--orange); white-space: nowrap; }
.fee-row--free .fee-row-value { color: var(--green); }

/* Petite note en bas de carte */
.card-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--cream);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.83rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.card-note i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

/* Tuiles « Bon à savoir » */
.info-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.info-tile {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.info-tile-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.info-tile h3 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.info-tile p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* === PAGES RECETTES === */
.recipe-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-size: 0.83rem;
  font-weight: 700;
  transition: color var(--transition);
  width: 100%;
}

.recipe-link:hover { color: var(--brown); }

.recipe-link-arrow {
  margin-left: auto;
  transition: transform var(--transition);
}

.recipe-link:hover .recipe-link-arrow { transform: translateX(4px); }

.recipe-page { padding-top: 3.5rem; }

.recipe-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.recipe-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.2rem;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.recipe-chip i { color: var(--orange); }

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 2.5rem;
  align-items: start;
}

.recipe-photo {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.recipe-photo img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.recipe-product-card {
  background: var(--orange-pale);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.recipe-product-card h3 {
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}

.recipe-product-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.recipe-print { width: 100%; justify-content: center; }

.recipe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.recipe-card h2 {
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}

.ing-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin: 1.25rem 0 0.4rem;
}

.ing-list li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--cream-dark);
  font-size: 0.95rem;
  color: var(--text-medium);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.ing-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.ing-list li:last-child { border-bottom: none; }

.steps-list {
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.5rem 3.4rem;
  font-size: 0.97rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.steps-list li:last-child { padding-bottom: 0; }

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 46px;
  bottom: 4px;
  width: 2px;
  background: var(--cream-dark);
}

.recipe-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.recipe-back:hover { color: var(--brown); }

/* === KIOSQUE DE LÉGUMES (mise en évidence) === */
.kiosk-section {
  background: var(--cream);
  padding: 4.5rem 0 0;
}

.kiosk-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
  padding: 4.5rem 2.5rem;
}

/* Photo de fond floutée : légèrement agrandie pour éviter les bords délavés. */
.kiosk-bg {
  position: absolute;
  inset: -40px;
  z-index: -2;
  background-image: url('../assets/TableCitrouilles.webp');
  background-size: cover;
  background-position: center;
  filter: blur(7px) saturate(1.15);
  transform: scale(1.04);
}

.kiosk-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(150deg, rgba(42, 61, 24, 0.82) 0%, rgba(46, 21, 8, 0.76) 100%);
}

.kiosk-price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--gold);
  color: var(--brown-dark);
  border-radius: var(--radius-full);
  padding: 0.9rem 2.1rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.kiosk-price strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.kiosk-price span {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-top: 0.2rem;
}

.kiosk-card h2 {
  color: var(--white);
  max-width: 17ch;
  margin: 0 auto 0.9rem;
}

.kiosk-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 56ch;
  margin: 0 auto;
}

.kiosk-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 60ch;
  margin-top: 2rem;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  text-align: left;
}

.kiosk-note i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.kiosk-card .btn { margin-top: 2rem; }

/* Mise en évidence dans la barre d'infos rapides */
.quickinfo-item--free {
  background: var(--green);
  color: var(--white);
  border-right-color: rgba(255, 255, 255, 0.25);
}

.quickinfo-item--free > i { color: var(--gold); }
.quickinfo-item--free strong { opacity: 0.75; }

/* Note « horaire variable » sur une carte d'activité */
.act-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brown);
  background: #FFF0C0;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  line-height: 1.45;
  text-align: left;
}

.act-note i { color: #C98A00; margin-top: 2px; flex-shrink: 0; }

.activity-tag--note {
  background: var(--gold);
  color: var(--brown-dark);
}

/* Encadré « aucun frais » (FAQ et page contact) */
.free-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  background: #E7F2D9;
  color: var(--green-dark);
  font-size: 0.92rem;
  line-height: 1.6;
}

.free-callout i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.free-callout strong { font-weight: 800; }

/* Impression d'une recette */
@media print {
  .header, .footer, .cta-section, .mobile-cta, .ticker,
  .recipe-print, .recipe-product-card, .recipe-back, .breadcrumb { display: none !important; }
  body::after { display: none; }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .recipe-grid { grid-template-columns: 1fr; }
  .page-hero { background: none; color: var(--text-dark); padding: 1rem 0; }
  .page-hero h1, .page-hero p { color: var(--text-dark); }
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* === ACCESSIBILITÉ : MOUVEMENT RÉDUIT === */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-leaf { display: none; }
  .ticker-track { animation: none; flex-wrap: wrap; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-bg { transition: none; }
  .parallax-band { background-attachment: scroll; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .activities-grid,
  .products-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .experience-grid { gap: 3rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid .review-card:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }

  /* Barre d'infos rapides : en grille plutôt qu'en défilement horizontal, pour
     que les cinq réponses restent visibles d'un seul coup d'oeil.
     Le gap de 1px laisse voir le fond du conteneur : ce sont les séparateurs. */
  .quickinfo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(46, 21, 8, 0.18);
  }
  .quickinfo-item,
  a.quickinfo-item:hover { background: var(--gold); }
  .quickinfo-item--free,
  a.quickinfo-item--free:hover { background: var(--green); }
  .quickinfo-item { border-right: none; }
  /* La dernière tuile comble les cases restantes de la rangée. */
  .quickinfo-item:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--brown-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; padding: 0.5rem 1rem; }
  .nav-toggle { display: flex; }

  .hero { min-height: 88svh; }
  .hero-content { padding: 6.5rem 0 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { display: none; }

  .hero-title-line1 { font-size: clamp(2.6rem, 12vw, 4.5rem); }
  .hero-title-line2 { font-size: clamp(2.2rem, 10vw, 3.8rem); }

  .mobile-cta { display: flex; }
  body { padding-bottom: 68px; }

  .parallax-band { background-attachment: scroll; }

  .experience-grid { grid-template-columns: 1fr; }
  .experience-image img { height: 320px; }
  .exp-floating-badge { left: 0; }

  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .products-row { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:last-child { grid-column: auto; }

  .gallery-grid-preview {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-item--tall { grid-column: 1 / -1; grid-row: auto; min-height: 240px; }

  .gallery-masonry { columns: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-find { grid-template-columns: 1fr; }
  .contact-find .contact-map iframe { min-height: 300px; }

  .recipe-grid { grid-template-columns: 1fr; }

  .activity-big-card { grid-template-columns: 1fr; direction: ltr; }
  .activity-big-card:nth-child(even) { direction: ltr; }
  .activity-big-img { min-height: 210px; }

  .kiosk-card { padding: 3rem 1.5rem; }
  .kiosk-price { padding: 0.75rem 1.6rem; }
  .kiosk-price strong { font-size: 2.1rem; }
  .kiosk-lead { font-size: 0.98rem; }
  .kiosk-note { border-radius: var(--radius-md); }
  /* Le libellé du bouton est long : il doit pouvoir se replier sur étroit. */
  .kiosk-card .btn {
    white-space: normal;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .lightbox-prev { left: -1.8rem; }
  .lightbox-next { right: -1.8rem; }
}

@media (max-width: 640px) {
  /* Sur mobile, on ne garde que les trois réponses urgentes : où, quand,
     et le kiosque gratuit. « Pour les enfants » et « Combien de temps »
     sont développés plus bas (activités et FAQ) : les répéter ici alourdit
     le haut de page sans rien apprendre de plus. */
  .quickinfo-grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
  }
  .quickinfo-item--optional { display: none; }
  .quickinfo-item:last-child { grid-column: auto; }
  .quickinfo-item {
    gap: 0.8rem;
    padding: 0.85rem 1.25rem;
    border-right: none;
    border-bottom: 1px dashed rgba(46, 21, 8, 0.2);
  }
  .quickinfo-item--free { border-bottom: none; }
  .quickinfo-item > i { font-size: 1.1rem; width: 20px; }
  .quickinfo-item strong { font-size: 0.63rem; letter-spacing: 0.07em; }
  .quickinfo-item span { font-size: 0.88rem; }
}

@media (max-width: 540px) {
  .section { padding: 4rem 0; }
  .activities-grid,
  .products-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
}
