*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --yellow: #ffe619;
  --black: #0d0d0d;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --gray-light: #efefef;
  --gray-mid: #b0b0b0;
  --gray-text: #555;
  --dark-section: #1e1e1e;
  --nav-h: 64px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--off-white);
  color: var(--black);
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tag {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 0.25em 0.9em;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

/* ── INLINE SVG LOGOS ── */
.stmt-logo-svg {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 220px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 3rem);
  pointer-events: all;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
#main-nav.scrolled {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
  pointer-events: all;
}
#main-nav ul {
  display: flex;
  gap: clamp(0.5rem, 1.8vw, 2rem);
  list-style: none;
  align-items: center;
}
#main-nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color 0.2s;
}
#main-nav.scrolled a {
  color: var(--black);
}
#main-nav a:hover {
  color: var(--yellow) !important;
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
  pointer-events: all;
}
.lang-btn {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 0.35em 0.9em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
  white-space: nowrap;
  min-width: unset;
}
#main-nav.scrolled .lang-btn {
  color: var(--black);
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}
.lang-btn:hover {
  background: var(--yellow) !important;
  color: var(--black) !important;
  border-color: var(--yellow) !important;
}
.lang-arrow {
  font-size: 0.55rem;
  transition: transform 0.2s;
  margin-left: auto;
}
.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--black);
  min-width: 160px;
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  z-index: 300;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  text-align: left;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition:
    color 0.15s,
    background 0.15s;
  white-space: nowrap;
}
.lang-menu button:hover {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.05);
}
.lang-menu button.active {
  color: var(--yellow);
}
.lang-flag {
  font-size: 1rem;
  line-height: 1;
}
.lang-name {
  flex: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  pointer-events: all;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition:
    background 0.3s,
    transform 0.3s,
    opacity 0.3s;
}
#main-nav.scrolled .nav-toggle span {
  background: var(--black);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  #main-nav {
    pointer-events: all;
  }
  #main-nav ul {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--black);
    padding: 1rem 0;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    pointer-events: all;
  }
  #main-nav ul.open {
    transform: translateY(0);
    pointer-events: all;
  }
  #main-nav ul li a {
    display: block;
    padding: 0.85rem 2rem;
    color: var(--white) !important;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .lang-dropdown {
    order: -1;
    margin-left: auto;
  }
  .lang-menu {
    right: auto;
    left: 0;
  }
}

/* ── HERO ── */
#hero {
  margin: clamp(10px, 1.5vw, 18px);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: clamp(480px, 88vh, 800px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  #hero {
    margin: 0;
    border-radius: 0;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.1) 45%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    image-set(
      url("../img/header/header.webp") type("image/webp"),
      url("../img/header/header.jpeg") type("image/jpeg")
    )
      center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-logo-top {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(1.5rem, 4vw, 3.5rem);
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-logo-top {
    top: clamp(1rem, 4vh, 2rem);
    transform: none;
  }
}
.hero-logo-img {
  height: clamp(180px, 32vw, 420px);
  width: auto;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.6));
}

.hero-sub {
  margin-top: 1.25rem;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.7);
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.btn {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7em 2em;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition:
    opacity 0.2s,
    transform 0.15s;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  clip-path: none;
  border-radius: 2px;
}

/* ── LAYOUT ── */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.section-dark {
  background: var(--dark-section);
}
.section-dark .section-label {
  color: rgba(255, 255, 255, 0.4);
}
.section-dark .section-label::before {
  background: var(--yellow);
}
.section-dark .section-title {
  color: var(--white);
}
.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.5);
}
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--yellow);
  flex-shrink: 0;
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.95;
  color: var(--black);
  margin-top: 0.4rem;
}
.section-intro {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--gray-text);
  max-width: 620px;
  margin-top: 0.7rem;
  line-height: 1.6;
}

/* ── PRÉSENTATION ── */
.pres-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.pres-grid > .pres-card:last-of-type:nth-child(odd) {
  grid-column: 1/-1;
  max-width: calc(50% - clamp(0.5rem, 1.25vw, 0.875rem));
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (max-width: 600px) {
  .pres-grid {
    grid-template-columns: 1fr;
  }
  .pres-grid > .pres-card:last-of-type:nth-child(odd) {
    grid-column: 1;
    max-width: 100%;
  }
}
.pres-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.pres-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}
.pres-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--yellow);
  transition: height 0.3s ease;
}
.pres-card:hover::before {
  height: 100%;
}
.pres-card-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}
.pres-card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.pres-card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
.pres-card p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.62;
}
.pres-statement {
  grid-column: 1/-1;
  background: var(--black);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.stmt-logo-svg {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 220px;
  pointer-events: none;
  z-index: 0;
}
.pres-statement p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  font-weight: 300;
  line-height: 1.5;
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.pres-statement strong {
  font-weight: 700;
  color: var(--yellow);
}

/* ── LE PROJET ── */
.stat-bar {
  background: var(--black);
  color: var(--white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.stat-pill {
  text-align: center;
  flex: 1;
  min-width: 90px;
}
.stat-pill .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat-pill .desc {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .stat-sep {
    display: none;
  }
}
.projet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.projet-grid > .projet-block:last-of-type:nth-child(odd) {
  grid-column: 1/-1;
  max-width: calc(50% - clamp(0.5rem, 1.25vw, 0.875rem));
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (max-width: 700px) {
  .projet-grid {
    grid-template-columns: 1fr;
  }
  .projet-grid > .projet-block:last-of-type:nth-child(odd) {
    grid-column: 1;
    max-width: 100%;
  }
}
.projet-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.projet-block:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.projet-block-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pbi {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}
.pbt {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--white);
}
.pbt small {
  display: block;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.1rem;
}
.pbl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pbl li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 0.9rem;
  position: relative;
  line-height: 1.5;
}
.pbl li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  background: var(--yellow);
  clip-path: polygon(2px 0%, 100% 0%, calc(100% - 2px) 100%, 0% 100%);
}
.partners-strip,
.digital-strip {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.partners-strip {
  background: rgba(255, 255, 255, 0.04);
}
.digital-strip {
  background: rgba(255, 255, 255, 0.02);
}
.strip-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
  text-align: center;
}
.partners-coming-soon {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.15em;
  color: var(--yellow);
  text-align: center;
  opacity: 0.5;
  margin: 0;
}
.partners-logos {
  display: flex;
  gap: clamp(0.6rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.partner-badge {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.05em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35em 0.9em;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition:
    background 0.2s,
    color 0.2s;
}
.partner-badge:hover {
  background: var(--yellow);
  color: var(--black);
}
.digital-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.dtag {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 0.28em 0.85em;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.dtag:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
a.dtag {
  text-decoration: none;
  cursor: pointer;
}

/* ── GALERIE ── */
.galerie {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 6px;
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
}
.galerie-item {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #111;
  display: block;
}
.galerie-main {
  grid-column: 1;
  grid-row: 1 / 3;
}
.galerie-item picture,
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s;
}
.galerie-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}
.galerie-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.galerie-item:hover .galerie-zoom {
  opacity: 1;
}
@media (max-width: 768px) {
  .galerie {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px 160px;
  }
  .galerie-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open {
  display: flex;
}
.lb-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.8);
  animation: lb-in 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover,
.lb-next:hover { background: rgba(255, 230, 25, 0.2); }
.lb-counter {
  margin-top: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

/* ── TERRAINS ── */
.terrains-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-top: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}
.terrains-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-top: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}
@media (max-width: 768px) {
  .terrains-row-2 { grid-template-columns: 1fr 1fr; }
  .terrains-row-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .terrains-row-2 { grid-template-columns: 1fr; }
  .terrains-row-3 { grid-template-columns: 1fr; }
}
.tc {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.tc:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.tc.feat {
  background: var(--black);
  color: var(--white);
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 2.5rem;
  align-items: start;
}
.tc.feat .tc-num {
  grid-row: 1/3;
  align-self: center;
  font-size: clamp(4rem, 10vw, 8rem);
}
.tc.feat .tc-title {
  grid-column: 2;
  color: var(--white);
}
.tc.feat .tc-desc {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.55);
}
.tc.feat .tag {
  grid-column: 2;
  margin-top: auto;
}
@media (max-width: 600px) {
  .tc.feat {
    display: flex;
    flex-direction: column;
  }
  .tc.feat .tc-num {
    font-size: clamp(3rem, 8vw, 5rem);
  }
}
.tc-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
}
.tc.feat .tc-num {
  color: var(--yellow);
}
.tc-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tc-desc {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.55;
}

/* ── INVESTISSEURS ── */
.section-invest {
  background: var(--black);
  color: var(--white);
}
.section-invest .section-label {
  color: rgba(255, 255, 255, 0.4);
}
.section-invest .section-label::before {
  background: var(--yellow);
}
.section-invest .section-title {
  color: var(--white);
}
.section-invest .section-intro {
  color: rgba(255, 255, 255, 0.45);
}

.conclusion {
  margin-top: clamp(3rem, 6vw, 5rem);
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.conclusion h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.flames {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.75rem);
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.flame {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.82rem, 2vw, 0.97rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.flame span {
  color: var(--yellow);
}
.cta-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2.3vw, 1.2rem);
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 2rem;
}

/* ── À PROPOS ── */
.apropos-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 768px) {
  .apropos-layout {
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 400px) {
  .apropos-layout {
    grid-template-columns: 90px 1fr;
    gap: 1rem;
  }
}
.apropos-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.apropos-avatar {
  width: clamp(80px, 20vw, 200px);
  height: clamp(80px, 20vw, 200px);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 4px solid var(--yellow);
}
.apropos-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.apropos-role {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.apropos-divider {
  width: 40px;
  height: 3px;
  background: var(--yellow);
  margin: 1.2rem 0;
}
.apropos-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.apropos-para {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--gray-text);
  line-height: 1.85;
}
.apropos-para.highlight-para {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.55;
  border-left: 3px solid var(--yellow);
  padding-left: 1.25rem;
}
.quote-block {
  background: var(--yellow);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  margin-top: 2rem;
}
.quote-block p {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  color: rgba(0, 0, 0, 0.12);
  line-height: 1;
}

/* ── PRO SHOP ── */
.shop-grid {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}
.shop-card {
  overflow: hidden;
  width: clamp(280px, 38vw, 460px);
  flex-shrink: 0;
  transition:
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.shop-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-6px) scale(1.015);
}
.shop-card-photo {
  width: 100%;
  height: clamp(300px, 38vw, 480px);
  object-fit: contain;
  display: block;
  background: rgba(255,255,255,0.04);
  padding: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-card:hover .shop-card-photo {
  transform: scale(1.04);
}
.shop-card-price-bar {
  padding: 0.85rem 1.25rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: var(--yellow);
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.shop-cat {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.3rem;
}
.shop-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.shop-desc {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.shop-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--black);
}
.shop-price span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-mid);
  vertical-align: middle;
  margin-left: 0.25rem;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.ci h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.ci p {
  font-size: 0.93rem;
  color: var(--gray-text);
  margin-bottom: 1.4rem;
  line-height: 1.65;
}
.cd {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: var(--gray-text);
}
.cd strong {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  display: block;
}
.cf {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 460px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.ff {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ff label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}
.ff input,
.ff select,
.ff textarea {
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  padding: 0.6em 0.85em;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  color: var(--black);
}
.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  border-color: var(--black);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.35);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 460px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.fb p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
}
.fb-open {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
}
.fc h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.9rem;
}
.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.fc ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color 0.2s;
}
.fc ul li a:hover {
  color: var(--yellow);
}
.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--yellow);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── I18N ── */
[data-lang] {
  display: none;
}
[data-lang].active {
  display: block;
}
[data-lang-inline] {
  display: none;
}
[data-lang-inline].active {
  display: inline;
}

.shop-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--yellow);
  padding: 1rem 1.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.shop-notice-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.shop-notice p {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--black);
  letter-spacing: 0.03em;
}

/* ── BRAND PARTNERS ── */
.brand-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  justify-items: stretch;
}
.brand-partner-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.25rem;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.25s,
    background 0.25s;
  cursor: default;
}
.partner-name-only {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
  line-height: 1.15;
}
.brand-partner-card:hover {
  border-color: var(--yellow);
  background: rgba(255, 230, 25, 0.08);
}
.brand-partner-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.brand-partner-name small {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-size: 0.7em;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.brand-partner-subs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.brand-sub-chip {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 0.2em 0.7em;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.brand-partner-desc {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
}

/* ── INVEST MODERN ── */
.invest-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
@media (max-width: 900px) {
  .invest-grid-modern {
    grid-template-columns: 1fr;
  }
}
.inv-card-modern {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition:
    border-color 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}
.inv-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.4s ease;
}
.inv-card-modern:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
}
.inv-card-modern:hover::before {
  width: 100%;
}
.inv-card-modern-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.inv-card-modern-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  letter-spacing: 0.05em;
  color: var(--yellow);
  line-height: 1.1;
}
.inv-card-modern-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inv-list-modern {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  text-align: left;
  margin-top: 0.5rem;
}
.inv-list-modern li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.inv-list-modern li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  background: var(--yellow);
}
.inv-card-timing {
  background: rgba(255, 230, 25, 0.04);
}
.timing-body {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-top: 0.5rem;
}
.timing-sub {
  color: rgba(255, 255, 255, 0.55);
}

.footer-svg-logo {
  width: clamp(80px, 14vw, 130px);
  margin-bottom: 0.9rem;
  display: block;
}
