

.hero-section {
  min-height: min(760px, 92svh);
  padding-top: 132px;
  padding-bottom: 64px;
  padding-inline: clamp(18px, 5vw, 56px);
  color: var(--c-white);
  background:
    linear-gradient(90deg, rgba(17, 38, 26, .94) 0%, rgba(17, 38, 26, .72) 48%, rgba(17, 38, 26, .78) 100%),
    url("../images/verger-prunes.jpg") center 48% / cover no-repeat;
  overflow: hidden;
}

.hero-layout {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(380px, 1.2fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-block: 12px;
}

.hero-copy h1 {
  max-width: 7ch;
  margin: 0;
  padding-bottom: .1em;
  font-size: clamp(3.4rem, 6.1vw, 6rem);
  line-height: .91;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateY(32px);
  animation: hero-title-reveal 1.05s .18s cubic-bezier(.2,.78,.2,1) forwards;
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 40vw, 500px);
  isolation: isolate;
  opacity: 0;
  transform: translateY(28px) scale(.94);
  animation: hero-object-in 1s .65s cubic-bezier(.2,.78,.2,1) forwards;
}

.prune-card {
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(250px, 25vw, 310px);
  height: clamp(315px, 31vw, 372px);
  transform: translate(-50%, -50%) rotate(-6deg);
  transition: transform var(--t-slow), filter var(--t-slow);
  z-index: 2;
}

.hero-visual:hover .prune-card {
  transform: translate(-50%, -52%) rotate(-3deg);
  filter: saturate(1.03);
}

.prune-card-top {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 92px;
  border-radius: 28px 28px 16px 16px;
  background: #231021;
  transform: skewX(-8deg);
}

.prune-card-body {
  position: absolute;
  inset: 68px 0 0;
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 32px;
  color: var(--c-white);
  background: linear-gradient(145deg, #d39a62 0%, #9f6b42 38%, #5b294f 100%);
  box-shadow: 0 8px 22px rgba(10, 4, 9, 0.13);
}

.prune-card-body span,
.prune-card-body em {
  font-style: normal;
  opacity: 0.72;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.prune-card-body strong {
  max-width: 190px;
  margin: 8px 0;
  font-family: var(--f-primary);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  line-height: 0.98;
}

.prune,
.prune-shape {
  position: absolute;
  display: block;
  border-radius: 48% 52% 44% 56% / 58% 45% 55% 42%;
  background: #572149;
  box-shadow: inset -8px -10px 14px rgba(0, 0, 0, 0.2);
}

.prune-one {
  width: clamp(70px, 8vw, 96px);
  height: clamp(86px, 9.6vw, 116px);
  left: max(0px, 4%);
  top: 12%;
  animation: float-prune 7s ease-in-out infinite;
}

.prune-two {
  width: clamp(48px, 5.4vw, 64px);
  height: clamp(60px, 6.4vw, 78px);
  right: max(0px, 8%);
  top: 22%;
  animation: float-prune 8s ease-in-out infinite 0.8s;
}

.prune-three {
  width: clamp(42px, 4.6vw, 54px);
  height: clamp(52px, 5.6vw, 66px);
  left: 18%;
  bottom: 8%;
  animation: float-prune 6.5s ease-in-out infinite 0.4s;
}

@keyframes float-prune {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%       { transform: translateY(-18px) rotate(5deg); }
}

@keyframes hero-title-reveal {
  0% { opacity: 0; clip-path: inset(-.2em 100% -.2em 0); transform: translateY(32px); }
  55% { opacity: 1; }
  100% { opacity: 1; clip-path: inset(-.2em 0); transform: none; }
}

@keyframes hero-object-in {
  to { opacity: 1; transform: none; }
}

.proof-row {
  width: min(980px, 100%);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-row article {
  padding: 15px 18px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-row article:first-child { border-left: 0; }

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  font-size: 1.3rem;
  font-family: var(--f-primary);
}

.proof-row span {
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--fs-sm);
}

/* Copyright RZU Informatique */
