/* ===================================
   Guillaume Jublot 2026 — Design System
   =================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&display=swap');

/* --- CSS Variables --- */
:root {
  /* Colors — Marine & Terracotta */
  --navy: #192B40;
  --navy-light: #233B55;
  --navy-dark: #0F1C2D;
  --gold: #BE7154;
  --gold-light: #D4917A;
  --gold-dark: #A85D42;
  --white: #FFFFFF;
  --off-white: #F7F4F2;
  --light-gray: #E8E4E1;
  --medium-gray: #9A9590;
  --text-dark: #1A1A1A;
  --text-body: #3D3D3D;
  --text-muted: #6B6B6B;

  /* Typography — Lato & Helvetica Neue */
  --font-heading: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --header-height: 80px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(25, 43, 64, 0.06);
  --shadow-md: 0 4px 20px rgba(25, 43, 64, 0.10);
  --shadow-lg: 0 8px 40px rgba(25, 43, 64, 0.15);
  --shadow-xl: 0 16px 64px rgba(25, 43, 64, 0.20);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-gold {
  color: var(--gold);
}

.text-navy {
  color: var(--navy);
}

.text-white {
  color: var(--white);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--navy {
  background-color: var(--off-white);
  color: var(--text-body);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--navy);
}

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

.section--gradient {
  background: var(--off-white);
  color: var(--text-body);
}

.section--gradient h2,
.section--gradient h3 {
  color: var(--navy);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-md);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.header--transparent {
  background-color: transparent;
}

.header--solid {
  background-color: rgba(25, 43, 64, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.header__logo-subtitle {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(190, 113, 84, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger--open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger--open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  overflow: hidden;
  padding-top: calc(var(--header-height) + 48px);
}

.hero__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--gold) 1px, transparent 1px);
  pointer-events: none;
  background-size: 60px 60px, 80px 80px, 70px 70px;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.hero__glow--1 {
  background: var(--gold);
  top: -200px;
  right: -100px;
}

.hero__glow--2 {
  background: #2563eb;
  bottom: -200px;
  left: -200px;
  opacity: 0.08;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: fadeInUp 1s ease 0.3s both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero__eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero__image-frame {
  position: relative;
  width: 400px;
  max-width: 100%;
}

.hero__image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(190, 113, 84, 0.3);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero__image-badge {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: rgba(25, 43, 64, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(190, 113, 84, 0.3);
  box-shadow: var(--shadow-lg);
}

.hero__image-badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hero__image-badge-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(190, 113, 84, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn__arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.section--navy .section-header__desc,
.section--gradient .section-header__desc {
  color: var(--text-muted);
}

/* --- Value Cards --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

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

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(190, 113, 84, 0.15), rgba(212, 145, 122, 0.2));
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.value-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Pacte de Confiance --- */
.pacte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pacte-item {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
}

.pacte-item__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(190, 113, 84, 0.4);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  font-size: 1.8rem;
  transition: all var(--transition-base);
}

.pacte-item:hover .pacte-item__icon {
  background: rgba(190, 113, 84, 0.15);
  border-color: var(--gold);
  transform: scale(1.1);
}

.pacte-item__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.pacte-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg);
  border-top: 1px solid rgba(190, 113, 84, 0.2);
  border-bottom: 1px solid rgba(190, 113, 84, 0.2);
}

.pacte-quote__text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.pacte-quote__author {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

/* --- Priorities / Features --- */
.priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.priority-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-base);
}

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

.priority-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.priority-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.priority-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Candidat Page --- */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.bio-image-wrapper {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.bio-image {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.bio-content h2 {
  margin-bottom: var(--space-md);
}

.bio-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.bio-content ul {
  margin-bottom: var(--space-md);
}

.bio-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.bio-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.bio-signature {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--light-gray);
}

.bio-signature__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
}

.bio-signature__role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Campaign / Video --- */
.video-section {
  text-align: center;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.campaign-photo {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* --- Voter / Timeline --- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
}

.timeline__item {
  position: relative;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.timeline__text {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.timeline__text a {
  color: var(--gold-dark);
  text-decoration: underline;
  font-weight: 500;
}

.timeline__text a:hover {
  color: var(--gold);
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.contact-info__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form__input,
.form__textarea {
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(190, 113, 84, 0.15);
}

.form__textarea {
  min-height: 160px;
  resize: vertical;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__links {
  display: flex;
  gap: var(--space-md);
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__social {
  text-align: center;
  margin-top: var(--space-md);
}

.footer__facebook-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.8rem;
  background: #1877F2;
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.footer__facebook-btn:hover {
  background: #166FE5;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.footer__bottom {
  text-align: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

/* --- Page Header (Sub-pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(190, 113, 84, 0.08) 0%, transparent 70%);
}

.page-header__title {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-top: var(--space-sm);
  position: relative;
  z-index: 1;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner__text {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--space-md);
  opacity: 0.85;
}

.cta-banner .btn--primary:hover {
  box-shadow: 0 8px 25px rgba(190, 113, 84, 0.4);
}

/* --- Photo Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.gallery-grid__item {
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 43, 64, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-grid__item:hover::after {
  opacity: 1;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
}

/* Large items spanning 2 cols/rows */
.gallery-grid__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

/* --- Programme Section --- */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.programme-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--gold);
  transition: all var(--transition-base);
}

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

.programme-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.programme-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.programme-card__text {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
}

.programme-card__text ul {
  margin-top: 0.5rem;
}

.programme-card__text ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.programme-card__text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* --- Parcours Timeline (CV) --- */
.parcours-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.parcours-block__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.parcours-list {
  position: relative;
  padding-left: 20px;
}

.parcours-list::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
}

.parcours-list__item {
  position: relative;
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
}

.parcours-list__item::before {
  content: '';
  position: absolute;
  left: -19px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.parcours-list__item strong {
  color: var(--navy);
  display: block;
  font-size: 0.95rem;
}

.parcours-list__item span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .parcours-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid__item--large {
    grid-column: span 1;
    grid-row: span 1;
  }

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

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image-wrapper {
    order: -1;
  }

  .hero__image-frame {
    width: 300px;
  }

  .hero__image-badge {
    left: 0;
    bottom: 20px;
  }

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

  .pacte-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

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

  .bio-section {
    grid-template-columns: 1fr;
  }

  .bio-image-wrapper {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
  }

  .nav--open {
    right: 0;
  }

  .nav__link {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 44px + var(--space-lg));
    padding-bottom: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* --- Ticker Bandeau --- */
.ticker {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--gold);
  color: var(--white);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}

.ticker__inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  gap: 2rem;
}

.ticker__item {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ticker__separator {
  font-size: 0.7rem;
  opacity: 0.6;
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* --- Event Card --- */
.event-card {
  display: flex;
  gap: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  border-left: 5px solid var(--gold);
  padding: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
  align-items: start;
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  min-width: 80px;
  flex-shrink: 0;
}

.event-card__day {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.event-card__month {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.event-card__year {
  font-size: 0.7rem;
  opacity: 0.6;
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.event-card__details {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  color: var(--text-body);
}

.event-card__details p {
  margin-bottom: 0.3rem;
}

.event-card__guests {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
    align-items: stretch;
  }

  .event-card__date {
    flex-direction: row;
    gap: var(--space-xs);
    min-width: auto;
    padding: var(--space-xs) var(--space-sm);
  }

  .event-card__day {
    font-size: 1.5rem;
  }

  .ticker {
    height: 36px;
  }

  .ticker__item {
    font-size: 0.78rem;
  }
}

/* --- Nav overlay --- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay--visible {
  display: block;
}

/* --- Video Grid --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.video-card__wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-sm);
  background: var(--navy-dark);
}

.video-card__wrapper video {
  width: 100%;
  aspect-ratio: 1080 / 1874;
  max-height: 700px;
  object-fit: contain;
  display: block;
  background: #000;
}

.video-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  text-align: center;
}

/* --- Article Card (Actualités) --- */
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.article-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
}

.article-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  min-width: 70px;
  flex-shrink: 0;
}

.article-card__day {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.article-card__month {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.article-card__year {
  font-size: 0.65rem;
  opacity: 0.6;
}

.article-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
}

.article-card__video {
  width: 100%;
  background: var(--navy-dark);
}

.article-card__video video {
  width: 100%;
  display: block;
}

.article-card__body {
  padding: var(--space-lg);
}

.article-card__body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* --- Press Contact --- */
.press-contact {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px solid var(--light-gray);
}

.press-contact__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: var(--space-sm);
  text-transform: none;
  letter-spacing: -0.01em;
}

.press-contact__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.press-contact__detail {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.press-contact__detail a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.press-contact__detail a:hover {
  color: var(--gold);
}

/* --- Download Callout --- */
.download-callout {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  border-left: 5px solid var(--gold);
  max-width: 800px;
  margin: 0 auto;
}

.download-callout__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.download-callout__content {
  flex: 1;
}

.download-callout__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.download-callout__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Actualités Grid (Vignettes) --- */
.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.actu-thumb {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.actu-thumb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.actu-thumb__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-dark);
  position: relative;
}

.actu-thumb__image img,
.actu-thumb__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.actu-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(25, 43, 64, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.actu-thumb__play svg {
  fill: var(--white);
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.actu-thumb__content {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.actu-thumb__date {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.actu-thumb__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: var(--space-xs);
}

.actu-thumb__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.actu-thumb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: var(--space-sm);
  transition: gap var(--transition-fast);
}

.actu-thumb:hover .actu-thumb__link {
  gap: 0.6rem;
}

/* --- Article Page (pages dédiées) --- */
.article-page {
  max-width: 800px;
  margin: 0 auto;
}

.article-page__video {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-dark);
  margin-bottom: var(--space-lg);
}

.article-page__video video {
  width: 100%;
  aspect-ratio: 1080 / 1874;
  max-height: 800px;
  object-fit: contain;
  display: block;
  background: #000;
}

.article-page__content {
  margin-bottom: var(--space-xl);
}

.article-page__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.article-page__back {
  text-align: center;
}

/* --- CTA Actions --- */
.cta-banner__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsive additions --- */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .download-callout {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }

  .article-card__header {
    flex-direction: column;
    text-align: center;
  }

  .article-card__date {
    flex-direction: row;
    gap: var(--space-xs);
    min-width: auto;
    padding: var(--space-xs) var(--space-sm);
  }

  .article-card__day {
    font-size: 1.5rem;
  }

  .actu-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .article-page__video video {
    max-height: 500px;
  }

  .video-card__wrapper video {
    max-height: 450px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .actu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* --- Colistiers Grid --- */
.colistiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl) var(--space-md);
  margin-bottom: var(--space-3xl);
}

.colistier-card {
  text-align: center;
}

.colistier-image-wrapper {
  width: 200px;
  height: 260px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-md);
  border: 4px solid var(--gold); /* Terracotta R190 V113 B84 is #BE7154, which is var(--gold) */
  padding: 5px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.colistier-card:hover .colistier-image-wrapper {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.colistier-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 5px);
}

.colistier-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Missing Photos Section */
.missing-colistiers {
  text-align: center;
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--light-gray);
}

.missing-colistiers__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--navy);
}

.missing-colistiers__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.missing-colistiers__list .bullet {
  color: var(--gold);
}

/* Responsiveness for the grid */
@media (max-width: 992px) {
  .colistiers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .colistiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .colistier-image-wrapper {
    width: 160px;
    height: 208px;
  }
}

@media (max-width: 480px) {
  .colistiers-grid {
    gap: var(--space-lg) var(--space-sm);
  }
  .colistier-image-wrapper {
    width: 140px;
    height: 182px;
  }
  .colistier-name {
    font-size: 0.9rem;
  }
}
