/* ================================================================
   Home — hero, intro, stats, featured models, materials strip,
   workshop band, testimonials
   ================================================================ */

/* ---- Hero (cinematic full-bleed, story-led) ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
  background: var(--navy-900);
}
.hero__media, .hero__media picture, .hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media { inset: -10% 0; height: auto; } /* marge pour le parallaxe */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,19,34,.55) 0%, rgba(7,19,34,.18) 38%, rgba(7,19,34,.72) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 9rem;
  max-width: 56rem;
}
.hero__title {
  font-size: var(--fs-hero);
  font-weight: 400;
  margin: 0 0 0.35em;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 40px rgba(7, 19, 34, 0.55);
}
.hero__sub {
  max-width: 52ch;
  margin-inline: auto;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: rgba(246, 241, 231, 0.9);
  text-shadow: 0 1px 24px rgba(7, 19, 34, 0.6);
}
.hero__actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin-top: 2.4rem;
}
.hero__story {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.5rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 24rem;
  padding: 0.9rem 1.2rem 0.9rem 0.9rem;
  text-align: left;
  background: rgba(7, 19, 34, 0.55);
  border: 1px solid rgba(201, 164, 92, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero__story img {
  width: 3.6rem; height: 3.6rem;
  object-fit: cover;
  flex: none;
  border: 1px solid rgba(201, 164, 92, 0.5);
}
.hero__story blockquote { margin: 0; }
.hero__story p {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--ivory);
}
.hero__story cite {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  translate: -50% 0;
  z-index: 1;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 3.6rem;
  background: linear-gradient(var(--gold-soft), transparent);
  animation: scroll-drift 2.6s var(--ease-out) infinite;
}
@keyframes scroll-drift {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Intro editorial ---- */
.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.intro__title { max-width: 18ch; }
.intro__text p { max-width: 54ch; }
.intro__text .link-arrow { margin-top: 1rem; }
.intro__media { margin-right: 1.1rem; }

/* ---- Stats band ---- */
.stats {
  background: var(--navy-900);
  color: var(--ivory);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: var(--gold-soft);
  line-height: 1;
}
.stat__label {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.62);
}

/* ---- Featured fleet ---- */
.featured { background: var(--ivory); }
.model-grid--featured { grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); }

/* ---- Destinations strip ---- */
.dests { padding-bottom: 0; }
.dests__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 0.5rem;
}
.dest-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block;
  background: var(--navy-800);
}
.dest-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out), opacity 0.6s;
}
.dest-tile:hover img { transform: scale(1.06); }
.dest-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,19,34,0) 45%, rgba(7,19,34,.72) 100%);
  transition: opacity 0.4s;
}
.dest-tile__name {
  position: absolute;
  left: 1.3rem; right: 1rem; bottom: 1.1rem;
  z-index: 1;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: 0.04em;
}

/* ---- Blue Cruise band ---- */
.bluecruise {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 34rem;
  padding-block: clamp(5rem, 10vw, 8rem);
  color: var(--ivory);
  overflow: hidden;
  background: var(--navy-900);
}
.bluecruise__media, .bluecruise__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.bluecruise::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,19,34,.86) 0%, rgba(7,19,34,.55) 48%, rgba(7,19,34,.15) 100%);
}
.bluecruise__content { position: relative; z-index: 1; max-width: 34rem; }
.bluecruise__content p { color: rgba(246, 241, 231, 0.85); }
.bluecruise__content .btn { margin-top: 1.4rem; }

/* ---- Testimonials ---- */
.testimonials { background: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.testimonial {
  margin: 0;
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.testimonial__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.testimonial__quote::before { content: "“ "; color: var(--gold); }
.testimonial footer { margin-top: auto; display: grid; gap: 0.15rem; }
.testimonial cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.testimonial footer span { font-size: var(--fs-small); color: var(--ink-faint); }

/* ---- Responsive ---- */
@media (max-width: 64rem) {
  .hero__story { position: static; margin: 0 auto; translate: 0; max-width: 86%; }
  .hero { grid-template-rows: 1fr auto; padding-bottom: 2rem; }
  .hero__content { padding-bottom: 3rem; }
  .hero__scroll { display: none; }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__media { max-width: 30rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .dests__strip { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 36rem; margin-inline: auto; }
}
/* Mobile : hero éditorial — photo entière (non recadrée), bateau complet */
@media (max-width: 48rem) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background:
      radial-gradient(120% 80% at 50% 0%, rgba(26, 58, 99, 0.35) 0%, rgba(7, 19, 34, 0) 60%),
      var(--navy-950);
  }
  .hero__scrim { display: none; }
  .hero__media {
    position: static;
    inset: auto;
    order: 2;
    height: auto;
    margin: 0 var(--gutter);
    padding: 0.6rem;
    border: 1px solid rgba(201, 164, 92, 0.5);
  }
  .hero__media picture, .hero__media img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .hero__content { order: 1; padding: calc(var(--nav-h) + 2.5rem) var(--gutter) 2.2rem; }
  .hero__story { order: 3; position: static; margin: 1.4rem auto 2.6rem; }
  .hero__title, .hero__sub { text-shadow: none; }
}
@media (max-width: 40rem) {
  .dests__strip { grid-template-columns: repeat(2, 1fr); }
  .hero__actions .btn { flex: 1 1 100%; }
}
