/* ═══ CONTACT HERO ═══
   Gedeeld component — geladen via fetch op oplossingen en consultancy.
   Props (label + poster) worden via ContactHero.init() ingesteld.
═══════════════════════════════════════════ */

.contact-hero {
  position: relative;
  z-index: 8;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1C1E4D 0%, #154a4a 42%, #008588 100%);
  z-index: 0;
}

@supports (background: linear-gradient(in oklch 135deg, #1C1E4D, #008588)) {
  .contact-hero__bg {
    background: linear-gradient(in oklch 135deg, #1C1E4D, #008588);
  }
}

/* Cirkel — linksonder, hart-centrum op de hoek van de sectie.
   Dezelfde monochroom-teal merk-cirkel als de hero, gespiegeld op de
   horizontale as — visuele close-ring met S1. */
.contact-hero__circle {
  position: absolute;
  top: 100%;
  left: 0;
  width:  clamp(1400px, 220vmin, 3200px);
  height: clamp(1400px, 220vmin, 3200px);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.contact-hero__circle .ring-a {
  transform-origin: 200px 200px;
  animation: contact-hero-cw 90s linear infinite;
}
.contact-hero__circle .ring-b {
  transform-origin: 200px 200px;
  animation: contact-hero-ccw 105s linear infinite;
}

@keyframes contact-hero-cw  { to { transform: rotate(360deg);  } }
@keyframes contact-hero-ccw { to { transform: rotate(-360deg); } }

@media (prefers-reduced-motion: reduce) {
  .contact-hero__circle .ring-a,
  .contact-hero__circle .ring-b { animation: none; }
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 25.8vh, 280px) var(--pad);
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.contact-hero__label { }

.contact-hero__poster {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  max-width: 720px;
}

.contact-hero__invitation {
  margin-top: clamp(40px, 6vh, 64px);
  max-width: 720px;
}

.contact-hero__name {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.contact-hero__role {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.4;
  color: rgba(255,255,255,.7);
  margin: 16px 0 0;
}

.contact-hero__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 8px;
  margin-top: clamp(32px, 4vh, 48px);
}

.contact-hero__links a {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .2s ease, border-bottom-color .35s ease;
}
.contact-hero__links a:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.45);
}
.contact-hero__links a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 1px;
}

@media (max-width: 767px) {
  .contact-hero__poster     { max-width: 100%; }
  .contact-hero__invitation { max-width: 100%; }
}
