/* ============================================================
   HiFive Re-integratie — pitch homepage
   Concept & realisatie: EASEO
   ============================================================ */

:root {
  --teal: #13A89E;
  --teal-dark: #0E7F77;
  --teal-deep: #0A5B55;
  --red: #D6312B;
  --red-dark: #B7211C;
  --ink: #1C2A2A;
  --ink-soft: #46585A;
  --bg: #FBFAF7;
  --bg-tint: #EEF7F5;
  --white: #ffffff;
  --line: #E4E9E8;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(16, 60, 56, .06);
  --shadow: 0 18px 50px -20px rgba(14, 91, 85, .35);
  --shadow-lg: 0 30px 70px -25px rgba(14, 91, 85, .45);
  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.1; font-weight: 600; color: var(--ink); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -.01em; }
h3 { font-size: 1.4rem; }
.accent { color: var(--red); }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.eyebrow--center { display: block; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; font-size: .98rem;
  padding: 12px 22px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px -10px rgba(214,49,43,.7); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(214,49,43,.75); }
.btn--ghost { background: transparent; color: var(--teal-deep); border-color: rgba(14,91,85,.25); }
.btn--ghost:hover { background: #fff; border-color: var(--teal); transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid rgba(19,168,158,.5); outline-offset: 2px;
}

/* ---- Pitchbar ---- */
.pitchbar { background: var(--ink); color: #cfe7e4; font-size: .82rem; }
.pitchbar__inner { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 24px; flex-wrap: wrap; }
.pitchbar__text { opacity: .9; }
.pitchbar__link { color: #fff; font-weight: 600; }
.pitchbar__link:hover { color: var(--teal); }

/* ---- Header ---- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,247,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 92px; }
.brand {
  display: inline-flex; align-items: center; padding: 9px 18px;
  background: linear-gradient(180deg, #ffffff, #fdfcfa);
  border-radius: 14px;
  border: 1px solid rgba(14, 91, 85, .08);
  box-shadow:
    0 12px 26px -14px rgba(14, 91, 85, .5),
    0 2px 6px -2px rgba(14, 91, 85, .16),
    inset 0 1px 0 rgba(255, 255, 255, .95),
    inset 0 -2px 5px rgba(14, 91, 85, .06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.brand::after {
  /* fijne glans-rand voor een luxe reliëf */
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
  pointer-events: none;
}
.brand { position: relative; }
.brand:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 32px -14px rgba(14, 91, 85, .55),
    0 4px 10px -3px rgba(14, 91, 85, .22),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 5px rgba(14, 91, 85, .06);
}
.brand__logo { height: 60px; width: auto; display: block; }
.nav { display: flex; gap: 28px; margin-left: 8px; }
.nav a { font-weight: 500; font-size: .96rem; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--teal); transition: width .3s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--teal-deep); font-size: .95rem; }
.header__phone:hover { color: var(--teal); }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; background: var(--bg-tint); }
.hero__media {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(251,250,247,.99) 0%, rgba(251,250,247,.95) 30%, rgba(251,250,247,.6) 48%, rgba(251,250,247,.12) 66%, rgba(19,168,158,.08) 100%),
    url('hero-mensen.jpg?v=3');
  background-size: cover; background-position: right center;
}
.hero__media::after {
  content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(214,49,43,.16), transparent 70%); border-radius: 50%;
}
.hero__inner { position: relative; padding: clamp(56px, 9vw, 120px) 0 clamp(64px, 9vw, 110px); }
.hero__content { max-width: 660px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -.02em; margin-bottom: 22px; }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 560px; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { list-style: none; display: flex; gap: 40px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 26px; }
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--teal-deep); }
.hero__trust span { font-size: .88rem; color: var(--ink-soft); }

/* ---- Sections ---- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--tint { background: var(--bg-tint); }
.section__head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__intro { color: var(--ink-soft); font-size: 1.08rem; margin-top: 14px; }

/* ---- Service cards ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card--featured { background: linear-gradient(160deg, #0E7F77, #0A5B55); border-color: transparent; color: #eafffb; }
.card--featured h3, .card--featured p { color: #fff; }
.card--featured .card__link { color: #ffd9d6; }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--ic) 14%, transparent); color: var(--ic); margin-bottom: 22px;
}
.card--featured .card__icon { background: rgba(255,255,255,.16); color: #fff; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin-bottom: 22px; flex: 1; }
.card__link { font-weight: 600; color: var(--teal-deep); }
.card__link:hover { color: var(--teal); }

/* ---- Approach ---- */
.approach { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.approach__text p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 26px; }
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 38px; font-weight: 500; }
.checklist li::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  width: 26px; height: 26px; border-radius: 50%; background: var(--teal); color: #fff;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
.approach__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.pillar__num { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--red); }
.pillar h4 { margin: 8px 0 6px; font-size: 1.12rem; }
.pillar p { color: var(--ink-soft); font-size: .94rem; }

/* ---- Story ---- */
.story { background: linear-gradient(160deg, var(--teal-deep), #073f3b); color: #eafffb; padding: clamp(70px, 10vw, 120px) 0; position: relative; overflow: hidden; }
.story::before { content: ''; position: absolute; top: -80px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(214,49,43,.25), transparent 70%); border-radius: 50%; }
.story__inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.story__quote { color: var(--teal); opacity: .9; margin: 0 auto 10px; }
.story blockquote { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1.25; color: #fff; margin-bottom: 28px; }
.story__body { color: #c7ece8; font-size: 1.08rem; max-width: 680px; margin: 0 auto 20px; }
.story__sign { color: var(--teal); font-weight: 600; letter-spacing: .02em; }

/* ---- Trajecten ---- */
.traject-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.traject { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 28px 24px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--teal); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.traject:nth-child(even) { border-top-color: var(--red); }
.traject:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.traject h3 { font-size: 1.18rem; margin-bottom: 8px; }
.traject p { color: var(--ink-soft); font-size: .96rem; }
.traject-audience { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 40px; padding: 22px; background: var(--bg-tint); border-radius: var(--radius); }
.traject-audience > span { font-weight: 700; color: var(--teal-deep); }
.traject-audience ul { list-style: none; display: flex; gap: 12px; flex-wrap: wrap; }
.traject-audience li { background: #fff; border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px; font-weight: 500; font-size: .92rem; }

/* ---- About ---- */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--teal), var(--teal-deep)); box-shadow: var(--shadow-lg);
}
.about__photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.about__monogram {
  position: absolute; inset: 0; z-index: 0; display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 5rem; color: #fff;
}
.about__badge { position: absolute; left: 24px; bottom: -24px; background: #fff; border-radius: 14px; padding: 14px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.about__badge strong { font-family: 'Fraunces', serif; color: var(--ink); }
.about__badge span { font-size: .88rem; color: var(--ink-soft); }
.about__text p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 20px; }
.about__text .btn { margin-top: 6px; }

/* ---- Certs ---- */
.certs { padding: clamp(48px, 6vw, 70px) 0; }
.certs__label { text-align: center; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 28px; }
.certs__list { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 36px; justify-content: center; align-items: center; }
.certs__list li { font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--ink); opacity: .55; transition: opacity .3s, color .3s; }
.certs__list li:hover { opacity: 1; color: var(--teal-deep); }

/* ---- Contact ---- */
.section--contact { background: var(--bg-tint); }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 70px); align-items: start; }
.contact__intro p { color: var(--ink-soft); font-size: 1.08rem; margin: 14px 0 28px; }
.contact__details { list-style: none; display: grid; gap: 16px; }
.contact__details li { display: flex; flex-direction: column; }
.contact__details span { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-weight: 700; }
.contact__details a, .contact__details strong { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--teal-deep); }
.contact__details a:hover { color: var(--teal); }
.contact__form { background: #fff; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; background: var(--bg); transition: border-color .2s, background .2s; }
.field input:focus, .field textarea:focus { border-color: var(--teal); background: #fff; }
.contact__note { text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }

/* ---- Footer ---- */
.footer { background: var(--ink); color: #b7c6c6; padding-top: 64px; font-size: .94rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer__word { font-family: 'Fraunces', serif; font-size: 1.8rem; color: #fff; display: inline-block; margin-bottom: 14px; }
.footer__brand p { max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-weight: 700; font-size: .8rem; color: #fff; transition: background .25s, transform .25s; }
.footer__social a:hover { background: var(--teal); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; color: #b7c6c6; transition: color .2s; }
.footer__col a:hover { color: var(--teal); }
.footer__contact p { margin-bottom: 12px; line-height: 1.5; }
.footer__contact a:hover { color: var(--teal); }
.footer__kvk { font-size: .8rem; color: #8aa0a0; }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 24px; border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom > p { color: #8aa0a0; font-size: .86rem; }
.footer__easeo { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.footer__chip { font-size: .78rem; padding: 6px 14px; border-radius: 999px; background: rgba(19,168,158,.14); color: #7fe3da; border: 1px solid rgba(19,168,158,.25); transition: background .25s, color .25s; }
.footer__chip:hover { background: var(--teal); color: #04201e; }
.footer__by { display: flex; flex-direction: column; font-size: .82rem; color: #8aa0a0; text-align: right; }
.footer__by a { color: #fff; font-weight: 700; }
.footer__by a:hover { color: var(--teal); }
.footer__by em { font-style: italic; font-size: .76rem; opacity: .75; }

/* ---- Mobile nav toggle ---- */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
  .approach, .about, .contact { grid-template-columns: 1fr; }
  .traject-grid { grid-template-columns: 1fr 1fr; }
  .about__media { max-width: 360px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header__inner { height: 80px; }
  .brand { padding: 7px 14px; }
  .brand__logo { height: 48px; }
  .nav {
    position: fixed; inset: 104px 16px auto 16px; flex-direction: column; gap: 4px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 16px; box-shadow: var(--shadow-lg); transform: translateY(-12px);
    opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  }
  .nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .nav a { padding: 12px 8px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; }
  .header__phone span { display: none; }
  .header__cta { display: none; }
  .hero__media {
    background:
      linear-gradient(180deg, rgba(251,250,247,.97) 0%, rgba(251,250,247,.9) 45%, rgba(251,250,247,.55) 72%, rgba(19,168,158,.12) 100%),
      url('hero-mensen.jpg?v=3');
    background-size: cover; background-position: center top;
  }
  .hero__trust { gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__easeo { justify-content: flex-start; }
  .footer__by { text-align: left; }
}

@media (max-width: 480px) {
  .traject-grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
}
