:root {
  --color-bg: #0d0508;
  --color-bg-alt: #120709;
  --color-bg-card: #1a0a0d;
  --color-gold: #d4af45;
  --color-gold-rgb: 212, 175, 69;
  --color-wine: #8c2f3f;
  --color-wine-rgb: 140, 47, 63;
  --color-text: #ead9d6;
  --color-muted: #a89690;
  --color-muted-2: #8f7b76;
  --color-quote: #d9b8bd;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;
  --ease-luxe: cubic-bezier(0.25, 0, 0, 1);
  --fs-hero: clamp(3.2rem, 9vw, 8.5rem);
  --fs-display: clamp(2.6rem, 6.5vw, 6.5rem);
  --fs-section-h2: clamp(2.4rem, 6vw, 5.2rem);
  --fs-subhead: clamp(1.6rem, 3vw, 2.6rem);
  --fs-body-editorial: clamp(1rem, 1.3vw, 1.15rem);
  --section-gap: clamp(5rem, 9vw, 8rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* hero principal - zoom bouteille au scroll, cf ft-section dans index.html */

.ft-section {
  height: 520vh;
  position: relative;
}

.ft-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.ft-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  user-select: none;
  pointer-events: none;
}

#ft-bottle {
  z-index: 1;
  opacity: 1;
  object-position: 40% 62%;
  transform-origin: 34% 79%;
}

#ft-drop {
  z-index: 2;
  opacity: 0;
}

.ft-black {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000;
  opacity: 0;
  pointer-events: none;
}

/* Contenu textuel */
.ft-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 6vw, 7rem);
  padding-bottom: clamp(3rem, 7vh, 6rem);
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.30) 45%,
    transparent 75%
  );
}

.ft-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.ft-h1 {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-hero);
  font-weight: 400;
  color: #fff;
  line-height: 0.98;
  max-width: 900px;
  margin: 0 0 0.8rem;
}

.ft-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  color: var(--color-gold);
  margin: 0;
}

/* Layer 5 : contenu textuel de l'immersion */
.ft-content-2 {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(1.5rem, 6vw, 7rem);
  pointer-events: none;
  opacity: 0;
}

.ft-label-2 {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

.ft-h2-2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  color: #fff;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 0 1rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

.ft-sub-2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: var(--color-gold);
  margin: 0;
}

/* Scroll indicator */
.ft-scroll-hint {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.ft-scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ft-scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: ft-pulse 2s ease-in-out infinite;
}

@keyframes ft-pulse {
  0%, 100% { transform: scaleY(1);   opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

/* Performance GPU */
#ft-bottle,
#ft-drop {
  transform: scale(1) translateZ(0);
}

body {
  background: var(--color-bg);
  color: #fff;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(var(--color-gold-rgb), 0.25);
  color: #fff;
}

/* grain de pellicule sur le fond, avec un petit mouvement pour que ce soit vivant */
body::before {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grain-shift 8s steps(8) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2%, -3%); }
  40%  { transform: translate(-4%, 2%); }
  60%  { transform: translate(2%, -4%); }
  80%  { transform: translate(-3%, 3%); }
  100% { transform: translate(0, 0); }
}

/* vignette légère pour recentrer l'oeil */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 1000;
  background: var(--color-gold);
  color: #000;
  padding: 0.75rem 1.25rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 2px;
  transition: top 200ms;
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 500ms ease;
}

#preloader .preloader-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.05em;
}

#preloader .preloader-track {
  width: 180px;
  height: 1px;
  background: rgba(var(--color-gold-rgb), 0.2);
}

#preloader .preloader-fill {
  width: 0%;
  height: 100%;
  background: var(--color-gold);
  transition: width 200ms ease;
}

/* barre de progression */
#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--color-gold);
  z-index: 500;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .scroll-indicator .line {
    animation: none;
  }

  body::before {
    animation: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

h1, h2, h3, .serif, .serif-italic {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

.serif-italic {
  font-style: italic;
}

.label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* hero 2 - scroll bouteille -> verre */
.hero-wrapper {
  height: 300vh;
  position: relative;
  background: var(--color-bg);
  z-index: 10;
}

.hero-sticky {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-frames {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity;
  user-select: none;
  pointer-events: none;
}

.hero-frame:first-child {
  opacity: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(13, 5, 8, 0.92) 0%,
    rgba(30, 10, 14, 0.4) 40%,
    transparent 75%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 6vw, 7rem);
  padding-bottom: clamp(3rem, 6vh, 6rem);
  pointer-events: none;
}

.hero-content .label {
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: var(--fs-hero);
  color: #fff;
  line-height: 0.98;
  max-width: 900px;
  margin-bottom: 1rem;
}

.hero-content .subline {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--color-gold);
  margin-bottom: 1.6rem;
}

.hero-content .body {
  font-weight: 300;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.4rem;
}

.button-row {
  pointer-events: auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 300ms var(--ease-luxe), color 300ms var(--ease-luxe), border-color 300ms var(--ease-luxe);
}

.btn-primary {
  background: var(--color-gold);
  color: #000;
  border: 1px solid var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-wine);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid rgba(var(--color-gold-rgb), 0.5);
}

.btn-ghost:hover {
  border-color: var(--color-gold);
  background: rgba(var(--color-gold-rgb), 0.08);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-2);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-indicator .line {
  width: 1px;
  height: 3rem;
  background: var(--color-gold);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* reveal on scroll */
/* etat de base cache, GSAP (script.js) anime vers opacity:1 au scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}

/* manifesto */
.manifesto {
  width: 100%;
  padding: var(--section-gap) 2rem;
  background: var(--color-bg-alt);
  display: flex;
  justify-content: center;
}

.manifesto-inner {
  text-align: center;
  max-width: 820px;
}

.rule {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto;
}

.manifesto-quote {
  font-size: var(--fs-subhead);
  color: var(--color-text);
  line-height: 1.35;
  margin: 2rem auto;
}

.manifesto-attribution {
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted-2);
  margin-top: 2rem;
}

/* petit divider entre 2 sections */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--color-bg);
}

.section-divider span {
  position: relative;
  width: min(200px, 40%);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(var(--color-gold-rgb), 0.35),
    transparent
  );
}

.section-divider span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* étapes */
.steps-section {
  background: var(--color-bg-alt);
}

.steps-list {
  display: flex;
  flex-direction: column;
}

.step-row {
  display: grid;
  grid-template-columns: minmax(80px, 140px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: baseline;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(var(--color-gold-rgb), 0.15);
}

.steps-list .step-row:last-child {
  border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.15);
}

.step-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: rgba(var(--color-wine-rgb), 0.75);
}

.step-row h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-row .body {
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 52ch;
}

/* styles communs a plusieurs sections */
.section {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}

.section-inner {
  padding: 0 clamp(1.5rem, 6vw, 7rem);
}

.section h2 {
  font-size: var(--fs-section-h2);
  line-height: 1;
  color: #fff;
  margin-top: 0.8rem;
  margin-bottom: 4rem;
  max-width: 780px;
}

/* services */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  position: relative;
  padding: clamp(2.2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid rgba(var(--color-gold-rgb), 0.15);
  overflow: hidden;
  transition: padding-left 400ms var(--ease-luxe);
}

.services-list .service-row:last-child {
  border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.15);
}

.service-row-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms var(--ease-luxe);
}

.service-row-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 5, 8, 0.93) 0%, rgba(13, 5, 8, 0.6) 60%, rgba(13, 5, 8, 0.3) 100%);
}

@media (hover: hover) and (pointer: fine) {
  .service-row:hover {
    padding-left: 1.2rem;
  }

  .service-row:hover .service-row-bg {
    opacity: 1;
  }
}

.service-row-content {
  position: relative;
  z-index: 1;
}

.service-row-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-row h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  color: #fff;
}

.service-tag {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.service-tag.tag-wine {
  color: #d9808f;
}

.service-row .body {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: 58ch;
  margin-top: 0.8rem;
}

.service-meta {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--color-muted-2);
  margin-top: 1rem;
}

.cta-link {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  transition: color 200ms;
}

.cta-link:hover {
  color: #e8d49a;
}

.simulator-toggle {
  background: none;
  border: none;
  padding: 0;
  margin-top: 1.2rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.simulator {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-luxe);
}

.simulator.is-open {
  margin-top: 1.4rem;
  max-height: 120px;
}

.simulator-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--color-muted-2);
  margin-bottom: 0.6rem;
}

.simulator input[type="range"] {
  width: 100%;
  max-width: 320px;
  accent-color: var(--color-gold);
}

.simulator-output {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-text);
  margin-top: 0.6rem;
}

/* transformation bouteille (scroll) */
.bottle-wrapper {
  height: 250vh;
  position: relative;
}

.bottle-sticky {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg);
  overflow: hidden;
}

.bottle-imgs {
  position: absolute;
  inset: 0;
}

.bottle-imgs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#bottle-exploded {
  opacity: 0;
}

.bottle-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 3rem clamp(1.5rem, 6vw, 7rem);
  background: linear-gradient(to top, rgba(13, 5, 8, 0.85) 0%, transparent 100%);
}

.bottle-overlay .label {
  margin-bottom: 0.8rem;
}

.bottle-phase {
  font-weight: 300;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text);
  transition: opacity 0.4s;
}

.progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(var(--color-gold-rgb), 0.15);
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--color-gold);
}

/* notes de degustation */
.tasting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.tasting-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 300ms var(--ease-luxe), padding-left 300ms var(--ease-luxe);
}

.tasting-row:hover {
  border-color: rgba(var(--color-gold-rgb), 0.3);
  padding-left: 0.5rem;
}

.tasting-row .k {
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  flex-shrink: 0;
}

.tasting-row .v {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-text);
  text-align: right;
  max-width: 55%;
}

.tasting-note-block {
  position: relative;
}

.tasting-quote-mark {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(var(--color-wine-rgb), 0.35);
  margin-bottom: -1.2rem;
}

.tasting-note {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.85;
}

.tasting-footnote {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-muted-2);
  line-height: 1.7;
  margin-top: 2rem;
}

/* avis clients */
.testimonials-list {
  display: flex;
  flex-direction: column;
  max-width: 880px;
}

.testimonial-item {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(var(--color-gold-rgb), 0.15);
}

.testimonials-list .testimonial-item:last-child {
  border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.15);
}

.testimonial-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: var(--color-quote);
  line-height: 1.5;
}

.testimonial-author {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: #fff;
  margin-top: 1.4rem;
}

.testimonial-context {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--color-muted-2);
  margin-top: 0.2rem;
}

/* faq */
.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.15);
  padding: 1.4rem 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: #fff;
  padding-right: 2rem;
  position: relative;
  transition: color 300ms var(--ease-luxe);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--color-gold);
}

.faq-item p {
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 620px;
}

/* section à propos */
.about-section {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.about-quote-mark {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(var(--color-wine-rgb), 0.35);
  margin-bottom: -1.5rem;
}

.about-grid .label {
  margin-bottom: 0.8rem;
}

.about-grid h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: var(--fs-section-h2);
  line-height: 1;
  color: #fff;
  margin-bottom: 1.8rem;
}

.about-grid p {
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2rem 0 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(var(--color-gold-rgb), 0.15);
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat-num {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.about-cta {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.about-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--color-bg-card) 0%, #120608 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  overflow: hidden;
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-visual-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(var(--color-gold-rgb), 0.4);
}

.about-visual-corner.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.about-visual-corner.tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.about-visual-corner.bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.about-visual-corner.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.about-visual-label {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.8;
}

.about-visual-label em {
  font-style: italic;
  color: var(--color-gold);
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
}

/* form de reservation */
.reservation-section {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}

.reservation-form {
  max-width: 640px;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(var(--color-gold-rgb), 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.reservation-form .full {
  grid-column: 1 / -1;
}

.reservation-form label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  background: var(--color-bg-card);
  border: 1px solid rgba(var(--color-gold-rgb), 0.25);
  color: var(--color-text);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  transition: border-color 200ms;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--color-gold);
  outline: none;
}

.reservation-form textarea {
  resize: vertical;
  min-height: 100px;
}

.reservation-form button {
  justify-self: start;
}

.form-status {
  grid-column: 1 / -1;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.form-status.success {
  color: var(--color-gold);
}

.form-status.error {
  color: #e08080;
}

.form-status.pending {
  color: var(--color-muted-2);
}

@media (max-width: 640px) {
  .reservation-form {
    grid-template-columns: 1fr;
  }
}

/* cta final */
.closing {
  position: relative;
  width: 100%;
  padding: var(--section-gap) 2rem;
  background: var(--color-bg);
  text-align: center;
}

.closing-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(var(--color-wine-rgb), 0.22) 0%, transparent 70%);
}

.closing-inner {
  position: relative;
}

.closing h2 {
  max-width: 700px;
  margin: 1.2rem auto 0;
}

.closing h2 span {
  display: block;
  font-size: var(--fs-display);
  line-height: 1.02;
}

.closing h2 .line2 {
  color: var(--color-quote);
}

.closing .body {
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 520px;
  margin: 2rem auto 3rem;
  line-height: 1.8;
}

.closing .button-row {
  pointer-events: auto;
  justify-content: center;
}

.closing .btn-primary,
.closing .btn-ghost {
  padding: 1.1rem 3rem;
}

/* footer */
footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.footer-brand {
  font-size: 1.1rem;
  color: #fff;
}

.footer-copyright {
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--color-muted-2);
  margin-top: 4px;
}

.footer-links {
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-muted-2);
  display: flex;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--color-muted-2);
  text-decoration: none;
  transition: color 200ms;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-links .sep {
  color: #333;
}

/* logo (svg inline, cf index.html) */
.brand-mark {
  display: block;
  flex-shrink: 0;
  color: var(--color-gold);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* nav desktop + burger mobile */
#siteNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 64px;
  background: rgba(13, 5, 8, 0);
  border-bottom: 1px solid rgba(var(--color-gold-rgb), 0);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity 400ms var(--ease-luxe), transform 400ms var(--ease-luxe),
    background 400ms var(--ease-luxe), border-color 400ms var(--ease-luxe);
}

#siteNav.nav--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  background: rgba(13, 5, 8, 0.85);
  border-bottom-color: rgba(var(--color-gold-rgb), 0.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 300ms var(--ease-luxe);
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-cta {
  font-size: 0.65rem;
  padding: 0.65rem 1.6rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-gold);
  margin: 5px 0;
  transition: transform 250ms var(--ease-luxe), opacity 250ms var(--ease-luxe);
}

.nav-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  z-index: 950;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.15);
  display: flex;
  flex-direction: column;
  padding: 1rem clamp(1.5rem, 4vw, 3rem) 1.5rem;
  gap: 1.1rem;
  max-height: 0;
  overflow-y: auto;
  opacity: 0;
  transition: max-height 350ms var(--ease-luxe), opacity 300ms var(--ease-luxe);
}

.nav-mobile-menu.is-open {
  max-height: 400px;
  opacity: 1;
}

.nav-mobile-menu a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

/* images plein cadre entre les sections */
.breakout {
  position: relative;
  height: clamp(60vh, 80vw, 90vh);
  overflow: hidden;
  background: #000;
}

.breakout-img {
  position: absolute;
  inset: -6% 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

.breakout-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 6vw, 7rem);
  background: linear-gradient(
    to top,
    rgba(13, 5, 8, 0.92) 0%,
    rgba(13, 5, 8, 0.25) 55%,
    transparent 100%
  );
}

.breakout-content .label {
  margin-bottom: 0.8rem;
}

.breakout-content h2 {
  font-size: var(--fs-display);
  line-height: 1.02;
  color: #fff;
  max-width: 900px;
}

/* curseur custom (desktop only, cf script.js) */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  pointer-events: none;
  border-radius: 50%;
  will-change: transform;
  opacity: 0;
  transition: opacity 200ms ease;
}

.cursor-dot.cursor--active,
.cursor-ring.cursor--active {
  opacity: 1;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--color-gold-rgb), 0.6);
  transition: width 300ms var(--ease-luxe), height 300ms var(--ease-luxe), border-color 300ms var(--ease-luxe);
}

.cursor-ring.cursor--hover {
  width: 64px;
  height: 64px;
  border-color: var(--color-gold);
  background: rgba(var(--color-gold-rgb), 0.08);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

/* effet rideau sur les gros titres */
.reveal-mask {
  overflow: hidden;
  display: block;
}

.reveal-mask-inner {
  display: inline-block;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-mask-inner {
    transform: none !important;
  }
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .tasting-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-stats {
    flex-wrap: wrap;
    row-gap: 1.5rem;
  }

  /* le scroll cinematique était interminable sur petit ecran, on raccourcit */
  .ft-section {
    height: 300vh;
  }

  /* le fondu 7 photos rend mal en portrait, cf script.js heroScroll qui bascule sur 1 seule photo fixe */
  .hero-wrapper {
    height: 100vh;
  }

  /* le texte etait collé tout en bas sur téléphone, on remonte */
  .ft-content {
    padding-bottom: 18vh;
  }

  /* la photo rend mal toute petite sur mobile, on la vire et on garde le texte */
  .about-visual {
    display: none;
  }
}

@media (max-width: 560px) {
  .step-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  .about-stats {
    gap: 1.5rem;
  }

  .ft-scroll-hint,
  .scroll-indicator {
    display: none;
  }
}
