@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@100;300;400;600&family=DM+Mono:wght@300;400&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  background: #1a1714;
  color: #faf6f0;
}

*::selection {
  background: #1a1714;
  color: #faf6f0;
}

em::-moz-selection, span::-moz-selection {
  color: #c9a96e;
  background: #1a1714;
}

em::selection,
span::selection {
  color: #c9a96e;
  background: #1a1714;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: "Cormorant Garamond", "Garamond", serif;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: #0a0a0a;
  background: #faf6f0;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.7;
}
body.is-loading {
  overflow: hidden;
}
body.nav-open {
  overflow: hidden;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #1a1714;
}

body::-webkit-scrollbar-thumb {
  background-color: #c9a96e;
  border-radius: 20px;
  border: 3px solid #c9a96e;
}

img {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

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

ul, ol {
  list-style: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #c9a96e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}
.cursor__ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.4s ease, height 0.4s ease, border-color 0.3s ease;
}
.cursor.is-hovering .cursor__dot {
  width: 0;
  height: 0;
}
.cursor.is-hovering .cursor__ring {
  width: 70px;
  height: 70px;
  border-color: #c9a96e;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__logo {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #c9a96e;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  clip-path: inset(0 100% 0 0);
  animation: revealText 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.preloader__bar {
  width: 200px;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
  position: relative;
  overflow: hidden;
}
.preloader__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #c9a96e;
  transform: scaleX(0);
  transform-origin: left;
  animation: loadBar 2s ease 0.5s forwards;
}
.preloader__counter {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #9e9188;
}

@keyframes revealText {
  to {
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes loadBar {
  to {
    transform: scaleX(1);
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav--maison {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav__logo {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.4rem;
  color: #f5f0ea;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  z-index: 1;
  position: relative;
}
.nav__logo::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a96e;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__logo:hover::after {
  width: 100%;
}
.nav__links {
  display: flex;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
}
.nav__link {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #e8e2da;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a96e;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover {
  color: #c9a96e;
}
.nav__link:hover::after {
  width: 100%;
}
.nav__link--active {
  color: #c9a96e;
}
.nav__link--active::after {
  width: 100%;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: none;
  padding: 10px;
  z-index: 210;
  background: transparent;
  border: none;
  position: relative;
}
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }
}
.nav__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #f5f0ea;
  border-radius: 2px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav__mobile {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  visibility: hidden;
}
.nav__mobile.is-open {
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
}
.nav__mobile-link {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 8vw, 4rem);
  color: #f5f0ea;
  font-style: italic;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__mobile-link:hover {
  color: #c9a96e;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}
.hero__bg-text {
  position: absolute;
  bottom: -0.1em;
  left: -0.02em;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(10rem, 25vw, 30rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.12);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  animation: floatText 6s ease-in-out infinite;
}
@keyframes floatText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1.5s forwards;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #c9a96e;
}
.hero__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 900;
  color: #f5f0ea;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  overflow: hidden;
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}
.hero__title-line:nth-child(1) {
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.7s forwards;
}
.hero__title-line:nth-child(2) {
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.9s forwards;
  font-style: italic;
  color: #c9a96e;
}
.hero__title-line:nth-child(3) {
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 2.1s forwards;
}
.hero__sub {
  font-family: "Cormorant Garamond", "Garamond", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  font-weight: 300;
  color: #9e9188;
  max-width: 500px;
  line-height: 1.5;
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 2.3s forwards;
}
.hero__actions {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 2.5s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 3s forwards;
}
.hero__scroll-label {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #9e9188;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, #c9a96e 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.hero__images {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero__images {
    display: none;
  }
}
.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
  animation: kenBurns 12s ease-in-out infinite alternate;
  filter: grayscale(20%) contrast(1.1);
}
@keyframes kenBurns {
  from {
    transform: scale(1) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-20px);
  }
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a0a0a 40%, transparent 80%);
  z-index: 1;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 1rem 2.5rem;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn--primary {
  background: #c9a96e;
  color: #0a0a0a;
}
.btn--primary::before {
  background: #0a0a0a;
}
.btn--primary:hover {
  color: #c9a96e;
}
.btn--outline {
  background: transparent;
  color: #f5f0ea;
  border: 1px solid rgba(245, 240, 234, 0.4);
}
.btn--outline::before {
  background: rgba(245, 240, 234, 0.08);
  transform: scaleX(0);
}
.btn--outline:hover {
  border-color: #c9a96e;
  color: #c9a96e;
}
.btn--dark {
  background: #0a0a0a;
  color: #c9a96e;
}
.btn--dark::before {
  background: #c9a96e;
}
.btn--dark:hover {
  color: #0a0a0a;
}
.btn__arrow {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover .btn__arrow {
  transform: translateX(5px);
}

.marquee {
  background: #c9a96e;
  overflow: hidden;
  padding: 1rem 0;
  display: flex;
}
.marquee__track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 20s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #0a0a0a;
  font-weight: 600;
}
.marquee__item::after {
  content: "✦";
  font-size: 0.8em;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.maisons {
  padding: 16rem clamp(1.5rem, 5vw, 6rem);
  background: #faf6f0;
  position: relative;
}
.maisons__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.maisons__eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.maisons__eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #c9a96e;
}
.maisons__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #0a0a0a;
  max-width: 600px;
}
.maisons__title em {
  font-style: italic;
  color: #8b6f3a;
}
.maisons__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .maisons__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 768px) {
  .maisons__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .maisons__grid {
    grid-template-columns: 1fr;
  }
}

.maison-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.maison-card--large {
  grid-column: span 5;
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .maison-card--large {
    grid-column: span 6;
  }
}
.maison-card--medium {
  grid-column: span 4;
}
@media (max-width: 1024px) {
  .maison-card--medium {
    grid-column: span 3;
  }
}
@media (max-width: 768px) {
  .maison-card--medium {
    grid-column: span 1;
  }
}
.maison-card--small {
  grid-column: span 3;
}
@media (max-width: 1024px) {
  .maison-card--small {
    grid-column: span 3;
  }
}
@media (max-width: 768px) {
  .maison-card--small {
    grid-column: span 1;
  }
}
.maison-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.maison-card--large .maison-card__image-wrap {
  aspect-ratio: 4/5;
}
.maison-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(30%);
}
.maison-card:hover .maison-card__image {
  transform: scale(1.07);
  filter: grayscale(0%);
}
.maison-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
  opacity: 0.6;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.maison-card__overlay--chanel, .maison-card__overlay--givenchy, .maison-card__overlay--balenciaga {
  background: linear-gradient(0deg, transparent 5%, #0a0a0a 100%);
}
.maison-card:hover .maison-card__overlay {
  opacity: 0.8;
}
.maison-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 2rem;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.maison-card__content--chanel, .maison-card__content--givenchy, .maison-card__content--balenciaga {
  top: 0%;
}
.maison-card:hover .maison-card__content {
  transform: translateY(0);
}
.maison-card__year {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #c9a96e;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.maison-card__name {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #f5f0ea;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.maison-card__city {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: bold !important;
  letter-spacing: 0.2em;
  color: #c9a96e;
  text-transform: uppercase;
}
.maison-card__desc {
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: bold;
  color: #e8e2da;
  margin-top: 1rem;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.maison-card:hover .maison-card__desc {
  max-height: 100px;
  opacity: 1;
}
.maison-card__tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: #c9a96e;
  color: #0a0a0a;
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  font-weight: 600;
}

.histoire {
  padding: 16rem clamp(1.5rem, 5vw, 6rem);
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.histoire__bg-ornament {
  position: absolute;
  top: -5%;
  right: -10%;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(15rem, 40vw, 50rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.05);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1;
}
.histoire__header {
  text-align: center;
  margin-bottom: 8rem;
  position: relative;
  z-index: 1;
}
.histoire__eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 2rem;
}
.histoire__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 5rem);
  color: #f5f0ea;
  font-style: italic;
  font-weight: 400;
}
.histoire__title span {
  display: block;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-style: normal;
  font-family: "Josefin Sans", "Futura", sans-serif;
  letter-spacing: 0.3em;
  color: #9e9188;
  margin-top: 1rem;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}
.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, #c9a96e 20%, #c9a96e 80%, transparent);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .timeline__line {
    left: 20px;
  }
}
.timeline__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 8rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.timeline__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline__item:nth-child(even) .timeline__content {
  order: 3;
  text-align: left;
}
.timeline__item:nth-child(even) .timeline__dot {
  order: 2;
}
.timeline__item:nth-child(even) .timeline__spacer {
  order: 1;
}
.timeline__item:nth-child(odd) .timeline__content {
  order: 1;
  text-align: right;
}
.timeline__item:nth-child(odd) .timeline__dot {
  order: 2;
}
.timeline__item:nth-child(odd) .timeline__spacer {
  order: 3;
}
@media (max-width: 768px) {
  .timeline__item {
    grid-template-columns: 50px 1fr;
    gap: 2rem;
  }
  .timeline__item .timeline__content,
  .timeline__item .timeline__spacer {
    display: none !important;
  }
  .timeline__item .timeline__content {
    display: block !important;
    order: 2 !important;
    text-align: left !important;
    grid-column: 2;
  }
  .timeline__item .timeline__dot {
    order: 1 !important;
    grid-column: 1;
  }
}
.timeline__dot {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.timeline__dot-inner {
  width: 16px;
  height: 16px;
  background: #c9a96e;
  border-radius: 50%;
  border: 3px solid #0a0a0a;
  box-shadow: 0 0 0 1px #c9a96e;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline__item:hover .timeline__dot-inner {
  transform: scale(1.5);
  box-shadow: 0 0 0 1px #c9a96e, 0 0 20px rgba(201, 169, 110, 0.5);
}
.timeline__content {
  padding: 2rem;
  background: rgba(245, 240, 234, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline__item:hover .timeline__content {
  background: rgba(245, 240, 234, 0.06);
  border-color: rgba(201, 169, 110, 0.3);
}
.timeline__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #8b6f3a 0%, #c9a96e 50%, #e8d5b0 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline__item:hover .timeline__content::before {
  transform: scaleX(1);
}
.timeline__year {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #c9a96e;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.timeline__era {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9e9188;
  margin-bottom: 1rem;
}
.timeline__event {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #f5f0ea;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.timeline__desc {
  font-size: 18px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #9e9188;
  line-height: 1.6;
}

.mannequins {
  padding: 16rem clamp(1.5rem, 5vw, 6rem);
  background: #f0ece4;
  position: relative;
  overflow: hidden;
}
.mannequins__header {
  margin-bottom: 8rem;
}
.mannequins__eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #8b6f3a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mannequins__eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #8b6f3a;
}
.mannequins__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1;
}
.mannequins__title em {
  display: block;
  font-style: italic;
  color: #8b6f3a;
}
.mannequins__carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2rem;
  cursor: grab;
}
.mannequins__carousel::-webkit-scrollbar {
  display: none;
}
.mannequins__carousel.is-grabbing {
  cursor: grabbing;
}
.mannequins__arrows {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}
.mannequins__arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(10, 10, 10, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
}
.mannequins__arrow:hover {
  background: #0a0a0a;
  color: #c9a96e;
  border-color: #0a0a0a;
}

.mannequin-card {
  min-width: 320px;
  scroll-snap-align: start;
  flex-shrink: 0;
  position: relative;
  cursor: none;
}
@media (max-width: 640px) {
  .mannequin-card {
    min-width: 280px;
  }
}
.mannequin-card__image-wrap {
  position: relative;
  width: 320px;
  height: 450px;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #e8e2da;
}
.mannequin-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(15%);
}
.mannequin-card:hover .mannequin-card__image {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.mannequin-card__badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: #0a0a0a;
  color: #c9a96e;
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.mannequin-card__info {
  padding: 2rem 0.5rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}
.mannequin-card__name {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #0a0a0a;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.mannequin-card__origin {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #9e9188;
  text-transform: uppercase;
}
.mannequin-card__maisons {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.mannequin-card__maison-tag {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: #8b6f3a;
}

.france {
  padding: 16rem clamp(1.5rem, 5vw, 6rem);
  background: #2a2520;
  color: #f5f0ea;
  position: relative;
  overflow: hidden;
}
.france__bg-map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.04;
  pointer-events: none;
}
.france__bg-map svg {
  width: 80%;
  height: 80%;
  fill: #c9a96e;
}
.france__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .france__layout {
    grid-template-columns: 1fr;
  }
}
.france__eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.france__eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #c9a96e;
}
.france__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 4rem;
}
.france__title em {
  color: #c9a96e;
  font-style: normal;
}
.france__text {
  color: #9e9188;
  line-height: 1.8;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  margin-bottom: 2rem;
  font-style: italic;
}
.france__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding-top: 4rem;
}
@media (max-width: 640px) {
  .france__stats {
    grid-template-columns: 1fr 1fr;
  }
}
.france__stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.france__stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.france__stat-number {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #c9a96e;
  font-weight: 900;
  line-height: 1;
}
.france__stat-label {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #9e9188;
  text-transform: uppercase;
  margin-top: 4px;
}
.france__visual {
  position: relative;
}
.france__image-stack {
  position: relative;
  height: 600px;
}
@media (max-width: 768px) {
  .france__image-stack {
    height: 400px;
  }
}
.france__img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.france__img--main {
  top: 0;
  left: 10%;
  width: 65%;
  height: 80%;
  filter: grayscale(20%);
  transition: filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.france__img--accent {
  bottom: 0;
  right: 0;
  width: 45%;
  height: 55%;
  border: 4px solid #2a2520;
  filter: grayscale(30%);
  transition: filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.france__img:hover {
  filter: grayscale(0%);
}
.france__badge {
  position: absolute;
  top: 2rem;
  left: 0;
  background: #c9a96e;
  color: #0a0a0a;
  padding: 2rem;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  font-style: italic;
  z-index: 2;
}

.couturiers {
  padding: 16rem clamp(1.5rem, 5vw, 6rem);
  background: #f5f0ea;
}
.couturiers__header {
  text-align: center;
  margin-bottom: 8rem;
}
.couturiers__eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
}
.couturiers__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.05;
}
.couturiers__title em {
  font-style: italic;
  color: #8b6f3a;
}
.couturiers__filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}
.couturiers__filter-btn {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(10, 10, 10, 0.2);
  background: transparent;
  cursor: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: #9e9188;
}
.couturiers__filter-btn:hover, .couturiers__filter-btn.is-active {
  background: #0a0a0a;
  color: #c9a96e;
  border-color: #0a0a0a;
}
.couturiers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.couturier-card {
  position: relative;
  overflow: hidden;
  background: #f0ece4;
  cursor: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.couturier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 80px rgba(10, 10, 10, 0.3);
}
.couturier-card__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #e8e2da;
}
.couturier-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  filter: sepia(10%);
}
.couturier-card:hover .couturier-card__image {
  transform: scale(1.06);
}
.couturier-card__era-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(10, 10, 10, 0.9);
  color: #c9a96e;
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  padding: 4px 8px;
}
.couturier-card__content {
  padding: 2rem;
}
.couturier-card__nationality {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #9e9188;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.couturier-card__name {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.couturier-card__signature {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  color: #8b6f3a;
  font-style: italic;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}
.couturier-card__reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.couturier-card:hover .couturier-card__reveal {
  max-height: 200px;
}
.couturier-card__desc {
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  color: #9e9188;
  line-height: 1.6;
  padding-top: 0.5rem;
}

.quote-section {
  padding: 16rem clamp(1.5rem, 5vw, 6rem);
  background: #c9a96e;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quote-section__bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.quote-section__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.quote-section__mark {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(5rem, 12vw, 10rem);
  color: rgba(10, 10, 10, 0.15);
  line-height: 0.5;
  margin-bottom: 2rem;
  display: block;
  font-style: italic;
}
.quote-section__text {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-style: italic;
  color: #0a0a0a;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 4rem;
}
.quote-section__author {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.6);
}
.quote-section__author::before {
  content: "— ";
}
.quote-section__dots {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 4rem;
}
.quote-section__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.3);
  cursor: none;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-section__dot.is-active {
  background: #0a0a0a;
  transform: scale(1.4);
}

.histoire-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background: #0a0a0a;
  padding: 16rem clamp(1.5rem, 5vw, 6rem) 8rem;
  position: relative;
  overflow: hidden;
}
.histoire-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201, 169, 110, 0.08) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201, 169, 110, 0.08) 40px);
}
.histoire-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.histoire-hero__eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.histoire-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #c9a96e;
}
.histoire-hero__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 900;
  color: #f5f0ea;
  line-height: 1;
  max-width: 800px;
}
.histoire-hero__title em {
  display: block;
  font-style: italic;
  color: #c9a96e;
}
.histoire-hero__subtitle {
  margin-top: 4rem;
  font-family: "Cormorant Garamond", "Garamond", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  color: #9e9188;
  font-style: italic;
  max-width: 600px;
  line-height: 1.6;
}

.histoire-intro {
  padding: 16rem clamp(1.5rem, 5vw, 6rem);
  background: #faf6f0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16rem;
  align-items: center;
}
@media (max-width: 768px) {
  .histoire-intro {
    grid-template-columns: 1fr;
    gap: 8rem;
  }
}
.histoire-intro__number {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(201, 169, 110, 0.3);
  line-height: 1;
  font-style: italic;
  text-align: center;
}
.histoire-intro__text-eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 2rem;
}
.histoire-intro__text-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 2rem;
  font-style: italic;
}
.histoire-intro__text-body {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: #9e9188;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.histoire-eras {
  padding: 16rem clamp(1.5rem, 5vw, 6rem);
  background: #f5f0ea;
}
.histoire-eras__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.era-card {
  padding: 4rem 2rem;
  border: 1px solid rgba(10, 10, 10, 0.1);
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.era-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #8b6f3a 0%, #c9a96e 50%, #e8d5b0 100%);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.era-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 60px rgba(10, 10, 10, 0.15);
}
.era-card:hover::before {
  transform: scaleX(1);
}
.era-card__period {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #c9a96e;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.era-card__name {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 2rem;
}
.era-card__desc {
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  color: #9e9188;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.era-card__figures {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.era-card__figure {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  background: rgba(201, 169, 110, 0.1);
  color: #8b6f3a;
  border: 1px solid rgba(201, 169, 110, 0.3);
}
.era-card__bg-year {
  position: absolute;
  right: -0.1em;
  bottom: -0.2em;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  color: rgba(10, 10, 10, 0.03);
  line-height: 1;
  pointer-events: none;
  font-style: italic;
}

.mannequins-hero {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1714;
}
.mannequins-hero__bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0.2;
  pointer-events: none;
}
.mannequins-hero__bg-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
}
.mannequins-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.85) 100%);
}
.mannequins-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.mannequins-hero__eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 2rem;
}
.mannequins-hero__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 900;
  color: #f5f0ea;
  line-height: 0.95;
}
.mannequins-hero__title span {
  display: block;
  color: #c9a96e;
  font-style: italic;
}
.mannequins-hero__desc {
  margin-top: 4rem;
  max-width: 550px;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  color: #9e9188;
  line-height: 1.6;
}

.mannequins-hall {
  padding: 16rem clamp(1.5rem, 5vw, 6rem);
  background: #f5f0ea;
}
.mannequins-hall__header {
  text-align: center;
  margin-bottom: 8rem;
}
.mannequins-hall__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 700;
  color: #0a0a0a;
  font-style: italic;
}
.mannequins-hall__decade-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  font-weight: 400;
  color: #c9a96e;
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}
.mannequins-hall__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 8rem;
}

.maisons-hero {
  min-height: 75vh;
  background: #f5f0ea;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.maisons-hero__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.maisons-hero__bg-text span {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(12rem, 30vw, 35rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(10, 10, 10, 0.04);
  white-space: nowrap;
  font-style: italic;
  animation: slowScroll 20s linear infinite;
}
@keyframes slowScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}
.maisons-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  padding-top: 120px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
@media (max-width: 768px) {
  .maisons-hero__content {
    grid-template-columns: 1fr;
  }
}
.maisons-hero__eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 2rem;
}
.maisons-hero__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 900;
  color: #0a0a0a;
  line-height: 0.95;
  font-style: italic;
}
.maisons-hero__title span {
  display: block;
  color: #c9a96e;
}
.maisons-hero__image {
  width: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(15%);
}

.maisons-full {
  padding: 16rem clamp(1.5rem, 5vw, 6rem);
  background: #f0ece4;
}
.maisons-full__section-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  font-weight: 400;
  color: #8b6f3a;
  font-style: italic;
  margin-bottom: 8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}
.maisons-full__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 4rem;
  margin-bottom: 16rem;
}
@media (max-width: 640px) {
  .maisons-full__grid {
    grid-template-columns: 1fr;
  }
}

.maison-full-card {
  background: #f5f0ea;
  overflow: hidden;
  cursor: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.maison-full-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 80px rgba(10, 10, 10, 0.3);
}
.maison-full-card__image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.maison-full-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.maison-full-card:hover .maison-full-card__image {
  transform: scale(1.07);
}
.maison-full-card__body {
  padding: 4rem 2rem;
  border-top: 3px solid #c9a96e;
}
.maison-full-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.maison-full-card__year {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  color: #9e9188;
}
.maison-full-card__origin {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.1);
  padding: 2px 8px;
}
.maison-full-card__name {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0a0a0a;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.maison-full-card__founder {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9e9188;
  margin-bottom: 2rem;
}
.maison-full-card__desc {
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  color: #9e9188;
  line-height: 1.7;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  padding-top: 2rem;
}
.maison-full-card__dna {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.maison-full-card__dna-tag {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(10, 10, 10, 0.05);
  color: #9e9188;
  border: 1px solid rgba(10, 10, 10, 0.1);
}

.footer {
  background: #0a0a0a;
  color: #f5f0ea;
  padding: 16rem clamp(1.5rem, 5vw, 6rem) 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8rem;
  margin-bottom: 8rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__brand-logo {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 2rem;
  color: #c9a96e;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: block;
}
.footer__brand-desc {
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #9e9188;
  line-height: 1.7;
  max-width: 300px;
  font-style: italic;
}
.footer__column-title {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  font-size: 20px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.footer__column-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__column-link {
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #9e9188;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-style: italic;
}
.footer__column-link:hover {
  color: #c9a96e;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom-copy {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(158, 145, 136, 0.5);
}
.footer__bottom-made {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  color: rgba(158, 145, 136, 0.4);
}
.footer__bottom-made span {
  color: #c9a96e;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-40px);
}
.reveal--left.is-visible {
  transform: translateX(0);
}
.reveal--right {
  transform: translateX(40px);
}
.reveal--right.is-visible {
  transform: translateX(0);
}
.reveal--scale {
  transform: scale(0.92);
}
.reveal--scale.is-visible {
  transform: scale(1);
}

.stagger:nth-child(1) {
  transition-delay: 0s;
}
.stagger:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger:nth-child(3) {
  transition-delay: 0.2s;
}
.stagger:nth-child(4) {
  transition-delay: 0.3s;
}
.stagger:nth-child(5) {
  transition-delay: 0.4s;
}
.stagger:nth-child(6) {
  transition-delay: 0.5s;
}

.particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: #c9a96e;
  z-index: 201;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

.divider {
  width: 60px;
  height: 1px;
  background: #c9a96e;
  margin: 2rem 0;
}
.divider--center {
  margin-left: auto;
  margin-right: auto;
}
.divider--wide {
  width: 120px;
}

.section-header {
  margin-bottom: 8rem;
}
.section-header__eyebrow {
  font-family: "Josefin Sans", "Futura", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-header__eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #c9a96e;
}
.section-header__title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
}
.section-header__title em {
  font-style: italic;
  color: #8b6f3a;
}
.section-header--center {
  text-align: center;
}
.section-header--center .section-header__eyebrow {
  justify-content: center;
}
.section-header--center .section-header__eyebrow::before {
  display: none;
}
.section-header--center .section-header__eyebrow::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #c9a96e;
}

.credits-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background: #0a0a0a;
  padding: 0 clamp(1.5rem, 5vw, 6rem) clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}
.credits-hero__ornament {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  pointer-events: none;
}
.credits-hero__ornament-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(10rem, 22vw, 26rem);
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.08);
  white-space: nowrap;
  line-height: 1;
  transform: translateX(10%);
}
.credits-hero__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15) 30%, rgba(201, 169, 110, 0.15) 70%, transparent);
}
.credits-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
}
.credits-hero__eyebrow {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}
.credits-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #c9a96e;
}
.credits-hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 900;
  color: #f5f0ea;
  line-height: 0.95;
  letter-spacing: -0.02em;
  overflow: hidden;
}
.credits-hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}
.credits-hero__title-line:nth-child(1) {
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}
.credits-hero__title-line:nth-child(2) {
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
  color: #c9a96e;
  font-style: italic;
}
.credits-hero__date {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  color: #9e9188;
  margin-top: 1.5rem;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeUp 0.8s ease 2s forwards;
}

.credits-body {
  background: #faf6f0;
  /* INTRO BAND */
}
.credits-body .credits-intro__number {
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900;
  font-style: italic;
  color: rgba(10, 10, 10, 0.15);
  line-height: 1;
  text-align: center;
}
.credits-body .credits-intro__text p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: #0a0a0a;
  line-height: 1.7;
  font-style: italic;
}
.credits-body .credits-intro__text p + p {
  margin-top: 1rem;
}
.credits-body {
  /* CONTENT WRAPPER */
}
.credits-body .credits-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 10rem) clamp(1.5rem, 5vw, 6rem);
  display: grid;
  gap: clamp(4rem, 8vw, 7rem);
}
.credits-body {
  /* SECTION */
}
.credits-body .credits-section__header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
}
.credits-body .credits-section__number {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  color: rgba(201, 169, 110, 0.3);
  line-height: 1;
  flex-shrink: 0;
}
.credits-body .credits-section__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.1;
}
.credits-body .credits-section__title em {
  font-style: italic;
  color: #8b6f3a;
}
.credits-body {
  /* TEXT BLOCKS */
}
.credits-body .credits-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #2a2520;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.credits-body .credits-text:last-child {
  margin-bottom: 0;
}
.credits-body .credits-text strong {
  font-weight: 600;
  color: #0a0a0a;
}
.credits-body .credits-text a {
  color: #8b6f3a;
  border-bottom: 1px solid rgba(139, 111, 58, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.credits-body .credits-text a:hover {
  color: #c9a96e;
  border-color: #c9a96e;
}
.credits-body .credits-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.credits-body .credits-info-card {
  background: #fff;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid #c9a96e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.credits-body .credits-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(10, 10, 10, 0.1);
}
.credits-body .credits-info-card__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 0.5rem;
}
.credits-body .credits-info-card__value {
  font-family: "Playfair Display", serif;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: #0a0a0a;
  font-style: italic;
  line-height: 1.4;
}
.credits-body .credits-info-card__value__sub {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  color: #9e9188;
  margin-top: 0.4rem;
}
.credits-body {
  /* CREDITS TABLE */
}
.credits-body .credits-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.credits-body .credits-table th {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a96e;
  text-align: left;
  padding: 0.75rem 1rem;
  background: #f0ece4;
  border-bottom: 2px solid rgba(201, 169, 110, 0.3);
}
.credits-body .credits-table td {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #2a2520;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
  vertical-align: top;
  line-height: 1.5;
}
.credits-body .credits-table tr:last-child td {
  border-bottom: none;
}
.credits-body .credits-table tr:hover td {
  background: rgba(201, 169, 110, 0.04);
}
.credits-body .credits-table td:first-child {
  font-style: italic;
  font-weight: 600;
  color: #0a0a0a;
  width: 35%;
}
.credits-body .credits-table td a {
  color: #8b6f3a;
  border-bottom: 1px solid rgba(139, 111, 58, 0.3);
}
.credits-body .credits-table td a:hover {
  color: #c9a96e;
}
.credits-body {
  /* RIGHTS LIST */
}
.credits-body .credits-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.credits-body .credits-list__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: #f0ece4;
  border-right: 3px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.credits-body .credits-list__item:hover {
  border-right-color: #c9a96e;
  background: #e8e2da;
}
.credits-body .credits-list__bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: #c9a96e;
  border-radius: 50%;
  margin-top: 0.55rem;
}
.credits-body .credits-list__text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #2a2520;
  line-height: 1.65;
}
.credits-body .credits-list__text strong {
  font-weight: 600;
  color: #0a0a0a;
}
.credits-body {
  /* CONTACT BLOCK */
}
.credits-body .credits-contact {
  background: #0a0a0a;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.credits-body .credits-contact__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: #f5f0ea;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.credits-body .credits-contact__title em {
  color: #c9a96e;
  font-style: normal;
}
.credits-body .credits-contact__text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #9e9188;
  line-height: 1.7;
  font-style: italic;
}
.credits-body .credits-contact__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.credits-body .credits-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.credits-body .credits-contact__item:hover {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(201, 169, 110, 0.04);
}
.credits-body .credits-contact__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.credits-body .credits-contact__item-label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 0.3rem;
}
.credits-body .credits-contact__item-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #f5f0ea;
  font-style: italic;
}
.credits-body .credits-contact__item-value a {
  color: #f5f0ea;
  transition: color 0.2s ease;
}
.credits-body .credits-contact__item-value a:hover {
  color: #c9a96e;
}
.credits-body {
  /* UPDATE BADGE */
}
.credits-body .credits-update {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}
.credits-body .credits-update__dot {
  width: 6px;
  height: 6px;
  background: #c9a96e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.credits-body .credits-update__text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a96e;
}
.credits-body {
  /* DIVIDER */
}
.credits-body .credits-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.4) 50%, transparent);
}
.credits-body {
  /* ── ACCORDION ──────────────────────────────────────── */
}
.credits-body .accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.credits-body .accordion__item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.credits-body .accordion__item:last-child {
  border-bottom: none;
}
.credits-body .accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: none;
  text-align: left;
  transition: background 0.25s ease;
  position: relative;
}
.credits-body .accordion__trigger::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #c9a96e;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.credits-body .accordion__trigger:hover,
.credits-body .accordion .accordion__item.is-open .accordion__trigger {
  background: rgba(201, 169, 110, 0.05);
}
.credits-body .accordion .accordion__item.is-open .accordion__trigger::before {
  transform: scaleY(1);
}
.credits-body .accordion .accordion__trigger-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.credits-body .accordion__index {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  color: #c9a96e;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  opacity: 0.7;
}
.credits-body .accordion__label {
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #0a0a0a;
  font-style: italic;
  transition: color 0.2s ease;
}
.credits-body .accordion .accordion__trigger:hover .accordion__label,
.credits-body .accordion .accordion__item.is-open .accordion__label {
  color: #8b6f3a;
}
.credits-body .accordion .accordion__trigger-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.credits-body .accordion__count {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9e9188;
  background: rgba(201, 169, 110, 0.1);
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(201, 169, 110, 0.25);
  transition: background 0.25s ease, color 0.25s ease;
}
.credits-body .accordion__item.is-open .accordion__count {
  background: rgba(201, 169, 110, 0.18);
  color: #8b6f3a;
}
.credits-body .accordion__icon {
  width: 18px;
  height: 18px;
  color: #c9a96e;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.credits-body .accordion .accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
}
.credits-body .accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.credits-body .accordion__item.is-open .accordion__body {
  max-height: inherit;
}
.credits-body .accordion__inner {
  padding: 0 1.75rem 1.75rem 1.75rem;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}
.credits-body .accordion__desc {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #9e9188;
  line-height: 1.75;
  font-style: italic;
  padding: 1.25rem 0 1.25rem 0;
}
.credits-body .accordion__table {
  margin-top: 0 !important;
}
.credits-body .accordion__note {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9e9188;
  background: rgba(201, 169, 110, 0.06);
  border-left: 3px solid rgba(201, 169, 110, 0.4);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* BACK TO TOP */
.credits-back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #faf6f0;
}
.credits-back-top__btn {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9e9188;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: none;
}
.credits-back-top__btn:hover {
  color: #c9a96e;
}
.credits-back-top__arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(0deg, #c9a96e, transparent);
  transition: height 0.3s ease;
}
.credits-back-top__btn:hover .credits-back-top__arrow {
  height: 60px;
}
.credits-back-top {
  /* ANIMATIONS */
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-transition {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9997;
  transform: scaleY(0);
  transform-origin: bottom;
}
.page-transition.is-entering {
  animation: pageIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-transition.is-leaving {
  transform-origin: top;
  animation: pageOut 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageIn {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes pageOut {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
@media (max-width: 768px) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
  .btn {
    cursor: pointer;
  }
  .nav__hamburger {
    cursor: pointer;
  }
  .nav__link,
  .mannequin-card,
  .maison-card,
  .couturier-card,
  .era-card,
  .maison-full-card {
    cursor: pointer;
  }
}
@media (max-width: 640px) {
  .hero__actions {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .credits-intro {
    grid-template-columns: 1fr;
  }
  .credits-contact {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=main.css.map */