/* ============================================
   ENTREPRENEURS LYON — Style Principal
   Palette : Navy / Or / Blanc cassé
   Typos : Playfair Display + DM Sans
   ============================================ */

:root {
  --navy: #0A1628;
  --navy-light: #111D32;
  --navy-mid: #162440;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dark: #A8893D;
  --cream: #F5F0E8;
  --cream-dim: rgba(245, 240, 232, 0.7);
  --cream-faint: rgba(245, 240, 232, 0.5);
  --white: #FFFFFF;
  --text-primary: var(--cream);
  --text-secondary: var(--cream-dim);
  --border-color: rgba(201, 168, 76, 0.15);
  --border-gold: rgba(201, 168, 76, 0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-height); }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: var(--cream); }

/* ---- UTILITIES ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
}
.section-header { margin-bottom: 56px; }
.gold-accent { color: var(--gold); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.badge svg { width: 14px; height: 14px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn svg { width: 18px; height: 18px; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition-base);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .city { color: var(--gold); }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  color: var(--cream-dim);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.nav-desktop a:hover { color: var(--cream); }
.nav-desktop a:hover::after { width: 100%; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.85rem; }

/* Mobile nav */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition-base);
  border-radius: 2px;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

/* ---- HERO ---- */
.hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero .badge { margin-bottom: 32px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ---- TICKER ---- */
.ticker {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-faint);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- CONCEPT CARDS ---- */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.concept-card {
  background: var(--navy-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.concept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.concept-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.concept-card:hover::before { opacity: 1; }
.concept-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.concept-icon svg { width: 24px; height: 24px; }
.concept-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.concept-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- RESOURCE CARDS ---- */
.resource-card {
  background: var(--navy-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.resource-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  color: inherit;
}
.resource-card:hover::before { opacity: 1; }
.resource-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.resource-icon svg { width: 24px; height: 24px; }
.resource-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201,168,76,0.1);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  width: fit-content;
}
.resource-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.resource-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}
.resource-link {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 16px;
  transition: color var(--transition-fast);
}
.resource-card:hover .resource-link { color: var(--gold-light); }

/* ---- GABRIEL BLOCK ---- */
.gabriel-section { background: var(--navy-light); }
.gabriel-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.gabriel-photo {
  width: 280px;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  position: relative;
}
.gabriel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gabriel-info h2 { margin-bottom: 8px; }
.gabriel-role {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.gabriel-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.gabriel-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- EVENTS ---- */
.events-tabs {
  display: flex;
  gap: 4px;
  background: var(--navy-light);
  border-radius: var(--radius-sm);
  padding: 4px;
  width: fit-content;
  margin-bottom: 36px;
}
.events-tab {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.events-tab.active {
  background: var(--gold);
  color: var(--navy);
}
.events-tab:hover:not(.active) { color: var(--cream); }
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  background: var(--navy-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color var(--transition-base);
}
.event-card:hover { border-color: var(--border-gold); }
.event-date-block {
  text-align: center;
  padding: 12px 16px;
  background: rgba(201,168,76,0.08);
  border-radius: var(--radius-sm);
  min-width: 72px;
}
.event-date-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.event-date-month {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-top: 4px;
}
.event-info h3 { font-size: 1.1rem; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.event-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.event-meta span { display: flex; align-items: center; gap: 6px; }
.event-meta svg { width: 14px; height: 14px; color: var(--gold); }
.events-empty {
  text-align: center;
  padding: 48px;
  color: var(--text-secondary);
  background: var(--navy-light);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-color);
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--navy-light);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.4), transparent);
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  color: var(--cream);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.lightbox-close:hover { background: rgba(201,168,76,0.3); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  color: var(--cream);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.lightbox-nav:hover { background: rgba(201,168,76,0.3); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---- VILLE SECTION ---- */
.ville-section { background: var(--navy-light); }
.ville-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ville-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.ville-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ville-stat-card {
  background: var(--navy);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: border-color var(--transition-base);
}
.ville-stat-card:hover { border-color: var(--border-gold); }
.ville-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}
.ville-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ---- TOOLS PREVIEW ---- */
.tools-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.tool-card {
  background: var(--navy-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.tool-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.tool-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.tool-card-header h3 {
  font-size: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.tool-category {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.tool-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.tool-card .btn { align-self: flex-start; }

/* ---- NEWSLETTER ---- */
.newsletter-section {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.newsletter-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  background: var(--navy-light);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-form input::placeholder { color: var(--cream-faint); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-msg {
  margin-top: 12px;
  font-size: 0.88rem;
  min-height: 24px;
}
.newsletter-msg.success { color: #4ade80; }
.newsletter-msg.error { color: #f87171; }
.newsletter-consent {
  font-size: 0.78rem;
  color: var(--cream-faint);
  margin-top: 12px;
}

/* ---- EMAILCOPY FORM ---- */
.ec-form-wrap {
  position: relative;
  max-width: 440px;
  margin: 28px auto 0;
}
.ec-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ec-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: var(--navy-light);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
  box-sizing: border-box;
}
.ec-input::placeholder { color: var(--cream-faint); }
.ec-input:focus { border-color: var(--gold); }
.ec-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--cream-faint);
  cursor: pointer;
  line-height: 1.5;
}
.ec-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.ec-submit {
  width: 100%;
  justify-content: center;
}
.ec-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}
.ec-msg {
  display: none;
  text-align: center;
  font-size: 0.88rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
}
.ec-msg-success {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.ec-msg-error {
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.2);
}

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-color);
}
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 500;
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  font-size: 1.1rem;
  color: var(--gold);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---- CTA SECTION ---- */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-light);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--cream-faint);
}
.footer-promos {
  display: flex;
  gap: 20px;
}
.footer-promo {
  font-size: 0.82rem;
  color: var(--cream-faint);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-promo:hover { color: var(--gold); }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- BLOG PAGE ---- */
.page-header {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 40px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { color: var(--cream-faint); }
.article-card {
  background: var(--navy-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  margin-bottom: 32px;
}
.article-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.article-content {
  padding: 32px;
}
.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,168,76,0.1);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.article-content h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.article-content h2 a { color: var(--cream); }
.article-content h2 a:hover { color: var(--gold); }
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--cream-faint);
  margin-bottom: 16px;
}
.article-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}
.article-body p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-left: 24px;
}
.article-body li {
  margin-bottom: 8px;
  line-height: 1.7;
  list-style: disc;
}
.article-body a { text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--cream);
  font-style: italic;
}

/* ---- TOOLS PAGE ---- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.tool-full-card {
  background: var(--navy-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}
.tool-full-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.tool-full-header {
  padding: 32px 32px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tool-full-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.tool-full-header h3 {
  font-size: 1.3rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.tool-full-badge {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.tool-full-body {
  padding: 20px 32px 32px;
}
.tool-full-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.tool-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tool-feature-tag {
  padding: 4px 12px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.tool-full-card .btn { width: 100%; justify-content: center; }

/* ---- A PROPOS ---- */
.about-content {
  max-width: 760px;
  margin: 0 auto;
}
.about-content p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-content h2 {
  margin: 40px 0 16px;
}

/* ---- ANNUAIRE ---- */
.annuaire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.annuaire-card {
  background: var(--navy-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}
.annuaire-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.annuaire-card-header {
  padding: 28px 28px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.annuaire-type {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.annuaire-card-body {
  padding: 16px 28px 28px;
}
.annuaire-card-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.annuaire-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.annuaire-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--cream-faint);
}
.annuaire-meta-item svg { color: var(--gold); flex-shrink: 0; }
@media (max-width: 768px) {
  .annuaire-grid { grid-template-columns: 1fr; }
}

/* ---- ADMIN (basique) ---- */
.admin-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 40px) 24px 80px;
}
.admin-login {
  max-width: 400px;
  margin: 120px auto;
  text-align: center;
}
.admin-login input {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  background: var(--navy-light);
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  margin-bottom: 16px;
}
.admin-login input:focus { border-color: var(--gold); }
.admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.admin-tab {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}
.admin-tab.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.admin-form { margin-bottom: 32px; }
.admin-field { margin-bottom: 16px; }
.admin-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--navy);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
  border-color: var(--gold);
}
.admin-field textarea { min-height: 100px; resize: vertical; }
.admin-list { display: flex; flex-direction: column; gap: 12px; }
.admin-item {
  background: var(--navy);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.admin-item-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}
.admin-item-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.admin-item-actions { display: flex; gap: 8px; }
.admin-btn-danger {
  padding: 6px 14px;
  background: rgba(248,113,113,0.15);
  color: #f87171;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background var(--transition-fast);
}
.admin-btn-danger:hover { background: rgba(248,113,113,0.25); }
.admin-btn-edit {
  padding: 6px 14px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background var(--transition-fast);
}
.admin-btn-edit:hover { background: rgba(201,168,76,0.25); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ville-grid { grid-template-columns: 1fr; }
  .gabriel-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .gabriel-links { justify-content: center; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .hero { min-height: 80vh; }
  .hero-stats { gap: 24px; }
  .event-card { grid-template-columns: 1fr; gap: 16px; }
  .event-card .btn { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .tools-grid { grid-template-columns: 1fr; }
  .concept-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .ville-stats { grid-template-columns: 1fr; }
}

/* ============================================
   INTERACTIVE WIDGETS (Quiz, Budget, Scorecard)
   ============================================ */

/* Widget container */
.widget-block {
  margin: 48px 0;
  background: var(--navy-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.widget-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border-color);
}
.widget-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,168,76,0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.widget-header h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.widget-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}
.widget-body {
  padding: 28px 32px 32px;
}

/* Quiz progress bar */
.quiz-progress {
  height: 4px;
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.quiz-step {
  font-size: 0.8rem;
  color: var(--cream-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.quiz-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Quiz options */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  padding: 14px 20px;
  background: var(--navy);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.quiz-option:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateX(4px);
}

/* Quiz result */
.quiz-result {
  text-align: center;
}
.quiz-result-emoji {
  font-size: 3rem;
  margin-bottom: 12px;
}
.quiz-result h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.quiz-result p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 24px;
}
.quiz-result-tools {
  margin: 24px 0;
  text-align: left;
}
.quiz-result-tools-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.quiz-tool-card {
  display: block;
  padding: 16px 20px;
  background: var(--navy);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: all 0.2s ease;
  color: var(--cream);
}
.quiz-tool-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  color: var(--cream);
}
.quiz-tool-card strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 4px;
}
.quiz-tool-card span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.quiz-result-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Scorecard options */
.scorecard-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scorecard-option {
  padding: 14px 20px;
  background: var(--navy);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scorecard-option:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.scorecard-option-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-gold);
  flex-shrink: 0;
  transition: all 0.2s;
}
.scorecard-option:hover .scorecard-option-dot {
  border-color: var(--gold);
  background: rgba(201,168,76,0.3);
}

/* Scorecard result */
.scorecard-result {
  text-align: center;
}
.scorecard-gauge {
  position: relative;
  width: 200px;
  height: 120px;
  margin: 0 auto 8px;
}
.scorecard-svg {
  width: 100%;
  height: 100%;
}
.scorecard-arc {
  animation: scorecard-fill 1.2s ease-out forwards;
}
@keyframes scorecard-fill {
  from { stroke-dasharray: 0 251; }
}
.scorecard-score-display {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.scorecard-score-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.scorecard-score-max {
  font-size: 1rem;
  color: var(--cream-faint);
}
.scorecard-level {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scorecard-advice {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 24px;
}

/* Budget simulator */
.budget-sliders {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.budget-row {}
.budget-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 500;
}
.budget-value {
  color: var(--gold);
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.budget-range {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(201,168,76,0.15);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.budget-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--navy-light);
  box-shadow: 0 0 8px rgba(201,168,76,0.3);
}
.budget-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--navy-light);
  box-shadow: 0 0 8px rgba(201,168,76,0.3);
}
.budget-tier {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--cream-faint);
}
.budget-tier-link {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.budget-total {
  text-align: center;
  padding: 28px;
  background: var(--navy);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.budget-total-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.budget-total-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.budget-total-value span {
  font-size: 1rem;
  color: var(--cream-faint);
  font-family: 'DM Sans', sans-serif;
}
.budget-total-annual {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* Widget responsive */
@media (max-width: 768px) {
  .widget-header { padding: 20px; }
  .widget-body { padding: 20px; }
  .widget-header h3 { font-size: 1.1rem; }
}
