:root {
  --pageBg: #0a0a0a;
  --sectionBg: #111;
  --panelBg: rgba(12, 12, 12, 0.55);
  --panelBorder: rgba(255, 255, 255, 0.14);
  --white: #fff;
  --primaryColorText: #f2f2f2;
  --mutedColorText: rgba(242, 242, 242, 0.7);
  --accent: #f39b3d;
  --primaryFontFamily: "Manrope", sans-serif;
  --titleFontFamily: "Cormorant Garamond", serif;
  --maxContentWidth: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--primaryColorText);
  background: var(--pageBg);
  font-family: var(--primaryFontFamily);
  line-height: 1.5;
}

main {
  scroll-margin-top: 5.5rem;
}

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

.container {
  width: min(var(--maxContentWidth), calc(100% - 3rem));
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
}

.heroImage,
.heroOverlay {
  position: absolute;
  inset: 0;
}

.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  overflow: visible;
  overflow-clip-margin: unset;
  transform: translate3d(0, 0, 0.1px);
}

.heroOverlay {
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 18% 68%, rgba(0, 0, 0, 0.52), transparent 52%),
    linear-gradient(95deg, rgba(6, 6, 6, 0.88) 0%, rgba(8, 8, 8, 0.5) 52%, rgba(6, 6, 6, 0.84) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.78) 100%);
  z-index: 1;
}

.heroScrollCue {
  position: absolute;
  left: 50%;
  bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.25rem 0.35rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.heroScrollCue:hover,
.heroScrollCue:focus-visible {
  color: #fff;
}

.heroScrollCue:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
  border-radius: 12px;
}

.heroScrollCueBubble {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  white-space: nowrap;
}

.heroScrollCueArrow {
  display: flex;
  animation: heroScrollCueBounce 1.9s ease-in-out infinite;
}

.heroScrollCueArrow svg {
  display: block;
  opacity: 0.92;
}

@keyframes heroScrollCueBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(9px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .heroScrollCueArrow {
    animation: none;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--panelBg);
  border-bottom: 1px solid var(--panelBorder);
  backdrop-filter: blur(6px);
}

.brandMark {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: 78px;
}

.navBurger {
  display: none;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--panelBorder);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.navBurger:hover,
.navBurger:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.navBurgerLines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.25rem;
}

.navBurgerLine {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navDrawerBackdrop {
  display: none;
}

.navDrawer {
  display: flex;
  align-items: center;
}

.navDrawerTop {
  display: none;
}

.navDrawerTitle {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.navDrawerClose {
  display: none;
}

.navLinks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.navbar .brandMark {
  color: inherit;
}

.navbar a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.navbar a:hover::after,
.navbar a:focus-visible::after {
  transform: scaleX(1);
}

.heroShell {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  padding: 7rem 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroBranding {
  padding: 1.8rem;
  width: min(var(--maxContentWidth), 100%);
  text-align: center;
}

.heroLogoLarge {
  width: 160px;
  margin: 0 auto 1rem;
}

.heroServices {
  margin: 0.7rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.heroBranding h1 {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--titleFontFamily);
  font-weight: 500;
  font-size: 4rem;
}

.heroText {
  max-width: 670px;
  margin: 1.2rem auto 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.64;
}

.heroActions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.4rem;
  border: 1px solid transparent;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btnPrimary {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btnSecondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background-color: transparent;
}

.btnSecondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 2.75rem 0;
}

.sectionTag {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.sectionTitle {
  margin: 0.55rem 0 2rem;
  font-family: var(--titleFontFamily);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
}

.aboutSection .sectionTitle {
  margin-bottom: 2.25rem;
}

.aboutSplit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.aboutFigure {
  margin: 0;
  border-radius: 16px;
  border: 1px solid var(--panelBorder);
  overflow: hidden;
  background: #050505;
}

.aboutFigure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.aboutBody {
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.68;
}

.aboutBody p {
  margin: 0 0 1.1rem;
}

.aboutBody p:last-of-type {
  margin-bottom: 1.35rem;
}

.aboutBody a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.aboutBody a:hover {
  color: #ffb366;
}

.aboutQuote {
  margin: 0;
  padding: 1.1rem 0 0 1.15rem;
  border-left: 3px solid var(--accent);
  font-family: var(--primaryFontFamily);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
}

.aboutQuote p {
  margin: 0 0 0.65rem;
  font-size: 1.14rem;
  line-height: 1.58;
}

.aboutQuote footer {
  font-family: var(--primaryFontFamily);
  font-style: normal;
  font-size: 0.98rem;
  color: var(--white);
}

.infiniteCarousel {
  overflow: hidden;
  width: 100%;
  contain: layout style;
}

.carouselTrack {
  display: inline-block;
  white-space: nowrap;
  width: max-content;
  animation: carouselLoop 55s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.carouselItem {
  display: inline-block;
  vertical-align: top;
  width: min(320px, 78vw);
  height: 30rem;
  max-height: min(30rem, 85vh);
  margin-right: 1rem;
  border-radius: 16px;
  border: 1px solid var(--panelBorder);
  overflow: hidden;
  position: relative;
  background: #050505;
}

.carouselItem::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.carouselItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: visible;
  overflow-clip-margin: unset;
  transform: translate3d(0, 0, 0.1px);
}

section {
  margin-bottom: 5rem;
}

@keyframes carouselLoop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .infiniteCarousel {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-gutter: stable;
  }

  .carouselTrack {
    animation: none;
    transform: none;
    will-change: auto;
  }
}

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

.portfolioCase {
  border: 1px solid var(--panelBorder);
  border-radius: 14px;
  overflow: hidden;
  font-family: var(--primaryFontFamily);

}

.portfolioCase img {
  display: block;
  width: 100%;
  height: 30rem;
  object-fit: cover;
  object-position: center;
  overflow: visible;
  overflow-clip-margin: unset;
  transform: translate3d(0, 0, 0.1px);
}

.portfolioCase h3 {
  margin: 0;
  padding: 0.8rem 1rem;
  font-size: 0.98rem;
}

.portfolioPhoto {
  position: relative;
}

.portfolioLikeBar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  background: rgba(0, 0, 0, 0.55);
  gap: 0.8rem;
}

.likeBtn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.likeBtn.liked {
  border-color: rgba(243, 155, 61, 0.9);
  color: rgba(243, 155, 61, 0.95);
}

.likeCount {
  font-size: 0.95rem;
  color: var(--white);
  opacity: 0.9;
  min-width: 2.5rem;
  text-align: right;
}

.portfolioPagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
}

.portfolioPagination .portfolioPageBtn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  border-radius: 10px;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--primaryFontFamily);
}

.portfolioPagination .portfolioPageBtn:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.portfolioPagination .portfolioPageBtn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.portfolioPagination .portfolioPageBtn.active {
  border-color: rgba(243, 155, 61, 0.85);
  background: rgba(243, 155, 61, 0.12);
}

.portfolioPagination .portfolioPageInfo {
  font-size: 0.88rem;
  opacity: 0.85;
  padding: 0 0.5rem;
  font-family: var(--primaryFontFamily);
}

.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.25rem;
}

.pricingCard {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--panelBorder);
  border-radius: 16px;
  background: var(--panelBg);
  padding: 1.4rem;
}

.pricingCardFeatured {
  border-color: rgba(243, 155, 61, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.pricingTitle {
  margin: 0 0 0.8rem;
  font-family: var(--titleFontFamily);
  font-weight: 500;
  font-size: 1.5rem;
}

.pricingPrice {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  color: var(--accent);
}

.pricingList {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.pricingCta {
  margin-top: 1.2rem;
  width: 100%;
}

.pricingCtaRow {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.pricingCtaRow .pricingCta {
  margin-top: 0;
}

.pricingCtaSecond {
  text-align: center;
}

.pricingNotes {
  margin-top: 4.5rem;
  border-top: 1px solid var(--panelBorder);
  padding-top: 2.5rem;
}

.pricingNotesTitle {
  margin-bottom: 1.5rem;
}

.pricingShop {
  margin-top: 3.5rem;
  border-top: 1px solid var(--panelBorder);
  padding-top: 2.5rem;
}

.pricingText {
  color: var(--mutedColorText);
  max-width: 70ch;
}

.pricingAnnexeNote {
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
}

.pricingDevisCallout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  flex-wrap: wrap;
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--panelBorder);
  border-radius: 16px;
  background:
    linear-gradient(125deg, rgba(243, 155, 61, 0.09), transparent 48%),
    var(--panelBg);
  border-left: 3px solid var(--accent);
}

.pricingDevisCalloutText {
  margin: 0;
  flex: 1 1 280px;
  color: var(--mutedColorText);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 52ch;
}

.pricingDevisCalloutBtn {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .pricingDevisCallout {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pricingDevisCalloutText {
    max-width: none;
  }

  .pricingDevisCalloutBtn {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .pricingGrid {
    grid-template-columns: 1fr;
  }
}

.ctaLayout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ctaText {
  margin: 0;
  color: var(--mutedColorText);
}

.siteFooter {
  border-top: 1px solid var(--panelBorder);
  padding-top: 3rem;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footerLogo {
  width: 68px;
  margin-bottom: 0.75rem;
}

.siteFooter ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.siteFooter a {
  color: var(--mutedColorText);
  text-decoration: none;
}

.siteFooter a:hover {
  color: var(--white);
}

.footerBottom {
  margin: 2rem 0 0;
  padding: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.contactLayout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  align-items: start;
}

.contactCard {
  border: 1px solid var(--panelBorder);
  border-radius: 16px;
  background: var(--panelBg);
  padding: 1.4rem;
}

.contactList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.contactList li {
  display: grid;
  gap: 0.4rem;
}

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

.contactList a {
  color: var(--white);
  text-decoration: none;
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Au-dessus du bloc message : les panneaux des listes ne passent plus sous le textarea */
.contactForm .formRow {
  position: relative;
  z-index: 1;
}

.customSelect.isOpen {
  z-index: 5;
}

.formGroup {
  margin-bottom: 1rem;
}

.formGroup label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--mutedColorText);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  border: 1px solid var(--panelBorder);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  padding: 0.8rem;
}

.contactForm input:focus,
.contactForm textarea:focus {
  outline: 2px solid var(--white);
  outline-offset: 1px;
}

/* Select personnalisé (liste déroulante assortie au thème sombre) */
.customSelect {
  position: relative;
  width: 100%;
}

.customSelectNative {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.customSelectTrigger {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: calc(0.8rem * 2 + 1.2em);
  border: 1px solid var(--panelBorder);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.customSelectTrigger:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.82);
}

.customSelectTrigger:focus {
  outline: 2px solid var(--white);
  outline-offset: 1px;
}

.customSelectTrigger:focus:not(:focus-visible) {
  outline: none;
}

.customSelectTrigger:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 1px;
}

.customSelect.isOpen .customSelectTrigger {
  border-color: rgba(243, 155, 61, 0.45);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.customSelectValue {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

.customSelectValue.isPlaceholder {
  color: rgba(255, 255, 255, 0.45);
}

.customSelectChevron {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.2s ease;
}

.customSelect.isOpen .customSelectChevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.customSelectPanel {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: none;
  border-radius: 0 0 12px 12px;
  background: rgba(8, 8, 10, 0.98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  max-height: 14rem;
  overflow-y: auto;
}

.customSelectPanel[hidden] {
  display: none !important;
}

.customSelectOption {
  margin: 0;
  padding: 0.65rem 1rem;
  cursor: pointer;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.35;
  transition: background-color 0.12s ease, color 0.12s ease;
}

.customSelectOption:hover,
.customSelectOption.isFocused {
  background: rgba(243, 155, 61, 0.14);
  color: var(--white);
}

.customSelectOption[aria-selected="true"] {
  background: rgba(243, 155, 61, 0.22);
  color: var(--white);
}

.customSelectOption.isPlaceholder {
  color: rgba(255, 255, 255, 0.4);
  cursor: default;
  pointer-events: none;
}

.customSelectOption.isPlaceholder:hover {
  background: transparent;
}

.contactForm .btn {
  width: 100%;
  margin-top: 0.3rem;
}

.formError {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: #e8a090;
}

.formSuccess {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: #8ee1a1;
}

.contactMotifHint {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(243, 155, 61, 0.35);
  background: rgba(243, 155, 61, 0.07);
  font-size: 0.9rem;
  color: var(--mutedColorText);
}

.cookieBanner .btn {
  padding: 0.55rem 1rem;
}

.cookieBanner[hidden] {
  display: none !important;
}

.cookieBanner {
  position: fixed;
  z-index: 100;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 42rem;
  margin-inline: auto;
  padding: 1rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  background: rgba(14, 14, 14, 0.96);
  border: 1px solid var(--panelBorder);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.cookieBanner > p {
  margin: 0;
  flex: 1 1 14rem;
  font-size: 0.9rem;
  color: var(--mutedColorText);
}

.cookieBanner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookieBanner a:hover {
  color: #ffb366;
}

.cookieBanner > div {
  display: flex;
  gap: 0.5rem;
}

.modalFond[hidden] {
  display: none !important;
}

.modalFond {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.72);
}

.modal {
  width: min(26rem, 100%);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--panelBorder);
  background: var(--sectionBg);
  text-align: center;
}

.modal h2 {
  margin: 0 0 0.6rem;
  font-family: var(--titleFontFamily);
  font-size: 1.45rem;
  font-weight: 500;
}

.modal p {
  margin: 0 0 1.2rem;
  color: var(--mutedColorText);
}

.modalTwint .modalTwintCorps {
  margin-bottom: 1rem;
}

.modalTwintNumeroWrap {
  margin: 0 0 0.75rem;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.modalTwintNumeroLabel {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.modalTwintNumeroLigne {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  user-select: all;
}

.modalTwintNote {
  font-size: 0.88rem;
  margin-bottom: 1.1rem !important;
}

.legalPage {
  margin-top: 2rem;
  padding: 6.5rem 0 3.5rem;
  min-height: 50vh;
  background: var(--sectionBg);
}

.legalDocument {
  max-width: 42rem;
  padding-bottom: 2rem;
}

.legalDocument h1 {
  margin: 0 0 1rem;
  font-family: var(--titleFontFamily);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--white);
}

.legalUpdated {
  margin: -0.25rem 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(242, 242, 242, 0.55);
}

.legalLead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: var(--mutedColorText);
  line-height: 1.6;
}

.legalDocument h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--titleFontFamily);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}

.legalDocument h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primaryColorText);
}

.legalDocument p,
.legalDocument li {
  color: var(--mutedColorText);
  line-height: 1.65;
}

.legalDocument p {
  margin: 0 0 0.85rem;
}

.legalDocument ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legalDocument li {
  margin-bottom: 0.4rem;
}

.legalDocument a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legalDocument a:hover {
  color: #ffb366;
}

