/* AMI-D.O — Coming soon (hero animations alignés sur le site principal) */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  background: #000;
  color: #fdfcfb;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #c7eef1;
  color: #095558;
}

/* Logo fixe en haut (comme le header transparent du site principal) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  pointer-events: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  max-width: 80rem;
  height: 5rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .site-header__inner {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding: 0 2rem;
  }
}

.site-header__logo {
  width: auto;
  height: 3.5rem;
  object-fit: contain;
  opacity: 0;
  animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
  pointer-events: auto;
  transition: transform 0.3s ease;
}

.site-header__logo:hover {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .site-header__logo {
    height: 4rem;
  }
}

/* Ken-burns hero image */
@keyframes ken-burns {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}

.animate-ken-burns {
  animation: ken-burns 18s ease-out forwards;
}

/* Hero stagger entrance */
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stagger > * {
  opacity: 0;
  animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-stagger > *:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-stagger > *:nth-child(2) {
  animation-delay: 0.25s;
}

.hero-stagger > *:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-stagger > *:nth-child(4) {
  animation-delay: 0.55s;
}

.hero-stagger > *:nth-child(5) {
  animation-delay: 0.7s;
}

/* Typography & layout utilities */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  padding: 8rem 0 4rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15));
}

.hero__overlay-t {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent, rgba(0, 0, 0, 0.2));
}

.hero__overlay-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero__content {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    padding: 0 2rem;
  }
}

.tagline {
  margin: 0 0 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(199, 238, 241, 0.9);
}

@media (min-width: 640px) {
  .tagline {
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
  }
}

.title {
  margin: 0 0 2rem;
  max-width: 64rem;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 640px) {
  .title {
    font-size: 4.5rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 6.5rem;
    margin-bottom: 2.5rem;
  }
}

.quote {
  margin: 0 0 2.5rem;
  max-width: 48rem;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(253, 249, 243, 0.95);
}

@media (min-width: 640px) {
  .quote {
    font-size: 1.875rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .quote {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

.construction {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 249, 243, 0.9);
}

@media (min-width: 640px) {
  .construction {
    font-size: 1.25rem;
  }
}

.subtext {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(253, 249, 243, 0.7);
}

@media (min-width: 640px) {
  .subtext {
    font-size: 1.125rem;
  }
}

.construction-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(253, 249, 243, 0.85);
  backdrop-filter: blur(4px);
}

.construction-badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #71d4db;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

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

  .hero-stagger > *,
  .site-header__logo,
  .animate-ken-burns,
  .construction-badge__dot {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
