/* ── Home · Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(160deg, #1B1D21 0%, #26292F 55%, #2E3138 100%);
  color: #fff;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.hero__blob--1 { width: 520px; height: 520px; background: rgba(242,106,27,.55); top: -140px; right: -120px; animation: float 14s var(--ease) infinite; }
.hero__blob--2 { width: 420px; height: 420px; background: rgba(242,106,27,.22); bottom: -160px; left: -100px; animation: float 18s var(--ease) infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-24px) scale(1.08); } }

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--sp-7); align-items: center;
  width: 100%;
}
.hero__content h1 { color: #fff; font-size: var(--fs-hero); margin-bottom: var(--sp-5); }
.hero__content .lead { color: rgba(255,255,255,.78); max-width: 36rem; }
.hero .eyebrow { color: var(--brand); }

.hero__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin: var(--sp-6) 0 var(--sp-9); position: relative; }
/* Ghost-knop op de donkere hero: lichte tekst + zichtbare rand */
.hero .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.35); }
.hero .btn--ghost:hover { --btn-fg: #fff; border-color: #fff; background: rgba(255,255,255,.08); }

/* Handgeschreven notitie + pijl naar de primaire CTA */
.cta-note {
  position: absolute; left: 26px; top: calc(100% - 10px);
  display: flex; flex-direction: column; align-items: flex-start;
  color: var(--brand); pointer-events: none; transform: rotate(-3deg);
  animation: noteIn .6s var(--ease-out) both .8s;
}
.cta-note__text {
  font-family: "Caveat", cursive; font-weight: 700;
  font-size: 1.65rem; line-height: .9; white-space: nowrap; margin-left: 34px;
  text-shadow: 0 1px 10px rgba(0,0,0,.25);
}
.cta-note__arrow { width: 60px; height: 46px; }
@keyframes noteIn { from { opacity: 0; transform: rotate(-3deg) translateY(8px) scale(.9); } to { opacity: 1; transform: rotate(-3deg) translateY(0) scale(1); } }

/* Mobiel: handgeschreven notitie blijft zichtbaar, netjes onder de gestapelde knoppen */
@media (max-width: 900px) {
  .cta-note { left: 24px; top: calc(100% - 2px); }
  .cta-note__text { font-size: 1.5rem; }
}
.hero__usps { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.hero__usps li { display: inline-flex; align-items: center; gap: var(--sp-2); color: rgba(255,255,255,.85); font-weight: 500; font-size: var(--fs-sm); }
.hero__usps svg { width: 18px; height: 18px; color: var(--brand); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__image {
  position: relative; margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
}
.hero__image picture, .hero__image img { display: block; width: 100%; height: 100%; }
.hero__image img { object-fit: cover; object-position: center; }
/* Subtiele merkgloed onderaan voor diepte */
.hero__image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(27,29,33,.35));
  pointer-events: none;
}
.hero__card--rating {
  position: absolute; left: -28px; bottom: 36px; z-index: 2;
  background: #fff; color: var(--ink-900); border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 2px; min-width: 150px;
  animation: bob 5s var(--ease) infinite;
}
.hero__card--rating strong { font-family: var(--font-head); font-size: var(--fs-2xl); }
.hero__card--rating span { color: var(--ink-400); font-size: var(--fs-sm); }
@keyframes bob { 0%,100% { transform: translate(389px, 54px); } 50% { transform: translate(389px, 44px); } }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-block: calc(var(--header-h) + var(--sp-7)) var(--sp-8); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}
