:root {
  --bleu-nuit: #051130;
  --bleu-loup: #04102e;
  --bleu-accent: #1e5aa0;
  --bleu-logo: #2b3290;
  --blanc: #ffffff;
  --creme: #f0f4fa;
  --gris: #8a9ab8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--creme);
  color: var(--bleu-nuit);
  overflow-x: hidden;
}

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

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

main {
  min-height: calc(100vh - 70px);
}

.container {
  width: min(1120px, calc(100% - 120px));
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   NAV — VERSION ORDINATEUR (par défaut)
───────────────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--blanc);
  border-bottom: 1px solid rgba(5, 17, 48, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}

.nav-logo {
  width: auto;
  max-height: 50px;
  object-fit: contain;
}

.nav-logo-txt {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bleu-nuit);
}

.nav-logo-txt span {
  color: var(--bleu-accent);
}

.nav-center {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-center a {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris);
  transition: color 0.2s;
}

.nav-center a:hover,
.nav-center a.active {
  color: var(--bleu-nuit);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-contact {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris);
}

.nav-btn,
.btn-p,
.btn-o {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  background: var(--bleu-nuit);
  color: var(--blanc);
}

.nav-btn:hover,
.btn-p:hover,
.btn-o:hover {
  background: var(--bleu-accent);
}

/* ─────────────────────────────────────────
   NAV — HAMBURGER (caché sur ordinateur)
───────────────────────────────────────── */

/* BURGER - caché sur ordi */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

/* CORRECTION des points parasites */
.hamburger span {
  display: block;        /* <-- CRUCIAL : force block, pas list-item */
  width: 24px;
  height: 2px;
  background: var(--bleu-nuit);
  transition: all 0.3s;
  list-style: none;      /* <-- sécurité supplémentaire */
}

/* Menu mobile - caché sur ordi */
.nav-menu-mobile {
  display: none !important;  /* <-- le !important force le masquage */
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */

.hero {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
  overflow: hidden;
}

.hero-left {
  background: var(--bleu-nuit);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--bleu-accent) 30%,
    var(--bleu-accent) 70%,
    transparent 100%
  );
}

.hero-left-top .label,
.hb-label,
.s-label,
.f-col h4 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-left-top .label {
  color: var(--bleu-accent);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-left-top .label::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--bleu-accent);
}

.hero-title {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  text-transform: uppercase;
  color: var(--blanc);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 40px 0 28px;
}

.hero-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  font-size: 0.55em;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.hero-desc,
.hb-text,
.footer-tagline,
.section p,
.section .subtitle,
.card p,
.form-card p,
.card-body p {
  line-height: 1.7;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 380px;
}

.hero-left-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  gap: 40px;
}

.hero-stat-sm .n {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--blanc);
  display: block;
}

.hero-stat-sm .l {
  font-size: 0.75rem;
  color: var(--gris);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.section .section-actions,
.form-actions,
.media-grid,
.card-grid,
.partners-row,
.footer-links {
  display: flex;
  gap: 16px;
}

.hero-right {
  background: var(--creme);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: "TA28";
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 18vw;
  color: rgba(5, 17, 48, 0.04);
  line-height: 1;
  position: absolute;
  right: -3%;
  bottom: -5%;
  pointer-events: none;
}

.hero-right-inner {
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────────────────
   CARDS & HIGHLIGHT BOXES
───────────────────────────────────────── */

.highlight-box,
.card,
.form-card,
.media-card,
.plan-card {
  background: var(--blanc);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(5, 17, 48, 0.08);
}

.highlight-box {
  border-left: 4px solid var(--bleu-accent);
  padding: 32px 36px;
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-box:hover,
.card:hover,
.media-card:hover,
.form-card:hover,
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(5, 17, 48, 0.12);
}

.hb-label {
  color: var(--bleu-accent);
  margin-bottom: 10px;
}

.hb-title {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  margin-bottom: 8px;
}

.hb-text {
  font-size: 0.92rem;
  color: var(--gris);
}

.hb-arrow {
  display: inline-block;
  margin-top: 14px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bleu-accent);
}
.hb-arrow1 {
  display: inline-block;
  margin-top: 14px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bleu-accent);
}
.hb-arrow::after {
  content: " →";
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */

.section {
  padding: 100px 60px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
}

.sh-left .s-label {
  color: var(--bleu-accent);
  margin-bottom: 8px;
}

h2{
  color: var(--bleu-accent) !important;
}

.sh-left h2,
.section h1,
.section h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: var(--bleu-nuit);
  line-height: 1.05;
}

.sh-right a {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bleu-accent);
}

.section p,
.section .subtitle,
.card-body p,
.form-card p,
.media-card p {
  color: var(--gris);
}

.subtitle {
  margin-top: 12px;
  max-width: 720px;
}

/* ─────────────────────────────────────────
   GROUPES
───────────────────────────────────────── */

.ge-desc {
  min-width: 0;
}

.ge-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 40px;
  background: var(--bleu-nuit);
}

.ge-tag,
.feature-tag {
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.ge-name {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 12px;
  line-height: 1.1;
}

.ge-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.ge-badge {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ─────────────────────────────────────────
   PLANNING
───────────────────────────────────────── */

.planning-ed {
  background: var(--bleu-nuit);
  color: var(--blanc);
}

.planning-ed .sh-right a {
  color: rgba(255, 255, 255, 0.5);
}

.planning-ed .sh-left h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: var(--blanc);
  line-height: 1;
  letter-spacing: -0.01em;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.day-col {
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.day-header {
  background: rgba(30, 90, 160, 0.3);
  padding: 14px 12px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanc);
  text-align: center;
}

.day-sessions {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.session {
  padding: 10px;
  border-radius: 2px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.s-nat  { background: rgba(30, 90, 160, 0.3);  border-left: 2px solid #5b9ad4; }
.s-cap  { background: rgba(5, 80, 60, 0.3);    border-left: 2px solid #4caf7d; }
.s-vel  { background: rgba(80, 40, 140, 0.3);  border-left: 2px solid #9b7de0; }
.s-renf { background: rgba(80, 60, 20, 0.3);   border-left: 2px solid #c9a040; }
.s-capvel { background: rgba(235, 101, 101, 0.3); border-left: 2px solid #ff0000; }

.session .s-time {
  font-weight: 600;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.session .s-name {
  font-weight: 600;
  color: var(--blanc);
}

.session .s-lieu {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─────────────────────────────────────────
   PARTENAIRES
───────────────────────────────────────── */

.partners-section {
  background: var(--blanc);
  padding: 60px;
  border-top: 1px solid rgba(5, 17, 48, 0.1);
}

.partners-label {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gris);
  text-align: center;
  margin-bottom: 32px;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.partner-tag {
  background: var(--creme);
  border: 1px solid rgba(5, 17, 48, 0.1);
  padding: 10px 20px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  transition: all 0.2s;
}

.partner-tag:hover {
  background: var(--bleu-nuit);
  color: var(--blanc);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */

footer {
  background: var(--bleu-nuit);
  color: var(--blanc);
  display: grid;
  grid-template-columns: minmax(260px, 2.5fr) 1fr 1fr;
  gap: 48px;
  padding: 70px 60px 40px;
}

.footer-brand-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: nowrap;
}

.footer-brand-col > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-brand {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--bleu-accent);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--gris);
  line-height: 1.7;
  max-width: 280px;
}

.footer-email {
  display: inline-block;
  margin-top: 20px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--bleu-accent);
  text-decoration: none;
}

.f-col h4 {
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.f-col ul {
  list-style: none;
}

.f-col li {
  margin-bottom: 10px;
}

.f-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.f-col a:hover {
  color: var(--blanc);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-stars {
  color: var(--bleu-accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

/* ─────────────────────────────────────────
   GRILLES & TABLEAUX
───────────────────────────────────────── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card,
.media-card,
.plan-card {
  padding: 32px;
}

.card-title,
.plan-card h3,
.media-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.badge {
  display: inline-block;
  background: rgba(30, 90, 160, 0.08);
  color: var(--bleu-logo);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--blanc);
  border-radius: 18px;
  overflow: hidden;
}

th,
td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(5, 17, 48, 0.08);
}

th {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bleu-nuit);
  font-size: 0.78rem;
}

td {
  color: var(--gris);
  font-size: 0.95rem;
}

/* ─────────────────────────────────────────
   FORMULAIRES
───────────────────────────────────────── */

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(5, 17, 48, 0.12);
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--bleu-nuit);
  background: #fff;
}

textarea {
  min-height: 140px;
}

.form-card {
  display: grid;
  gap: 20px;
}

.form-actions {
  justify-content: flex-start;
  margin-top: 12px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--bleu-nuit);
  font-weight: 700;
}

/* ─────────────────────────────────────────
   DIVERS
───────────────────────────────────────── */

.highlight-list,
.features-list {
  display: grid;
  gap: 16px;
}

.highlight-list li,
.features-list li {
  list-style: none;
  padding: 18px 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(5, 17, 48, 0.08);
}

.highlight-list li strong,
.features-list li strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bleu-nuit);
}

.page-intro {
  max-width: 800px;
  margin-bottom: 32px;
}

.apagnyan {
  color: transparent !important;
}

.groupes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.carte {
  display: flex;
}

/* ─────────────────────────────────────────
   VIDEO
───────────────────────────────────────── */

.hero-video {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-top: 32px;
  object-fit: contain !important;
}

@media (min-width: 1200px) {
  .hero-video {
    max-width: 680px;
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLETTE (max 900px)
───────────────────────────────────────── */

@media (max-width: 900px) {
  /* Cache le menu desktop, affiche le burger */
  .nav-center,
  .nav-right {
    display: none !important;
  }

  
  nav {
    padding: 0 20px;
    position: fixed;
  }

  .hamburger {
    display: flex !important;  /* <-- force l'affichage */
  }

  .nav-menu-mobile {
    display: none !important;  /* caché par défaut */
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--blanc);
    border-top: 1px solid rgba(5,17,48,0.08);
    box-shadow: 0 8px 24px rgba(5,17,48,0.12);
    z-index: 999;
    padding: 12px 0 20px;
  }

  .nav-menu-mobile.open {
    display: block !important;  /* s'affiche quand burger cliqué */
  }
  
  .nav-menu-mobile ul {
    list-style: none;
  }

  .nav-menu-mobile ul li a {
    display: block;
    padding: 13px 24px;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gris);
    transition: color 0.2s, background 0.2s;
  }

  .nav-menu-mobile ul li a:hover {
    color: var(--bleu-nuit);
    background: var(--creme);
  }

  .nav-menu-bottom {
    border-top: 1px solid rgba(5, 17, 48, 0.08);
    margin-top: 10px;
    padding: 16px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .nav-btn-mobile {
    display: block;
    background: var(--bleu-nuit);
    color: var(--blanc);
    text-align: center;
    padding: 13px;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s;
  }

  .nav-btn-mobile:hover {
    background: var(--bleu-accent);
  }

  /* Reste du layout */
  .hero,
  footer {
    grid-template-columns: 1fr;
  }

  .hero {
    display: block;
  }

  .hero-left,
  .hero-right {
    padding: 60px 30px;
  }

  .section {
    padding: 80px 30px;
  }

  .days-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 18px 24px;
  }

  .partners-section {
    padding: 40px 24px;
  }
  
  .groupes-grid {
    grid-template-columns: 1fr 1fr; /* 2 colonnes sur tablette */
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE (max 768px)
───────────────────────────────────────── */

@media (max-width: 768px) {
  .hero-left,
  .hero-right,
  .section {
    padding: 40px 20px;
  }

  .hero-left-bottom,
  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

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

  footer {
    padding: 40px 20px 20px;
  }

  .groupes-grid {
    grid-template-columns: 1fr 1fr !important; /* 2 colonnes = 2 en haut, 2 en bas */
  }

  /* Logo plus petit */
  .nav-logo {
    max-height: 32px;
  }

  /* Texte plus petit */
  .nav-logo-txt {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  /* Nav ne déborde plus */
  nav {
    padding: 0 16px;
    overflow: hidden;
  }

  .ge-side {
    padding: 28px 20px;
  }

  .ge-name {
    font-size: 1.2rem;
  }

  .ge-desc {
    font-size: 0.82rem;
  }

  .carte {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-left,
  .hero-right,
  .section {
    padding: 28px 16px;
  }

  .hero-left-bottom,
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

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

  footer {
    padding: 28px 16px 16px;
  }

  .groupes-grid {
    grid-template-columns: 1fr 1fr !important; /* 2 colonnes = 2 en haut, 2 en bas */
  }

  .nav-logo {
    max-height: 26px;
  }

  .nav-logo-txt {
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }

  nav {
    padding: 0 12px;
  }

  .ge-side {
    padding: 20px 16px;
  }

  .ge-name {
    font-size: 1rem;
  }

  .ge-desc {
    font-size: 0.78rem;
  }

  .carte {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .footer-bottom {
    padding: 14px 16px;
    font-size: 0.68rem;
  }

  .partners-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .partner-tag {
    width: 100%;
    text-align: center;
    padding: 8px;
  }

  .partner-tag img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}