/** Shopify CDN: Minification failed

Line 8:0 Unexpected "{"
Line 8:1 Unexpected "{"
Line 8:3 Expected identifier but found "'section-hero-video.css'"

**/
{{ 'section-hero-video.css' | asset_url | stylesheet_tag }}

/* ─── RESET & BASE ─── */
.hero-video *,
.hero-video *::before,
.hero-video *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── HERO CONTAINER ─── */
.hero-video {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
}

/* ─── VIDEO BACKGROUND ─── */
.hero-video__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateZ(0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Gradient overlay — plus cinématique qu'un fond uni */
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* ─── CONTENT ─── */
.hero-video__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 28px;
  max-width: 640px;
  width: 100%;
  color: #fff;

  /* Fade-in à l'entrée */
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── EYEBROW ─── */
.hero-video__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ─── HEADLINE ─── */
.hero-video__headline {
  font-family: var(--font-heading-family, 'Georgia', serif);
  font-size: clamp(38px, 8vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}

/* ─── SUBHEADLINE ─── */
.hero-video__sub {
  font-size: clamp(14px, 3.5vw, 17px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ─── CTA GROUP ─── */
.hero-video__cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ─── BOUTON PRIMARY ─── */
.hero-video__btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.hero-video__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  background: #f5f0eb;
}

.hero-video__btn--primary:active {
  transform: translateY(0);
}

/* ─── BOUTON SECONDARY ─── */
.hero-video__btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.hero-video__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ─── TRUST BAR ─── */
.hero-video__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  flex-wrap: nowrap; /* Force sur 1 ligne */
}

.hero-video__trust span {
  white-space: nowrap;
}

.hero-video__trust-divider {
  opacity: 0.3;
  font-size: 14px;
}

/* ─── DESKTOP — contenu centré verticalement ─── */
@media screen and (min-width: 769px) {
  .hero-video {
    align-items: center;
    padding-bottom: 0;
  }
}

/* ─── MOBILE ─── */
@media screen and (max-width: 768px) {
  .hero-video__headline {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-video__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-video__btn--primary,
  .hero-video__btn--secondary {
    width: 100%;
    max-width: 300px;
  }

  .hero-video__trust {
    font-size: 10px;
    gap: 7px;
  }
}
