@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,600&family=Josefin+Sans:wght@300;400;500;600&display=swap');

@font-face {
  font-family: "Park Lane NF";
  src: url("../fonts/parklane/ParkLaneNF.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}


:root {
  --fq-black: #070706;
  --fq-charcoal: #11100e;
  --fq-ivory: #e8e0d2;
  --fq-muted: #a59e91;
  --fq-gold: #b08a4a;
  --fq-line: rgba(232, 224, 210, 0.22);
  --fq-heading: "Bodoni Moda", "Times New Roman", serif;
  --fq-sans: "Josefin Sans", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.home-template {
  background: var(--fq-black);
  color: var(--fq-ivory);
}

body.home-template .g-load-transition__container {
  background: var(--fq-black);
}

.fq-home {
  overflow: hidden;
  background: var(--fq-black);
  color: var(--fq-ivory);
}

.fq-home *,
.fq-home *::before,
.fq-home *::after {
  box-sizing: border-box;
}

.fq-container {
  width: min(1380px, calc(100% - 80px));
  margin-inline: auto;
}

.fq-eyebrow {
  margin: 0;
  color: var(--fq-gold);
  font-family: var(--fq-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  line-height: 1.5;
  text-transform: uppercase;
}

.fq-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background: #080807;
  isolation: isolate;
}

.fq-hero__image {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-image: var(--fq-hero-image);
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.025);
  animation: fqHeroDrift 18s ease-out both;
}

.fq-hero__shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 50% 40%, transparent 0, rgba(0, 0, 0, 0.32) 66%, rgba(0, 0, 0, 0.88) 100%);
}

.fq-hero__grain {
  position: absolute;
  z-index: -2;
  inset: -40%;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, #fff 0 0.6px, transparent 0.8px 4px);
  background-size: 7px 7px;
  animation: fqGrain 0.35s steps(2) infinite;
}

.fq-hero__frame {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(232, 224, 210, 0.3);
  pointer-events: none;
}

.fq-hero__corner {
  position: absolute;
  width: 38px;
  height: 38px;
}

.fq-hero__corner::before,
.fq-hero__corner::after {
  position: absolute;
  content: "";
  background: var(--fq-gold);
}

.fq-hero__corner::before {
  width: 100%;
  height: 1px;
}

.fq-hero__corner::after {
  width: 1px;
  height: 100%;
}

.fq-hero__corner--tl {
  top: 12px;
  left: 12px;
}

.fq-hero__corner--tr {
  top: 12px;
  right: 12px;
  transform: rotate(90deg);
}

.fq-hero__corner--bl {
  bottom: 12px;
  left: 12px;
  transform: rotate(-90deg);
}

.fq-hero__corner--br {
  right: 12px;
  bottom: 12px;
  transform: rotate(180deg);
}

.fq-hero__content {
  width: min(920px, calc(100% - 64px));
  padding: 140px 20px 120px;
  text-align: center;
}

.fq-hero__title {
  display: flex;
  justify-content: center;
  gap: 0.22em;
  margin: 20px 0 14px;
  color: var(--fq-ivory);
  font-family: var(--fq-heading);
  font-size: clamp(4.6rem, 12vw, 10.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.48);
}

.fq-hero__title span:last-child {
  font-style: italic;
}

.fq-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: min(280px, 70vw);
  margin: 32px auto 28px;
}

.fq-ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--fq-gold));
}

.fq-ornament span:last-child {
  background: linear-gradient(90deg, var(--fq-gold), transparent);
}

.fq-ornament i {
  width: 9px;
  height: 9px;
  border: 1px solid var(--fq-gold);
  transform: rotate(45deg);
}

.fq-hero__signature {
  margin: 0 0 36px;
  color: var(--fq-ivory);
  font-family: var(--fq-heading);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.fq-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border: 1px solid;
  font-family: var(--fq-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 250ms ease,
    background 250ms ease,
    border-color 250ms ease,
    transform 250ms ease;
}

.fq-button:hover {
  transform: translateY(-2px);
}

.fq-button--light {
  border-color: rgba(232, 224, 210, 0.65);
  color: var(--fq-ivory);
  background: rgba(7, 7, 6, 0.18);
  backdrop-filter: blur(7px);
}

.fq-button--light:hover {
  color: var(--fq-black);
  background: var(--fq-ivory);
}

.fq-button--gold {
  border-color: var(--fq-gold);
  color: var(--fq-black);
  background: var(--fq-gold);
}

.fq-button--gold:hover {
  color: var(--fq-gold);
  background: transparent;
}

.fq-hero__scroll {
  position: absolute;
  bottom: 42px;
  left: 50%;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--fq-muted);
  font-family: var(--fq-sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.fq-hero__scroll i {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--fq-gold), transparent);
}

.fq-section {
  position: relative;
  padding: clamp(110px, 14vw, 210px) 0;
}

.fq-section__number {
  position: absolute;
  top: 50px;
  right: 6vw;
  color: rgba(232, 224, 210, 0.045);
  font-family: var(--fq-heading);
  font-size: clamp(8rem, 20vw, 19rem);
  line-height: 1;
  pointer-events: none;
}

.fq-section__heading h2,
.fq-projects__header h2,
.fq-partners h2 {
  margin: 20px 0 0;
  color: var(--fq-ivory);
  font-family: var(--fq-heading);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.fq-section__heading h2 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5.8vw, 6.5rem);
  line-height: 1.02;
}

.fq-manifesto {
  background:
    linear-gradient(90deg, transparent 49.92%, rgba(232, 224, 210, 0.08) 50%, transparent 50.08%),
    var(--fq-black);
}

.fq-manifesto__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: end;
}

.fq-manifesto__copy {
  padding-bottom: 12px;
}

.fq-manifesto__copy p {
  margin: 0 0 24px;
  color: var(--fq-muted);
  font-family: var(--fq-heading);
  font-size: clamp(1.25rem, 1.65vw, 1.65rem);
  line-height: 1.65;
}

.fq-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--fq-line);
  color: var(--fq-ivory);
  font-family: var(--fq-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 200ms ease, color 200ms ease;
}

.fq-text-link:hover {
  border-color: var(--fq-gold);
  color: var(--fq-gold);
}

.fq-projects {
  border-top: 1px solid var(--fq-line);
  background: var(--fq-charcoal);
}

.fq-projects__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.fq-projects__header h2 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 1;
}

.fq-projects__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 60px 28px;
}

.fq-project-card {
  grid-column: span 4;
}

.fq-project-card:nth-child(1),
.fq-project-card:nth-child(4) {
  grid-column: span 7;
}

.fq-project-card:nth-child(2),
.fq-project-card:nth-child(5) {
  grid-column: span 5;
}

.fq-project-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.fq-project-card__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #181713;
}

.fq-project-card:nth-child(1) .fq-project-card__visual,
.fq-project-card:nth-child(4) .fq-project-card__visual {
  aspect-ratio: 16 / 10;
}

.fq-project-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03);
  transition: filter 650ms ease, transform 900ms cubic-bezier(.2,.75,.2,1);
}

.fq-project-card__link:hover img {
  filter: grayscale(0.25);
  transform: scale(1.035);
}

.fq-project-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5));
}

.fq-project-card__index {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(232, 224, 210, 0.68);
  font-family: var(--fq-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.fq-project-card__information {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}

.fq-project-card__information h3 {
  margin: 7px 0 0;
  color: var(--fq-ivory);
  font-family: var(--fq-heading);
  font-size: clamp(1.65rem, 2.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.fq-project-card__type {
  margin: 0;
  color: var(--fq-gold);
  font-family: var(--fq-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fq-project-card__arrow {
  color: var(--fq-gold);
  font-size: 1.4rem;
}

.fq-projects__empty {
  padding: 80px 30px;
  border: 1px solid var(--fq-line);
  text-align: center;
}

.fq-projects__empty p {
  margin: 0;
  color: var(--fq-muted);
  font-family: var(--fq-heading);
  font-size: 1.5rem;
  font-style: italic;
}

.fq-section__heading--center {
  text-align: center;
}

.fq-section__heading--center h2 {
  margin-inline: auto;
}

.fq-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--fq-line);
}

.fq-value {
  min-height: 330px;
  padding: 42px 46px 50px;
  border-right: 1px solid var(--fq-line);
}

.fq-value:last-child {
  border-right: 0;
}

.fq-value__number {
  color: var(--fq-gold);
  font-family: var(--fq-sans);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
}

.fq-value h3 {
  margin: 72px 0 20px;
  color: var(--fq-ivory);
  font-family: var(--fq-heading);
  font-size: 2.7rem;
  font-weight: 400;
}

.fq-value p {
  max-width: 310px;
  margin: 0;
  color: var(--fq-muted);
  font-family: var(--fq-heading);
  font-size: 1.18rem;
  line-height: 1.6;
}

.fq-partners {
  position: relative;
  display: grid;
  min-height: 72vh;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--fq-line);
  background:
    radial-gradient(circle at center, rgba(176, 138, 74, 0.11), transparent 42%),
    #050504;
}

.fq-partners__lines {
  position: absolute;
  width: min(720px, 76vw);
  aspect-ratio: 1;
  border: 1px solid rgba(176, 138, 74, 0.26);
  transform: rotate(45deg);
}

.fq-partners__lines::before,
.fq-partners__lines::after {
  position: absolute;
  content: "";
  inset: 9%;
  border: 1px solid rgba(176, 138, 74, 0.14);
}

.fq-partners__lines::after {
  inset: 20%;
}

.fq-partners__content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  padding: 130px 20px;
  text-align: center;
}

.fq-partners h2 {
  margin: 28px auto 45px;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 1;
}

@keyframes fqHeroDrift {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.025);
  }
}

@keyframes fqGrain {
  0% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(2%, -1%, 0);
  }

  50% {
    transform: translate3d(-1%, 2%, 0);
  }

  75% {
    transform: translate3d(1%, 1%, 0);
  }

  100% {
    transform: translate3d(-2%, -1%, 0);
  }
}

@media (max-width: 900px) {
  .fq-container {
    width: min(100% - 42px, 720px);
  }

  .fq-hero__frame {
    inset: 18px;
  }

  .fq-hero__title {
    flex-direction: column;
    gap: 0;
  }

  .fq-manifesto {
    background: var(--fq-black);
  }

  .fq-manifesto__layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .fq-projects__header {
    align-items: start;
    flex-direction: column;
  }

  .fq-projects__grid {
    gap: 60px 18px;
  }

  .fq-project-card,
  .fq-project-card:nth-child(1),
  .fq-project-card:nth-child(2),
  .fq-project-card:nth-child(4),
  .fq-project-card:nth-child(5) {
    grid-column: span 6;
  }

  .fq-project-card:nth-child(1) .fq-project-card__visual,
  .fq-project-card:nth-child(4) .fq-project-card__visual {
    aspect-ratio: 4 / 5;
  }

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

  .fq-value {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--fq-line);
  }
}

@media (max-width: 600px) {
  .fq-container {
    width: calc(100% - 32px);
  }

  .fq-hero__content {
    width: calc(100% - 38px);
    padding-inline: 0;
  }

  .fq-hero__title {
    font-size: clamp(4.2rem, 23vw, 6.4rem);
  }

  .fq-hero__scroll {
    display: none;
  }

  .fq-projects__grid {
    display: block;
  }

  .fq-project-card {
    margin-bottom: 58px;
  }

  .fq-value {
    padding-inline: 10px;
  }

  .fq-partners__lines {
    width: 110vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fq-hero__image,
  .fq-hero__grain {
    animation: none;
  }
}


/* =========================================================
   FAR QUEST — HERO VIDÉO
   Boucle synchronisée sur une vidéo de 12 secondes
   ========================================================= */

.fq-hero__video {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
}

.fq-hero--video .fq-hero__shade {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.12) 38%,
      rgba(0, 0, 0, 0.26) 64%,
      rgba(0, 0, 0, 0.78) 100%
    ),
    radial-gradient(
      circle at center,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 48%,
      rgba(0, 0, 0, 0.62) 100%
    );
}

.fq-hero--video .fq-hero__content {
  position: relative;
  z-index: 3;
}

.fq-hero--video .fq-hero__title,
.fq-hero--video .fq-hero__studio,
.fq-hero--video .fq-ornament,
.fq-hero--video .fq-hero__signature,
.fq-hero--video .fq-hero__button {
  opacity: 0;
  will-change: opacity, transform, filter;
}

/* FAR QUEST : apparition 0,8 s, disparition vers 9,5 s */
.fq-hero--video .fq-hero__title {
  animation: fqTitleSequence 12s ease-in-out infinite;
}

/* Maison de production */
.fq-hero__studio {
  margin: 24px 0 0;
  color: var(--fq-gold);
  font-family: var(--fq-sans);
  font-size: clamp(0.65rem, 1vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  line-height: 1.5;
  text-transform: uppercase;
  animation: fqStudioSequence 12s ease-in-out infinite;
}

/* Ornement */
.fq-hero--video .fq-ornament {
  animation: fqOrnamentSequence 12s ease-in-out infinite;
}

/* Signature */
.fq-hero--video .fq-hero__signature {
  animation: fqSignatureSequence 12s ease-in-out infinite;
}

/* Bouton */
.fq-hero--video .fq-hero__button {
  animation: fqButtonSequence 12s ease-in-out infinite;
}

@keyframes fqTitleSequence {
  0%,
  6% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px) scale(0.985);
  }

  16%,
  76% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }

  86%,
  100% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-12px) scale(1.01);
  }
}

@keyframes fqStudioSequence {
  0%,
  15% {
    opacity: 0;
    transform: translateY(12px);
  }

  26%,
  76% {
    opacity: 1;
    transform: translateY(0);
  }

  86%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes fqOrnamentSequence {
  0%,
  21% {
    opacity: 0;
    transform: scaleX(0.35);
  }

  33%,
  76% {
    opacity: 1;
    transform: scaleX(1);
  }

  86%,
  100% {
    opacity: 0;
    transform: scaleX(0.65);
  }
}

@keyframes fqSignatureSequence {
  0%,
  25% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(14px);
  }

  40%,
  76% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  86%,
  100% {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(-8px);
  }
}

@keyframes fqButtonSequence {
  0%,
  34% {
    opacity: 0;
    transform: translateY(10px);
  }

  46%,
  76% {
    opacity: 1;
    transform: translateY(0);
  }

  86%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@media (max-width: 700px) {
  .fq-hero__video {
    object-position: center center;
  }

  .fq-hero__studio {
    max-width: 90%;
    margin-inline: auto;
    letter-spacing: 0.28em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fq-hero--video .fq-hero__title,
  .fq-hero--video .fq-hero__studio,
  .fq-hero--video .fq-ornament,
  .fq-hero--video .fq-hero__signature,
  .fq-hero--video .fq-hero__button {
    opacity: 1;
    filter: none;
    animation: none;
    transform: none;
  }
}

/* Masquer la recherche uniquement sur l'accueil FarQuest */
body.home-template .g-header [data-search],
body.home-template .g-header .js-search-open,
body.home-template .g-header .g-header__search,
body.home-template .g-header .g-search-button {
  display: none !important;
}

/* Retirer le bouton Search du header uniquement sur l'accueil FarQuest */
body.home-template .g-header > .g-header-button:last-child {
  display: none !important;
}

/* Garder le logo centré malgré la disparition du bouton Search */
body.home-template .g-header {
  grid-template-columns: 1fr auto 1fr;
}

body.home-template .g-header > .g-header-button:first-child {
  justify-self: start;
}

body.home-template .g-header > .in-header {
  justify-self: center;
}

/* Espace vide remplaçant Search sur l'accueil afin de garder le logo centré */
.fq-header__spacer {
  display: block;
  width: 100%;
  min-width: 1px;
}

/* =========================================================
   FAR QUEST — retirer entièrement le header Galerie
   uniquement sur la page d’accueil cinématographique
   ========================================================= */

body.home-template .g-header {
  display: none !important;
}

/* Le hero occupe réellement tout l’écran */
body.home-template .fq-hero {
  min-height: 100svh;
  padding-top: 0 !important;
}

/* Évite tout espace laissé par le header fixe du thème */
body.home-template .g-load-transition__container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}


/* =========================================================
   FARQUEST — HEADER CINÉMATOGRAPHIQUE
   ========================================================= */

body.home-template .fq-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  width: 100%;
  min-height: 104px;
  padding: 24px 42px;

  color: var(--fq-ivory);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.12) 62%,
    transparent 100%
  );

  pointer-events: none;
}

body.home-template .fq-header__menu,
body.home-template .fq-header__brand {
  pointer-events: auto;
}

body.home-template .fq-header__menu {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;

  padding: 12px 0;
  border: 0;

  color: var(--fq-ivory);
  background: transparent;
  cursor: pointer;
}

body.home-template .fq-header__menu-icon {
  display: grid;
  width: 25px;
  gap: 6px;
}

body.home-template .fq-header__menu-icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition:
    width 220ms ease,
    transform 220ms ease;
}

body.home-template .fq-header__menu-icon i:last-child {
  width: 70%;
}

body.home-template .fq-header__menu:hover .fq-header__menu-icon i:last-child {
  width: 100%;
}

body.home-template .fq-header__menu-label {
  font-family: var(--fq-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

body.home-template .fq-header__brand {
  display: grid;
  justify-items: center;
  justify-self: center;

  color: var(--fq-ivory);
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

body.home-template .fq-header__brand-main {
  font-family: var(--fq-heading);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1;
}

body.home-template .fq-header__brand-sub {
  margin-top: 7px;
  color: var(--fq-gold);
  font-family: var(--fq-sans);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.48em;
  line-height: 1;
}

body.home-template .fq-header__balance {
  display: block;
  justify-self: end;
  width: 80px;
}

/* Le hero commence tout en haut de l’écran */
body.home-template .g-load-transition__container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.home-template .fq-hero {
  min-height: 100svh;
  margin-top: 0;
}

/* Adaptation tablette et mobile */
@media (max-width: 760px) {
  body.home-template .fq-header {
    min-height: 82px;
    padding: 18px 22px;
  }

  body.home-template .fq-header__menu-label {
    display: none;
  }

  body.home-template .fq-header__brand-main {
    font-size: 1.15rem;
  }

  body.home-template .fq-header__brand-sub {
    margin-top: 5px;
    font-size: 0.42rem;
    letter-spacing: 0.36em;
  }

  body.home-template .fq-header__balance {
    width: 25px;
  }
}


/* =========================================================
   FARQUEST — TYPOGRAPHIE ART DÉCO PARK LANE NF
   ========================================================= */

body.home-template .fq-hero__title,
body.home-template .fq-header__brand-main {
  font-family: "Park Lane NF", "Bodoni Moda", "Times New Roman", serif;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

body.home-template .fq-hero__title {
  gap: 0.08em;
  letter-spacing: 0.025em;
  line-height: 0.88;
}

body.home-template .fq-header__brand-main {
  letter-spacing: 0.1em;
}

/* Les grands titres de sections gardent une meilleure lisibilité */
body.home-template .fq-section__heading h2,
body.home-template .fq-projects__header h2,
body.home-template .fq-partners h2 {
  font-family: "Park Lane NF", "Bodoni Moda", "Times New Roman", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
}


/* =========================================================
   FARQUEST — AJUSTEMENTS DU HAUT DE PAGE
   ========================================================= */

/*
 * Descendre légèrement FarQuest Pictures afin qu’il ne soit
 * plus collé à la ligne supérieure du cadre.
 */
body.home-template .fq-header__brand {
  position: relative;
  transform: translateY(18px);
}

/*
 * Le header ne doit plus imposer son positionnement initial
 * au bouton de menu.
 */
body.home-template .fq-header__menu {
  position: absolute;
  top: 47px;
  left: 48px;
  z-index: 60;

  width: 24px;
  height: 20px;
  padding: 0;
  gap: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Masquer le mot MENU : seuls les traits restent visibles */
body.home-template .fq-header__menu-label {
  display: none !important;
}

/*
 * Placer les deux traits au centre du petit ornement
 * Art déco situé dans le coin supérieur gauche.
 */
body.home-template .fq-header__menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  width: 19px;
  height: 18px;
}

body.home-template .fq-header__menu-icon i {
  display: block;
  width: 19px;
  height: 1px;
  margin: 0;

  background: var(--fq-gold);
  box-shadow: 0 0 8px rgba(176, 138, 74, 0.22);
}

body.home-template .fq-header__menu-icon i:last-child {
  width: 13px;
  align-self: flex-start;
}

body.home-template .fq-header__menu:hover .fq-header__menu-icon i:last-child {
  width: 19px;
}


/* =========================================================
   FARQUEST — PARK LANE NF SUR TOUTE LA PAGE D’ACCUEIL
   ========================================================= */

body.home-template,
body.home-template .fq-header,
body.home-template .fq-home,
body.home-template .fq-home *,
body.home-template .fq-header *,
body.home-template button,
body.home-template a,
body.home-template input,
body.home-template textarea,
body.home-template select {
  font-family:
    "Park Lane NF",
    "Bodoni Moda",
    "Times New Roman",
    serif !important;
}

/*
 * Park Lane possède naturellement un dessin très espacé.
 * On harmonise les petits textes sans exagérer l’écartement.
 */
body.home-template .fq-eyebrow,
body.home-template .fq-header__brand-sub,
body.home-template .fq-button,
body.home-template .fq-text-link,
body.home-template .fq-hero__scroll,
body.home-template .fq-project__meta {
  font-family:
    "Park Lane NF",
    "Bodoni Moda",
    "Times New Roman",
    serif !important;

  font-weight: 400;
}

/* FarQuest Pictures */
body.home-template .fq-header__brand-main {
  font-family: "Park Lane NF", serif !important;
  font-weight: 400;
  letter-spacing: 0.13em;
}

body.home-template .fq-header__brand-sub {
  margin-top: 5px;
  letter-spacing: 0.32em;
}

/* Grand titre central */
body.home-template .fq-hero__title {
  font-family: "Park Lane NF", serif !important;
  font-style: normal;
  font-weight: 400;
}

/*
 * Les textes en italique forcé par l’ancien design reprennent
 * également le dessin normal de Park Lane.
 */
body.home-template .fq-hero__signature,
body.home-template .fq-manifesto__copy p {
  font-family: "Park Lane NF", serif !important;
  font-style: normal;
}


/* =========================================================
   ADAPTATION MOBILE
   ========================================================= */

@media (max-width: 760px) {
  body.home-template .fq-header__brand {
    transform: translateY(12px);
  }

  body.home-template .fq-header__menu {
    top: 36px;
    left: 34px;
  }

  body.home-template .fq-header__menu-icon {
    width: 17px;
  }

  body.home-template .fq-header__menu-icon i {
    width: 17px;
  }

  body.home-template .fq-header__menu-icon i:last-child {
    width: 11px;
  }

  body.home-template .fq-header__menu:hover .fq-header__menu-icon i:last-child {
    width: 17px;
  }
}


/* =========================================================
   FARQUEST — MANIFESTE CINÉMATOGRAPHIQUE
   ========================================================= */

body.home-template .fq-manifesto {
  overflow: hidden;
  border-top: 1px solid var(--fq-line);
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(176, 138, 74, 0.07),
      transparent 38%
    ),
    var(--fq-black);
}

body.home-template .fq-manifesto__intro {
  width: min(1120px, 100%);
  margin: 0 auto clamp(80px, 10vw, 150px);
  text-align: center;
}

body.home-template .fq-manifesto__intro h2 {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(2.7rem, 5.7vw, 6.6rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.03;
}

body.home-template .fq-manifesto__ornament,
body.home-template .fq-projects__empty-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(220px, 65vw);
  margin: 28px auto 42px;
}

body.home-template .fq-manifesto__ornament span,
body.home-template .fq-projects__empty-ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--fq-gold));
}

body.home-template .fq-manifesto__ornament span:last-child,
body.home-template .fq-projects__empty-ornament span:last-child {
  background: linear-gradient(90deg, var(--fq-gold), transparent);
}

body.home-template .fq-manifesto__ornament i,
body.home-template .fq-projects__empty-ornament i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--fq-gold);
  transform: rotate(45deg);
}

body.home-template .fq-manifesto__body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
  padding-top: clamp(55px, 7vw, 95px);
  border-top: 1px solid var(--fq-line);
}

body.home-template .fq-manifesto__quote {
  margin: 0;
  padding: 0;
  border: 0;
}

body.home-template .fq-manifesto__quote p {
  margin: 0;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

body.home-template .fq-manifesto__copy {
  padding-top: 8px;
}

body.home-template .fq-manifesto__copy p {
  margin: 0 0 24px;
  color: var(--fq-muted);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1.7;
}


/* =========================================================
   FARQUEST — PRODUCTIONS À L’AFFICHE
   ========================================================= */

body.home-template .fq-projects {
  overflow: hidden;
  border-top: 1px solid var(--fq-line);
  background: var(--fq-charcoal);
}

body.home-template .fq-projects__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(65px, 8vw, 120px);
}

body.home-template .fq-projects__header h2 {
  max-width: 850px;
  margin: 18px 0 0;
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.95;
}

body.home-template .fq-projects__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(70px, 9vw, 145px) clamp(30px, 5vw, 75px);
}

body.home-template .fq-project-card:nth-child(even) {
  margin-top: clamp(80px, 10vw, 150px);
}

body.home-template .fq-project-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

body.home-template .fq-project-card__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #090908;
}

body.home-template .fq-project-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transform: scale(1.01);
  transition:
    filter 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.home-template .fq-project-card__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08),
      transparent 45%,
      rgba(0, 0, 0, 0.72)
    );
  transition: background 500ms ease;
}

body.home-template .fq-project-card__index {
  position: absolute;
  top: 25px;
  left: 28px;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

body.home-template .fq-project-card__discover {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 350ms ease,
    transform 350ms ease;
}

body.home-template .fq-project-card__discover i {
  color: var(--fq-gold);
  font-size: 1.3rem;
  font-style: normal;
}

body.home-template .fq-project-card__information {
  padding-top: 28px;
}

body.home-template .fq-project-card__meta {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--fq-gold);
  font-family: "Park Lane NF", serif !important;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.home-template .fq-project-card__separator {
  width: 28px;
  height: 1px;
  background: var(--fq-gold);
}

body.home-template .fq-project-card__information h3 {
  margin: 18px 0 15px;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(2.1rem, 3.7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
}

body.home-template .fq-project-card__information p {
  max-width: 580px;
  margin: 0;
  color: var(--fq-muted);
  font-family: "Park Lane NF", serif !important;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.65;
}

body.home-template .fq-project-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px solid var(--fq-line);
  background:
    radial-gradient(circle, rgba(176, 138, 74, 0.12), transparent 55%),
    #090908;
}

body.home-template .fq-project-card__placeholder span {
  color: var(--fq-gold);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(1.4rem, 3vw, 3rem);
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

body.home-template .fq-project-card:hover img {
  filter: grayscale(0.15) contrast(1.03);
  transform: scale(1.055);
}

body.home-template .fq-project-card:hover .fq-project-card__discover {
  opacity: 1;
  transform: translateY(0);
}

body.home-template .fq-projects__empty {
  max-width: 850px;
  margin: 20px auto 0;
  padding: clamp(80px, 10vw, 140px) 30px;
  border: 1px solid var(--fq-line);
  text-align: center;
}

body.home-template .fq-projects__empty h3 {
  max-width: 680px;
  margin: 25px auto;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(2.3rem, 4.5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.05;
}

body.home-template .fq-projects__empty > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--fq-muted);
  font-family: "Park Lane NF", serif !important;
  font-size: 1.05rem;
  line-height: 1.65;
}


/* =========================================================
   FARQUEST — RESPONSIVE DES SECTIONS
   ========================================================= */

@media (max-width: 900px) {
  body.home-template .fq-manifesto__body {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  body.home-template .fq-projects__grid {
    grid-template-columns: 1fr;
  }

  body.home-template .fq-project-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  body.home-template .fq-projects__header {
    display: grid;
    align-items: start;
    gap: 30px;
  }

  body.home-template .fq-manifesto__intro {
    margin-bottom: 75px;
  }

  body.home-template .fq-project-card__discover {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   FARQUEST — MANIFESTE CINÉMATOGRAPHIQUE
   ========================================================= */

body.home-template .fq-manifesto {
  overflow: hidden;
  border-top: 1px solid var(--fq-line);
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(176, 138, 74, 0.07),
      transparent 38%
    ),
    var(--fq-black);
}

body.home-template .fq-manifesto__intro {
  width: min(1120px, 100%);
  margin: 0 auto clamp(80px, 10vw, 150px);
  text-align: center;
}

body.home-template .fq-manifesto__intro h2 {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(2.7rem, 5.7vw, 6.6rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.03;
}

body.home-template .fq-manifesto__ornament,
body.home-template .fq-projects__empty-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(220px, 65vw);
  margin: 28px auto 42px;
}

body.home-template .fq-manifesto__ornament span,
body.home-template .fq-projects__empty-ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--fq-gold));
}

body.home-template .fq-manifesto__ornament span:last-child,
body.home-template .fq-projects__empty-ornament span:last-child {
  background: linear-gradient(90deg, var(--fq-gold), transparent);
}

body.home-template .fq-manifesto__ornament i,
body.home-template .fq-projects__empty-ornament i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--fq-gold);
  transform: rotate(45deg);
}

body.home-template .fq-manifesto__body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
  padding-top: clamp(55px, 7vw, 95px);
  border-top: 1px solid var(--fq-line);
}

body.home-template .fq-manifesto__quote {
  margin: 0;
  padding: 0;
  border: 0;
}

body.home-template .fq-manifesto__quote p {
  margin: 0;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

body.home-template .fq-manifesto__copy {
  padding-top: 8px;
}

body.home-template .fq-manifesto__copy p {
  margin: 0 0 24px;
  color: var(--fq-muted);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1.7;
}


/* =========================================================
   FARQUEST — PRODUCTIONS À L’AFFICHE
   ========================================================= */

body.home-template .fq-projects {
  overflow: hidden;
  border-top: 1px solid var(--fq-line);
  background: var(--fq-charcoal);
}

body.home-template .fq-projects__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(65px, 8vw, 120px);
}

body.home-template .fq-projects__header h2 {
  max-width: 850px;
  margin: 18px 0 0;
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.95;
}

body.home-template .fq-projects__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(70px, 9vw, 145px) clamp(30px, 5vw, 75px);
}

body.home-template .fq-project-card:nth-child(even) {
  margin-top: clamp(80px, 10vw, 150px);
}

body.home-template .fq-project-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

body.home-template .fq-project-card__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #090908;
}

body.home-template .fq-project-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transform: scale(1.01);
  transition:
    filter 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.home-template .fq-project-card__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08),
      transparent 45%,
      rgba(0, 0, 0, 0.72)
    );
  transition: background 500ms ease;
}

body.home-template .fq-project-card__index {
  position: absolute;
  top: 25px;
  left: 28px;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

body.home-template .fq-project-card__discover {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 350ms ease,
    transform 350ms ease;
}

body.home-template .fq-project-card__discover i {
  color: var(--fq-gold);
  font-size: 1.3rem;
  font-style: normal;
}

body.home-template .fq-project-card__information {
  padding-top: 28px;
}

body.home-template .fq-project-card__meta {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--fq-gold);
  font-family: "Park Lane NF", serif !important;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.home-template .fq-project-card__separator {
  width: 28px;
  height: 1px;
  background: var(--fq-gold);
}

body.home-template .fq-project-card__information h3 {
  margin: 18px 0 15px;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(2.1rem, 3.7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
}

body.home-template .fq-project-card__information p {
  max-width: 580px;
  margin: 0;
  color: var(--fq-muted);
  font-family: "Park Lane NF", serif !important;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.65;
}

body.home-template .fq-project-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px solid var(--fq-line);
  background:
    radial-gradient(circle, rgba(176, 138, 74, 0.12), transparent 55%),
    #090908;
}

body.home-template .fq-project-card__placeholder span {
  color: var(--fq-gold);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(1.4rem, 3vw, 3rem);
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

body.home-template .fq-project-card:hover img {
  filter: grayscale(0.15) contrast(1.03);
  transform: scale(1.055);
}

body.home-template .fq-project-card:hover .fq-project-card__discover {
  opacity: 1;
  transform: translateY(0);
}

body.home-template .fq-projects__empty {
  max-width: 850px;
  margin: 20px auto 0;
  padding: clamp(80px, 10vw, 140px) 30px;
  border: 1px solid var(--fq-line);
  text-align: center;
}

body.home-template .fq-projects__empty h3 {
  max-width: 680px;
  margin: 25px auto;
  color: var(--fq-ivory);
  font-family: "Park Lane NF", serif !important;
  font-size: clamp(2.3rem, 4.5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.05;
}

body.home-template .fq-projects__empty > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--fq-muted);
  font-family: "Park Lane NF", serif !important;
  font-size: 1.05rem;
  line-height: 1.65;
}


/* =========================================================
   FARQUEST — RESPONSIVE DES SECTIONS
   ========================================================= */

@media (max-width: 900px) {
  body.home-template .fq-manifesto__body {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  body.home-template .fq-projects__grid {
    grid-template-columns: 1fr;
  }

  body.home-template .fq-project-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  body.home-template .fq-projects__header {
    display: grid;
    align-items: start;
    gap: 30px;
  }

  body.home-template .fq-manifesto__intro {
    margin-bottom: 75px;
  }

  body.home-template .fq-project-card__discover {
    opacity: 1;
    transform: none;
  }
}
