/* ================================================
   VINO — DA Core Atelier Pilates × Univers du Vin
   ================================================ */

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

:root {
  --black: #080808;
  --off-white: #f5efe6;
  --wine: #7B1D3A;
  --wine-dark: #3a0d1c;
  --wine-light: #a83255;
  --gold: #C9A96E;
  --gold-light: #e2c99a;
  --cream: #f2e8d9;

  --ff-display: 'Cormorant Garant', Georgia, serif;
  --ff-body: 'Montserrat', -apple-system, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  font-family: var(--ff-body);
}

/* ── BUTTONS ──────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--off-white);
  color: var(--black);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem;
  border-radius: 9999px;
  border: none;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 169, 110, .25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--off-white);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 239, 230, .25);
  transition: border-color .3s, color .3s, transform .3s var(--ease);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  background: var(--off-white);
  color: var(--wine);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem;
  border-radius: 9999px;
  border: none;
  transition: background .3s, color .3s, transform .3s var(--ease), box-shadow .3s;
}

.btn-white:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .2);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--off-white);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 239, 230, .45);
  transition: border-color .3s, background .3s;
}

.btn-outline-white:hover {
  border-color: var(--off-white);
  background: rgba(245, 239, 230, .08);
}

/* ── TYPOGRAPHY HELPERS ───────────────────────── */

.eyebrow {
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--off-white);
  margin-bottom: 1.4rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-sub {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 239, 230, .5);
  max-width: 460px;
}

/* ── SCROLL REVEAL ────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

/* ── NAV ──────────────────────────────────────── */

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 1.8rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s var(--ease), background .4s, border-color .4s;
  transform: translateZ(0);
  will-change: padding, background;
}

nav.scrolled {
  background: rgba(8, 8, 8, .94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.1rem 4rem;
  border-bottom: 1px solid rgba(201, 169, 110, .12);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--off-white);
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, .65);
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .7rem 1.7rem;
  border: 1px solid var(--gold);
  border-radius: 9999px;
  transition: background .3s, color .3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 23px;
  height: 1.5px;
  background: var(--off-white);
  transition: all .3s;
}

/* ── MOBILE MENU ──────────────────────────────── */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu ul a {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--off-white);
  transition: color .3s;
}

.mobile-menu ul a:hover {
  color: var(--gold);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 1.5rem;
  opacity: .5;
  transition: opacity .3s;
}

.mobile-menu-close:hover {
  opacity: 1;
}

/* ── HERO ─────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  contain: layout paint;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 8, 8, .25) 0%,
      rgba(8, 8, 8, .55) 45%,
      rgba(8, 8, 8, .82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s var(--ease) .3s forwards;
  backface-visibility: hidden;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--off-white);
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease) .5s forwards;
  backface-visibility: hidden;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(245, 239, 230, .7);
  line-height: 1.75;
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s var(--ease) .7s forwards;
  backface-visibility: hidden;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s var(--ease) .9s forwards;
  backface-visibility: hidden;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  background: none;
  border: none;
  color: rgba(245, 239, 230, .45);
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245, 239, 230, .4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MARQUEE ──────────────────────────────────── */

.marquee-strip {
  background: var(--wine-dark);
  border-top: 1px solid rgba(201, 169, 110, .15);
  border-bottom: 1px solid rgba(201, 169, 110, .15);
  padding: 1rem 0;
  overflow: hidden;
  contain: paint;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.mi {
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 1.4rem;
}

.md {
  font-size: .5rem;
  color: rgba(201, 169, 110, .4);
  align-self: center;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── ABOUT ────────────────────────────────────── */

.about {
  background: var(--black);
  padding: 9rem 4rem;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.stat {
  border-left: 1px solid rgba(201, 169, 110, .2);
  padding-left: 1.4rem;
}

.stat-n {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-n span {
  font-size: 1.8rem;
  color: var(--gold);
}

.stat-l {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, .35);
}

.about-visual {
  position: relative;
}

.about-frame {
  aspect-ratio: 3/4;
  background: var(--wine-dark);
  border-radius: 2px;
  overflow: hidden;
}

.about-frame-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--wine-dark) 0%, var(--wine) 45%, var(--wine-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-deco {
  position: absolute;
  bottom: -2.2rem;
  left: -2.2rem;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, .25);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-deco-text {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
}

.about-deco-text em {
  font-style: italic;
}

/* ── COLLECTION ───────────────────────────────── */

.collection {
  background: #0d0d0d;
  padding: 9rem 4rem;
  contain: paint;
}

.collection-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.collection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

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

.cc {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  transform: translateZ(0);
  contain: paint;
}

.cc-bg {
  position: absolute;
  inset: 0;
  transition: transform .7s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
}

.cc:hover .cc-bg {
  transform: scale(1.06);
}

.cc-rouge .cc-bg {
  background: linear-gradient(155deg, #3a0d1c 0%, #7B1D3A 45%, #a83255 100%);
}

.cc-blanc .cc-bg {
  background: linear-gradient(155deg, #1a1505 0%, #534520 45%, #8a7040 100%);
}

.cc-rose .cc-bg {
  background: linear-gradient(155deg, #2b0f1e 0%, #7d3355 45%, #c06b90 100%);
}

.cc-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .92) 0%, rgba(8, 8, 8, .08) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.4rem;
}

.cc-tag {
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.cc-name {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: .5rem;
}

.cc-desc {
  font-size: .78rem;
  color: rgba(245, 239, 230, .55);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s var(--ease), opacity .4s;
}

.cc:hover .cc-desc {
  max-height: 80px;
  opacity: 1;
}

.cc-price {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold-light);
}

.cc-arrow {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 230, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: rotate(-45deg);
  transition: opacity .3s, transform .3s var(--ease), background .3s;
}

.cc:hover .cc-arrow {
  opacity: 1;
  transform: rotate(0);
  background: rgba(245, 239, 230, .08);
}

/* ── PHILOSOPHIE ──────────────────────────────── */

.philosophie {
  background: var(--wine-dark);
  padding: 9rem 4rem;
}

.philosophie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8rem;
  align-items: center;
}

.phil-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin: 2.2rem 0 2.8rem;
}

.phil-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .86rem;
  color: rgba(245, 239, 230, .6);
  line-height: 1.6;
}

.phil-list li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .75em;
}

.quote-block {
  background: rgba(201, 169, 110, .04);
  border: 1px solid rgba(201, 169, 110, .12);
  border-radius: 2px;
  padding: 3rem;
}

.quote-mark {
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: .4;
  margin-bottom: 1.5rem;
  opacity: .35;
}

.quote-text {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--off-white);
  margin-bottom: 2rem;
}

.quote-author {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── TÉMOIGNAGES ──────────────────────────────── */

.testimonials {
  background: var(--black);
  padding: 9rem 4rem;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.testimonials-header .eyebrow {
  justify-content: center;
}

.testimonials-header .eyebrow::before {
  display: none;
}

.carousel-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .6s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
}

.tc {
  flex: 0 0 calc(33.333% - 1rem);
  background: #121212;
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 2px;
  padding: 2.5rem;
}

.tc-stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .15em;
  margin-bottom: 1.4rem;
}

.tc-text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 239, 230, .82);
  margin-bottom: 2rem;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}

.tc-name {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--off-white);
  margin-bottom: .2rem;
}

.tc-role {
  font-size: .7rem;
  color: rgba(245, 239, 230, .35);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.8rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, .25);
  background: transparent;
  color: var(--off-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, background .3s;
}

.carousel-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, .08);
}

.carousel-dots {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.carousel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .25);
  transition: all .35s;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}

/* ── RESERVATION ──────────────────────────────── */

.reservation {
  background: var(--wine);
  padding: 9rem 4rem;
  text-align: center;
}

.reservation-inner {
  max-width: 680px;
  margin: 0 auto;
}

.reservation .eyebrow {
  justify-content: center;
}

.reservation .eyebrow::before {
  display: none;
}

.reservation-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

footer {
  background: #050505;
  padding: 5rem 4rem 2.5rem;
  border-top: 1px solid rgba(201, 169, 110, .08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.footer-brand p {
  font-size: .82rem;
  font-weight: 300;
  color: rgba(245, 239, 230, .35);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: .8rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: rgba(245, 239, 230, .4);
  transition: border-color .3s, color .3s;
}

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

.footer-col-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-links a {
  font-size: .82rem;
  font-weight: 300;
  color: rgba(245, 239, 230, .35);
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: .72rem;
  color: rgba(245, 239, 230, .18);
  letter-spacing: .02em;
}

.footer-legal {
  display: flex;
  gap: 1.8rem;
}

.footer-legal a {
  font-size: .7rem;
  color: rgba(245, 239, 230, .18);
  transition: color .3s;
}

.footer-legal a:hover {
  color: rgba(245, 239, 230, .45);
}

/* ── RESPONSIVE ───────────────────────────────── */

@media (max-width: 1024px) {
  .about {
    padding: 7rem 2.5rem;
  }

  .about-inner {
    gap: 4rem;
  }

  .collection {
    padding: 7rem 2.5rem;
  }

  .philosophie {
    padding: 7rem 2.5rem;
  }

  .philosophie-inner {
    gap: 4rem;
  }

  .testimonials {
    padding: 7rem 2.5rem;
  }

  .reservation {
    padding: 7rem 2.5rem;
  }

  footer {
    padding: 4rem 2.5rem 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1.4rem 1.5rem;
  }

  nav.scrolled {
    padding: .9rem 1.5rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: .8rem;
  }

  .about {
    padding: 5rem 1.5rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-visual {
    display: none;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .collection {
    padding: 5rem 1.5rem;
  }

  .collection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .cc {
    aspect-ratio: 4/3;
  }

  .cc-desc {
    max-height: 80px;
    opacity: 1;
  }

  .philosophie {
    padding: 5rem 1.5rem;
  }

  .philosophie-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonials {
    padding: 5rem 1.5rem;
  }

  .tc {
    flex: 0 0 82vw;
  }

  .reservation {
    padding: 5rem 1.5rem;
  }

  .reservation-actions {
    flex-direction: column;
  }

  footer {
    padding: 3.5rem 1.5rem 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ── HOWTO / COMMENT ÇA MARCHE ────────────────── */

.howto {
  background: var(--black);
  padding: 9rem 4rem;
}

.howto-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.howto-header {
  text-align: center;
  margin-bottom: 5rem;
}

.howto-header .eyebrow {
  justify-content: center;
}

.howto-header .eyebrow::before {
  display: none;
}

.howto-header .section-sub {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 4rem;
}

.step {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, .04);
  padding: 3rem 2.5rem;
  position: relative;
  transition: border-color .3s, background .3s;
}

.step:hover {
  background: #141414;
  border-color: rgba(201, 169, 110, .15);
}

.step-num {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 169, 110, .12);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.step-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 1rem;
}

.step-desc {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(245, 239, 230, .45);
  line-height: 1.75;
}

.howto-cta {
  text-align: center;
}

/* ── PREVENTES CARDS ───────────────────────────── */

.preventes {
  background: #0d0d0d;
  padding: 9rem 4rem;
}

.preventes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.preventes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.preventes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pv-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.pv-card:hover {
  transform: translateY(-6px) translateZ(0);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .4);
}

.pv-card-bg {
  height: 220px;
  transition: transform .6s var(--ease);
}

.pv-card:hover .pv-card-bg {
  transform: scale(1.04);
}

.pv-rouge {
  background: linear-gradient(155deg, #3a0d1c 0%, #7B1D3A 60%, #a83255 100%);
}

.pv-gold {
  background: linear-gradient(155deg, #1a1505 0%, #534520 60%, #8a7040 100%);
}

.pv-rose {
  background: linear-gradient(155deg, #2b0f1e 0%, #7d3355 60%, #c06b90 100%);
}

.pv-card-body {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, .05);
  border-top: none;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  flex: 1;
}

.pv-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, .08);
  border: 1px solid rgba(201, 169, 110, .2);
  border-radius: 9999px;
  padding: .3rem .9rem;
  width: fit-content;
}

.pv-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.2;
}

.pv-desc {
  font-size: .78rem;
  color: rgba(245, 239, 230, .4);
  line-height: 1.5;
}

.pv-progress-wrap {
  height: 2px;
  background: rgba(255, 255, 255, .06);
  border-radius: 1px;
  overflow: hidden;
}

.pv-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  border-radius: 1px;
  transition: width 1.2s var(--ease);
}

.pv-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pv-participants {
  font-size: .72rem;
  color: rgba(245, 239, 230, .4);
  letter-spacing: .05em;
}

.pv-price {
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
}

.pv-almost {
  color: #e2a44a;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .6;
  }
}

/* ── ESPACE VENDEUR ────────────────────────────── */

.vendeurs {
  background: var(--wine-dark);
  padding: 9rem 4rem;
}

.vendeurs-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7rem;
  align-items: center;
}

.vendeurs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0 2.8rem;
}

.vendeurs-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .86rem;
  color: rgba(245, 239, 230, .6);
  line-height: 1.6;
}

.vendeurs-list li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .75em;
}

.vendeurs-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Dashboard preview card */
.dashboard-preview {
  background: #0e0e0e;
  border: 1px solid rgba(201, 169, 110, .12);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}

.dp-header {
  background: #161616;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: .9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.dp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.dp-dot:first-child {
  background: #ff5f57;
}

.dp-dot:nth-child(2) {
  background: #febc2e;
}

.dp-dot:nth-child(3) {
  background: #28c840;
}

.dp-title {
  flex: 1;
  text-align: center;
  font-size: .7rem;
  color: rgba(245, 239, 230, .3);
  letter-spacing: .08em;
}

.dp-body {
  padding: 2rem;
}

.dp-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.dp-stat {
  background: rgba(201, 169, 110, .05);
  border: 1px solid rgba(201, 169, 110, .1);
  border-radius: 4px;
  padding: 1.2rem 1rem;
  text-align: center;
}

.dp-stat-val {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: .3rem;
}

.dp-stat-lbl {
  font-size: .62rem;
  color: rgba(245, 239, 230, .3);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dp-divider {
  height: 1px;
  background: rgba(255, 255, 255, .05);
  margin-bottom: 1.5rem;
}

.dp-menu {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.dp-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1rem;
  border-radius: 4px;
  font-size: .8rem;
  color: rgba(245, 239, 230, .6);
  transition: background .2s, color .2s;
  text-decoration: none;
}

.dp-link:hover {
  background: rgba(201, 169, 110, .07);
  color: var(--gold-light);
}

.dp-link-icon {
  font-size: 1rem;
}

.dp-link-arr {
  margin-left: auto;
  opacity: .3;
  transition: opacity .2s, transform .2s;
}

.dp-link:hover .dp-link-arr {
  opacity: .8;
  transform: translateX(3px);
}

.dp-link-admin {
  border-top: 1px solid rgba(255, 255, 255, .04);
  margin-top: .3rem;
  padding-top: 1.2rem;
  color: rgba(201, 169, 110, .5);
}

.dp-link-admin:hover {
  color: var(--gold);
}

/* ── RESPONSIVE NOUVELLES SECTIONS ────────────── */

@media (max-width: 1024px) {
  .howto {
    padding: 7rem 2.5rem;
  }

  .preventes {
    padding: 7rem 2.5rem;
  }

  .vendeurs {
    padding: 7rem 2.5rem;
  }

  .vendeurs-inner {
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .howto {
    padding: 5rem 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .preventes {
    padding: 5rem 1.5rem;
  }

  .preventes-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

  .pv-card-bg {
    height: 160px;
  }

  .vendeurs {
    padding: 5rem 1.5rem;
  }

  .vendeurs-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vendeurs-actions {
    flex-direction: column;
  }

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

/* ── PREFERS-REDUCED-MOTION ───────────────────── */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-video-wrap {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }

  .scroll-line {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}